├── .gitignore ├── .mocharc.yml ├── .travis.yml ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── index.ts ├── lib ├── bfp.d.ts ├── bfp.ts ├── pushoutput.ts ├── utils.d.ts └── utils.ts ├── package.json ├── patches └── bitcore-lib-cash+8.25.8.patch ├── regtest ├── .mocharc.yml ├── Dockerfile.bchd ├── Dockerfile.nodejs ├── README.md ├── _test.sh ├── bchd-entrypoint.sh ├── bchd.conf ├── content │ └── mario.png ├── docker-compose.yml ├── launch.json ├── lib │ ├── rpc.ts │ └── utils.ts ├── package-lock.json ├── package.json ├── test.sh ├── test │ ├── file_type_0x01.ts │ └── file_type_0x02.ts └── tsconfig.json ├── test └── client.spec.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/.mocharc.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/README.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/index.ts -------------------------------------------------------------------------------- /lib/bfp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/lib/bfp.d.ts -------------------------------------------------------------------------------- /lib/bfp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/lib/bfp.ts -------------------------------------------------------------------------------- /lib/pushoutput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/lib/pushoutput.ts -------------------------------------------------------------------------------- /lib/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/lib/utils.d.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/package.json -------------------------------------------------------------------------------- /patches/bitcore-lib-cash+8.25.8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/patches/bitcore-lib-cash+8.25.8.patch -------------------------------------------------------------------------------- /regtest/.mocharc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/regtest/.mocharc.yml -------------------------------------------------------------------------------- /regtest/Dockerfile.bchd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/regtest/Dockerfile.bchd -------------------------------------------------------------------------------- /regtest/Dockerfile.nodejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/regtest/Dockerfile.nodejs -------------------------------------------------------------------------------- /regtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/regtest/README.md -------------------------------------------------------------------------------- /regtest/_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/regtest/_test.sh -------------------------------------------------------------------------------- /regtest/bchd-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/regtest/bchd-entrypoint.sh -------------------------------------------------------------------------------- /regtest/bchd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/regtest/bchd.conf -------------------------------------------------------------------------------- /regtest/content/mario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/regtest/content/mario.png -------------------------------------------------------------------------------- /regtest/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/regtest/docker-compose.yml -------------------------------------------------------------------------------- /regtest/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/regtest/launch.json -------------------------------------------------------------------------------- /regtest/lib/rpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/regtest/lib/rpc.ts -------------------------------------------------------------------------------- /regtest/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/regtest/lib/utils.ts -------------------------------------------------------------------------------- /regtest/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/regtest/package-lock.json -------------------------------------------------------------------------------- /regtest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/regtest/package.json -------------------------------------------------------------------------------- /regtest/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/regtest/test.sh -------------------------------------------------------------------------------- /regtest/test/file_type_0x01.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/regtest/test/file_type_0x01.ts -------------------------------------------------------------------------------- /regtest/test/file_type_0x02.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/regtest/test/file_type_0x02.ts -------------------------------------------------------------------------------- /regtest/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/regtest/tsconfig.json -------------------------------------------------------------------------------- /test/client.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/test/client.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simpleledger/BitcoinFilesJS/HEAD/tsconfig.json --------------------------------------------------------------------------------