├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── examples ├── basic.php ├── dtrust.php └── sweeper.php ├── lib ├── APIException.php ├── BlockKey.php └── Client.php ├── phpconfig.ini ├── phpunit.xml └── tests ├── BasicCurlTest.php ├── BasicWithPassphraseTest.php ├── BasicWithWIFTest.php ├── BitwaspBitcoinMinimalBranchTest.php ├── Data ├── .gitignore ├── LICENSE ├── README.md └── json │ ├── create_and_sign_transaction_response.json │ ├── create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_251inputs.json │ ├── create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_252inputs.json │ ├── create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_253inputs.json │ ├── create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_762inputs.json │ ├── create_and_sign_transaction_response_dtrust_P2SH_3of5_195inputs.json │ ├── create_and_sign_transaction_response_dtrust_P2SH_4of5_195inputs.json │ ├── create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_3of5_251inputs.json │ ├── create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_3of5_252inputs.json │ ├── create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_3of5_253inputs.json │ ├── create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_4of5_251inputs.json │ ├── create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_4of5_252inputs.json │ ├── create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_4of5_253inputs.json │ ├── create_and_sign_transaction_response_dtrust_WITNESS_V0_3of5_251inputs.json │ ├── create_and_sign_transaction_response_dtrust_WITNESS_V0_3of5_252inputs.json │ ├── create_and_sign_transaction_response_dtrust_WITNESS_V0_3of5_253inputs.json │ ├── create_and_sign_transaction_response_dtrust_WITNESS_V0_4of5_251inputs.json │ ├── create_and_sign_transaction_response_dtrust_WITNESS_V0_4of5_252inputs.json │ ├── create_and_sign_transaction_response_dtrust_WITNESS_V0_4of5_253inputs.json │ ├── create_and_sign_transaction_response_dtrust_p2sh_3_of_5_keys.json │ ├── create_and_sign_transaction_response_dtrust_p2sh_4_of_5_keys.json │ ├── create_and_sign_transaction_response_dtrust_p2wsh_over_p2sh_3_of_5_keys.json │ ├── create_and_sign_transaction_response_dtrust_p2wsh_over_p2sh_4_of_5_keys.json │ ├── create_and_sign_transaction_response_dtrust_witness_v0_3_of_5_keys.json │ ├── create_and_sign_transaction_response_dtrust_witness_v0_3of5_251outputs.json │ ├── create_and_sign_transaction_response_dtrust_witness_v0_3of5_252outputs.json │ ├── create_and_sign_transaction_response_dtrust_witness_v0_3of5_253outputs.json │ ├── create_and_sign_transaction_response_dtrust_witness_v0_4_of_5_keys.json │ ├── create_and_sign_transaction_response_dtrust_witness_v0_4of5_251outputs.json │ ├── create_and_sign_transaction_response_dtrust_witness_v0_4of5_252outputs.json │ ├── create_and_sign_transaction_response_dtrust_witness_v0_4of5_253outputs.json │ ├── create_and_sign_transaction_response_sweep_p2pkh.json │ ├── create_and_sign_transaction_response_sweep_p2wpkh.json │ ├── create_and_sign_transaction_response_sweep_p2wpkh_over_p2sh.json │ ├── create_and_sign_transaction_response_with_blockio_fee_and_expected_unsigned_txid.json │ ├── create_and_sign_transaction_response_witness_v1_output.json │ ├── get_balance_response.json │ ├── prepare_dtrust_transaction_response_P2SH_3of5_195inputs.json │ ├── prepare_dtrust_transaction_response_P2SH_4of5_195inputs.json │ ├── prepare_dtrust_transaction_response_P2WSH-over-P2SH_3of5_251inputs.json │ ├── prepare_dtrust_transaction_response_P2WSH-over-P2SH_3of5_252inputs.json │ ├── prepare_dtrust_transaction_response_P2WSH-over-P2SH_3of5_253inputs.json │ ├── prepare_dtrust_transaction_response_P2WSH-over-P2SH_4of5_251inputs.json │ ├── prepare_dtrust_transaction_response_P2WSH-over-P2SH_4of5_252inputs.json │ ├── prepare_dtrust_transaction_response_P2WSH-over-P2SH_4of5_253inputs.json │ ├── prepare_dtrust_transaction_response_WITNESS_V0_3of5_251inputs.json │ ├── prepare_dtrust_transaction_response_WITNESS_V0_3of5_252inputs.json │ ├── prepare_dtrust_transaction_response_WITNESS_V0_3of5_253inputs.json │ ├── prepare_dtrust_transaction_response_WITNESS_V0_4of5_251inputs.json │ ├── prepare_dtrust_transaction_response_WITNESS_V0_4of5_252inputs.json │ ├── prepare_dtrust_transaction_response_WITNESS_V0_4of5_253inputs.json │ ├── prepare_dtrust_transaction_response_p2sh.json │ ├── prepare_dtrust_transaction_response_p2wsh_over_p2sh.json │ ├── prepare_dtrust_transaction_response_witness_v0.json │ ├── prepare_dtrust_transaction_response_witness_v0_3of5_251outputs.json │ ├── prepare_dtrust_transaction_response_witness_v0_3of5_252outputs.json │ ├── prepare_dtrust_transaction_response_witness_v0_3of5_253outputs.json │ ├── prepare_dtrust_transaction_response_witness_v0_4of5_251outputs.json │ ├── prepare_dtrust_transaction_response_witness_v0_4of5_252outputs.json │ ├── prepare_dtrust_transaction_response_witness_v0_4of5_253outputs.json │ ├── prepare_sweep_transaction_response_p2pkh.json │ ├── prepare_sweep_transaction_response_p2wpkh.json │ ├── prepare_sweep_transaction_response_p2wpkh_over_p2sh.json │ ├── prepare_transaction_response.json │ ├── prepare_transaction_response_P2WSH-over-P2SH_1of2_251inputs.json │ ├── prepare_transaction_response_P2WSH-over-P2SH_1of2_252inputs.json │ ├── prepare_transaction_response_P2WSH-over-P2SH_1of2_253inputs.json │ ├── prepare_transaction_response_P2WSH-over-P2SH_1of2_762inputs.json │ ├── prepare_transaction_response_with_blockio_fee_and_expected_unsigned_txid.json │ ├── prepare_transaction_response_witness_v1_output.json │ └── summarize_prepared_transaction_response_with_blockio_fee_and_expected_unsigned_txid.json ├── EncryptDecryptTest.php ├── LargerTransactionTest.php ├── PrepareTransactionTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.lock 3 | vendor/ 4 | *.cache 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/composer.json -------------------------------------------------------------------------------- /examples/basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/examples/basic.php -------------------------------------------------------------------------------- /examples/dtrust.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/examples/dtrust.php -------------------------------------------------------------------------------- /examples/sweeper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/examples/sweeper.php -------------------------------------------------------------------------------- /lib/APIException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/lib/APIException.php -------------------------------------------------------------------------------- /lib/BlockKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/lib/BlockKey.php -------------------------------------------------------------------------------- /lib/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/lib/Client.php -------------------------------------------------------------------------------- /phpconfig.ini: -------------------------------------------------------------------------------- 1 | extension="gmp.so" 2 | -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/phpunit.xml -------------------------------------------------------------------------------- /tests/BasicCurlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/BasicCurlTest.php -------------------------------------------------------------------------------- /tests/BasicWithPassphraseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/BasicWithPassphraseTest.php -------------------------------------------------------------------------------- /tests/BasicWithWIFTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/BasicWithWIFTest.php -------------------------------------------------------------------------------- /tests/BitwaspBitcoinMinimalBranchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/BitwaspBitcoinMinimalBranchTest.php -------------------------------------------------------------------------------- /tests/Data/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /tests/Data/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/LICENSE -------------------------------------------------------------------------------- /tests/Data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/README.md -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_251inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_251inputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_252inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_252inputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_253inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_253inputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_762inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_P2WSH-over-P2SH_1of2_762inputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_P2SH_3of5_195inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_P2SH_3of5_195inputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_P2SH_4of5_195inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_P2SH_4of5_195inputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_3of5_251inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_3of5_251inputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_3of5_252inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_3of5_252inputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_3of5_253inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_3of5_253inputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_4of5_251inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_4of5_251inputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_4of5_252inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_4of5_252inputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_4of5_253inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_P2WSH-over-P2SH_4of5_253inputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_3of5_251inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_3of5_251inputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_3of5_252inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_3of5_252inputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_3of5_253inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_3of5_253inputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_4of5_251inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_4of5_251inputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_4of5_252inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_4of5_252inputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_4of5_253inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_WITNESS_V0_4of5_253inputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_p2sh_3_of_5_keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_p2sh_3_of_5_keys.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_p2sh_4_of_5_keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_p2sh_4_of_5_keys.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_p2wsh_over_p2sh_3_of_5_keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_p2wsh_over_p2sh_3_of_5_keys.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_p2wsh_over_p2sh_4_of_5_keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_p2wsh_over_p2sh_4_of_5_keys.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_witness_v0_3_of_5_keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_witness_v0_3_of_5_keys.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_witness_v0_3of5_251outputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_witness_v0_3of5_251outputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_witness_v0_3of5_252outputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_witness_v0_3of5_252outputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_witness_v0_3of5_253outputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_witness_v0_3of5_253outputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_witness_v0_4_of_5_keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_witness_v0_4_of_5_keys.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_witness_v0_4of5_251outputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_witness_v0_4of5_251outputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_witness_v0_4of5_252outputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_witness_v0_4of5_252outputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_dtrust_witness_v0_4of5_253outputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_dtrust_witness_v0_4of5_253outputs.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_sweep_p2pkh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_sweep_p2pkh.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_sweep_p2wpkh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_sweep_p2wpkh.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_sweep_p2wpkh_over_p2sh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_sweep_p2wpkh_over_p2sh.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_with_blockio_fee_and_expected_unsigned_txid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_with_blockio_fee_and_expected_unsigned_txid.json -------------------------------------------------------------------------------- /tests/Data/json/create_and_sign_transaction_response_witness_v1_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/create_and_sign_transaction_response_witness_v1_output.json -------------------------------------------------------------------------------- /tests/Data/json/get_balance_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/get_balance_response.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_P2SH_3of5_195inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_P2SH_3of5_195inputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_P2SH_4of5_195inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_P2SH_4of5_195inputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_3of5_251inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_3of5_251inputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_3of5_252inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_3of5_252inputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_3of5_253inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_3of5_253inputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_4of5_251inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_4of5_251inputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_4of5_252inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_4of5_252inputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_4of5_253inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_P2WSH-over-P2SH_4of5_253inputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_WITNESS_V0_3of5_251inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_WITNESS_V0_3of5_251inputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_WITNESS_V0_3of5_252inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_WITNESS_V0_3of5_252inputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_WITNESS_V0_3of5_253inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_WITNESS_V0_3of5_253inputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_WITNESS_V0_4of5_251inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_WITNESS_V0_4of5_251inputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_WITNESS_V0_4of5_252inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_WITNESS_V0_4of5_252inputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_WITNESS_V0_4of5_253inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_WITNESS_V0_4of5_253inputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_p2sh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_p2sh.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_p2wsh_over_p2sh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_p2wsh_over_p2sh.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_witness_v0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_witness_v0.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_witness_v0_3of5_251outputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_witness_v0_3of5_251outputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_witness_v0_3of5_252outputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_witness_v0_3of5_252outputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_witness_v0_3of5_253outputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_witness_v0_3of5_253outputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_witness_v0_4of5_251outputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_witness_v0_4of5_251outputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_witness_v0_4of5_252outputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_witness_v0_4of5_252outputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_dtrust_transaction_response_witness_v0_4of5_253outputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_dtrust_transaction_response_witness_v0_4of5_253outputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_sweep_transaction_response_p2pkh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_sweep_transaction_response_p2pkh.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_sweep_transaction_response_p2wpkh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_sweep_transaction_response_p2wpkh.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_sweep_transaction_response_p2wpkh_over_p2sh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_sweep_transaction_response_p2wpkh_over_p2sh.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_transaction_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_transaction_response.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_transaction_response_P2WSH-over-P2SH_1of2_251inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_transaction_response_P2WSH-over-P2SH_1of2_251inputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_transaction_response_P2WSH-over-P2SH_1of2_252inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_transaction_response_P2WSH-over-P2SH_1of2_252inputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_transaction_response_P2WSH-over-P2SH_1of2_253inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_transaction_response_P2WSH-over-P2SH_1of2_253inputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_transaction_response_P2WSH-over-P2SH_1of2_762inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_transaction_response_P2WSH-over-P2SH_1of2_762inputs.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_transaction_response_with_blockio_fee_and_expected_unsigned_txid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_transaction_response_with_blockio_fee_and_expected_unsigned_txid.json -------------------------------------------------------------------------------- /tests/Data/json/prepare_transaction_response_witness_v1_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/prepare_transaction_response_witness_v1_output.json -------------------------------------------------------------------------------- /tests/Data/json/summarize_prepared_transaction_response_with_blockio_fee_and_expected_unsigned_txid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/Data/json/summarize_prepared_transaction_response_with_blockio_fee_and_expected_unsigned_txid.json -------------------------------------------------------------------------------- /tests/EncryptDecryptTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/EncryptDecryptTest.php -------------------------------------------------------------------------------- /tests/LargerTransactionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/LargerTransactionTest.php -------------------------------------------------------------------------------- /tests/PrepareTransactionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/PrepareTransactionTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlockIo/block_io-php/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------