From 8cf47437a8a8d952895818a7aadc35b2f26f7798 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 27 Oct 2024 18:19:19 +0000 Subject: [PATCH 01/23] Fix heavy healthz check --- counterparty-core/counterpartycore/lib/api/util.py | 2 +- counterparty-core/counterpartycore/test/mainnet_test.py | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/api/util.py b/counterparty-core/counterpartycore/lib/api/util.py index 3a74be5d68..e524b0c38c 100644 --- a/counterparty-core/counterpartycore/lib/api/util.py +++ b/counterparty-core/counterpartycore/lib/api/util.py @@ -57,7 +57,7 @@ def healthz_heavy(db): "quantity": 100000000, }, allow_unconfirmed_inputs=True, - fee=1000, + exact_fee=1000, ) diff --git a/counterparty-core/counterpartycore/test/mainnet_test.py b/counterparty-core/counterpartycore/test/mainnet_test.py index 07c5d3114b..cad124a827 100644 --- a/counterparty-core/counterpartycore/test/mainnet_test.py +++ b/counterparty-core/counterpartycore/test/mainnet_test.py @@ -217,3 +217,8 @@ def test_mainnet_healthz(skip): print(response.json()) assert response.status_code == 200 assert response.json()["result"]["status"] == "Healthy" + + response = requests.get(f"{LOCAL_API_URL}/healthz?check_type=heavy", timeout=10) + print(response.json()) + assert response.status_code == 200 + assert response.json()["result"]["status"] == "Healthy" From 997d0ba77d349d0bc61dd792fc91433c12b70d4a Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 27 Oct 2024 18:22:07 +0000 Subject: [PATCH 02/23] Add release notes for v10.6.1 --- release-notes/release-notes-v10.6.1.md | 27 ++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 release-notes/release-notes-v10.6.1.md diff --git a/release-notes/release-notes-v10.6.1.md b/release-notes/release-notes-v10.6.1.md new file mode 100644 index 0000000000..33fa39a41b --- /dev/null +++ b/release-notes/release-notes-v10.6.1.md @@ -0,0 +1,27 @@ +# Release Notes - Counterparty Core v10.6.1 (2024-10-??) + + +# Upgrading + +# ChangeLog + +## Protocol Changes + +## Bugfixes + +- Fix heavy healthz check + +## Codebase + + + +## API + + +## CLI + + +# Credits + +* Ouziel Slama +* Adam Krellenstein From 335df06af971c0ab7d19be16fc8949bbdfc0b6fe Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 28 Oct 2024 10:26:02 +0000 Subject: [PATCH 03/23] Fix compose API for MPMA sends --- .../counterpartycore/lib/api/api_server.py | 19 +- .../counterpartycore/lib/api/compose.py | 20 +- .../lib/messages/versions/mpma.py | 2 +- .../test/regtest/apidoc/apicache.json | 11010 ---------------- .../test/regtest/regtestnode.py | 12 +- .../regtest/scenarios/scenario_12_send.py | 189 +- .../test/regtest/testscenarios.py | 2 +- 7 files changed, 222 insertions(+), 11032 deletions(-) delete mode 100644 counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index b9d893bfae..a27ac3fe11 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -174,12 +174,15 @@ def prepare_args(route, **kwargs): if arg_name in function_args: continue - str_arg = request.args.get(arg_name) - if str_arg is not None and str_arg.lower() == "none": + str_arg = query_params().get(arg_name) + if str_arg is not None and isinstance(str_arg, str) and str_arg.lower() == "none": str_arg = None if str_arg is None and arg["required"]: raise ValueError(f"Missing required parameter: {arg_name}") + if arg["type"] != "list" and isinstance(str_arg, list): + str_arg = str_arg[0] # we take the first argument + if str_arg is None: function_args[arg_name] = arg["default"] elif arg["type"] == "bool": @@ -194,6 +197,11 @@ def prepare_args(route, **kwargs): function_args[arg_name] = float(str_arg) except ValueError as e: raise ValueError(f"Invalid float: {arg_name}") from e + elif arg["type"] == "list": + if not isinstance(str_arg, list): + function_args[arg_name] = [str_arg] + else: + function_args[arg_name] = str_arg else: function_args[arg_name] = str_arg @@ -245,13 +253,18 @@ def get_transaction_name(rule): return "".join([part.capitalize() for part in ROUTES[rule]["function"].__name__.split("_")]) +def query_params(): + params = request.args.to_dict(flat=False) + return {key: value[0] if len(value) == 1 else value for key, value in params.items()} + + @auth.login_required def handle_route(**kwargs): if request.method == "OPTIONS": return handle_options() start_time = time.time() - query_args = request.args.to_dict() | kwargs + query_args = query_params() | kwargs logger.trace(f"API Request - {request.remote_addr} {request.method} {request.url}") logger.debug(get_log_prefix(query_args)) diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index ad59547d12..f1dd2389fc 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -381,6 +381,8 @@ def compose_mpma( assets: str, destinations: str, quantities: str, + memos: list = None, + memos_are_hex: bool = None, memo: str = None, memo_is_hex: bool = False, **construct_args, @@ -391,8 +393,10 @@ def compose_mpma( :param assets: comma-separated list of assets to send (e.g. XCP,$ASSET_5) :param destinations: comma-separated list of addresses to send to (e.g. $ADDRESS_1,$ADDRESS_2) :param quantities: comma-separated list of quantities to send (in satoshis, hence integer) (e.g. 1,2) - :param memo: The Memo associated with this transaction (e.g. "Hello, world!") - :param memo_is_hex: Whether the memo field is a hexadecimal string (e.g. False) + :param memos: One `memos` argument by send, if any + :param memos_are_hex: Whether the memos are in hexadecimal format + :param memo: The Memo associated with this transaction, used by default for all sends if no `memos` are specified + :param memo_is_hex: Whether the memo field is a hexadecimal string """ asset_list = assets.split(",") destination_list = destinations.split(",") @@ -407,6 +411,16 @@ def compose_mpma( quantity_list = [int(quantity) for quantity in quantity_list] asset_dest_quant_list = list(zip(asset_list, destination_list, quantity_list)) + if memos: + if not isinstance(memos, list): + raise exceptions.ComposeError("Memos must be a list") + if len(memos) != len(asset_dest_quant_list): + raise exceptions.ComposeError( + "The number of memos must be equal to the number of sends" + ) + for i, memo in enumerate(memos): + asset_dest_quant_list[i] += (memo, memos_are_hex) + params = { "source": address, "asset_dest_quant_list": asset_dest_quant_list, @@ -736,8 +750,6 @@ def compose_movetoutxo( if change > 0: change_output_address = change_address or source_address outputs += [{change_output_address: str(change)}] - print("inputs", inputs) - print("outputs", outputs) rawtransaction = backend.bitcoind.createrawtransaction(inputs, outputs) return { diff --git a/counterparty-core/counterpartycore/lib/messages/versions/mpma.py b/counterparty-core/counterpartycore/lib/messages/versions/mpma.py index e8834ff3a4..3ddd1da2fd 100644 --- a/counterparty-core/counterpartycore/lib/messages/versions/mpma.py +++ b/counterparty-core/counterpartycore/lib/messages/versions/mpma.py @@ -98,7 +98,7 @@ def validate(db, source, asset_dest_quant_list, block_index): return problems -def compose(db, source: str, asset_dest_quant_list: list, memo: str, memo_is_hex: bool): +def compose(db, source: str, asset_dest_quant_list: list, memo, memo_is_hex): cursor = db.cursor() out_balances = util.accumulate([(t[0], t[2]) for t in asset_dest_quant_list]) diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json deleted file mode 100644 index 00ecd9e512..0000000000 --- a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json +++ /dev/null @@ -1,11010 +0,0 @@ -{ - "/v2/blocks": { - "result": [ - { - "block_index": 201, - "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", - "block_time": 1729876074, - "previous_block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280", - "difficulty": 545259519, - "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", - "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", - "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", - "transaction_count": 1, - "confirmed": true - }, - { - "block_index": 200, - "block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280", - "block_time": 1729876064, - "previous_block_hash": "680d63e1a94fcf9f7ce37000f837403efcff5a7d398a31eed9db2487ca1e40b5", - "difficulty": 545259519, - "ledger_hash": "336efe812ffe5396c704c2595aa7eb267beae7a33cf999c18be19a41f374087c", - "txlist_hash": "59daaee3faf1931a718b4990167f6fe8e3f24e16aa871ef809babcace67b6305", - "messages_hash": "cf00d968ac2ce169aa1a4be3eac4353ba1db59fd17e66566b9867accea98b2f2", - "transaction_count": 2, - "confirmed": true - }, - { - "block_index": 199, - "block_hash": "680d63e1a94fcf9f7ce37000f837403efcff5a7d398a31eed9db2487ca1e40b5", - "block_time": 1729876056, - "previous_block_hash": "019dfc456293078117151bea18eb53e2070e87beb9fa9e0f30da5a1f18d0d55b", - "difficulty": 545259519, - "ledger_hash": "5d19fa3c92a777c22206d0b7912c5aec9861e57fa9e23968b5b26da8d262d95e", - "txlist_hash": "1f07bdd8d6cfeaa370f401f09c76dd727c7d508ac615dbceaaf76fccee496ec5", - "messages_hash": "9cb0d96db0a3b2d578629764d069eaad58dc349b8fcee18491892b30f85e4d38", - "transaction_count": 1, - "confirmed": true - }, - { - "block_index": 198, - "block_hash": "019dfc456293078117151bea18eb53e2070e87beb9fa9e0f30da5a1f18d0d55b", - "block_time": 1729876053, - "previous_block_hash": "71c33ed751f0d3896ba4ae8536beb0def514bfca9af11ca3d4a8d90245a6df48", - "difficulty": 545259519, - "ledger_hash": "2a8b021bc5ac61c2570e26def8375d076c33c15f90711aa5fd7de2a26f98ec58", - "txlist_hash": "5d3ed76ad91068aea0d582fa2971a5e1b3a7f894a797780e186c8d7ab3ce4e6f", - "messages_hash": "7d651b3b7f2137114d4a7e66c602b3b8f99bfdef221e7b850f353d87c91d5607", - "transaction_count": 1, - "confirmed": true - }, - { - "block_index": 197, - "block_hash": "71c33ed751f0d3896ba4ae8536beb0def514bfca9af11ca3d4a8d90245a6df48", - "block_time": 1729876048, - "previous_block_hash": "6e3cb216f3145455efc27a2f6f579c4a01305a02305f48759144dabb73b27da3", - "difficulty": 545259519, - "ledger_hash": "e03d381575e6fd123f8502086c5c4f4031998824840366947b1a1e82200076f2", - "txlist_hash": "4d905525c1e83f6f3b10de1a15f0e0c638f7e5420e4c7bfa902464194cb56ea4", - "messages_hash": "8f2707e5da86d6c8228ec3dca70cdfc49851e139797c1f8f8f4288647984f1e4", - "transaction_count": 1, - "confirmed": true - } - ], - "next_cursor": 196, - "result_count": 101 - }, - "/v2/blocks/": { - "result": { - "block_index": 201, - "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", - "block_time": 1729876074, - "previous_block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280", - "difficulty": 545259519, - "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", - "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", - "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", - "transaction_count": 1, - "confirmed": true - } - }, - "/v2/blocks/": { - "result": { - "block_index": 201, - "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", - "block_time": 1729876074, - "previous_block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280", - "difficulty": 545259519, - "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", - "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", - "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", - "transaction_count": 1, - "confirmed": true - } - }, - "/v2/blocks//transactions": { - "result": [ - { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", - "block_time": 1729876074, - "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "btc_amount": 1000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//events": { - "result": [ - { - "event_index": 603, - "event": "BLOCK_PARSED", - "params": { - "block_index": 201, - "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", - "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", - "transaction_count": 1, - "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", - "block_time": 1729876074 - }, - "tx_hash": null - }, - { - "event_index": 602, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68 - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" - }, - { - "event_index": 601, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 201, - "btc_amount": 1000, - "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" - }, - { - "event_index": 600, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "status": 0, - "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" - }, - { - "event_index": 599, - "event": "CREDIT", - "params": { - "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "asset": "XCP", - "block_index": 201, - "calling_function": "dispense", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "quantity": 66, - "tx_index": 68, - "utxo": null, - "utxo_address": null, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" - } - ], - "next_cursor": 598, - "result_count": 14 - }, - "/v2/blocks//events/counts": { - "result": [ - { - "event": "UTXO_MOVE", - "event_count": 2 - }, - { - "event": "TRANSACTION_PARSED", - "event_count": 1 - }, - { - "event": "NEW_TRANSACTION_OUTPUT", - "event_count": 1 - }, - { - "event": "NEW_TRANSACTION", - "event_count": 1 - }, - { - "event": "NEW_BLOCK", - "event_count": 1 - } - ], - "next_cursor": "DISPENSER_UPDATE", - "result_count": 10 - }, - "/v2/blocks//events/": { - "result": [ - { - "event_index": 599, - "event": "CREDIT", - "params": { - "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "asset": "XCP", - "block_index": 201, - "calling_function": "dispense", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "quantity": 66, - "tx_index": 68, - "utxo": null, - "utxo_address": null, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" - }, - { - "event_index": 597, - "event": "CREDIT", - "params": { - "address": null, - "asset": "XCP", - "block_index": 201, - "calling_function": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "quantity": 1500000000, - "tx_index": 68, - "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" - }, - { - "event_index": 594, - "event": "CREDIT", - "params": { - "address": null, - "asset": "MYASSETA", - "block_index": 201, - "calling_function": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "quantity": 1500000000, - "tx_index": 68, - "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "block_time": 1729876074, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/blocks//credits": { - "result": [ - { - "block_index": 201, - "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "asset": "XCP", - "quantity": 66, - "calling_function": "dispense", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - { - "block_index": 201, - "address": null, - "asset": "XCP", - "quantity": 1500000000, - "calling_function": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "confirmed": true, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - { - "block_index": 201, - "address": null, - "asset": "MYASSETA", - "quantity": 1500000000, - "calling_function": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "confirmed": true, - "block_time": 1729876074, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "15.00000000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/blocks//debits": { - "result": [ - { - "block_index": 201, - "address": null, - "asset": "XCP", - "quantity": 1500000000, - "action": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "utxo": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "utxo_address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "confirmed": true, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - { - "block_index": 201, - "address": null, - "asset": "MYASSETA", - "quantity": 1500000000, - "action": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "utxo": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "utxo_address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "confirmed": true, - "block_time": 1729876074, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "15.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/blocks//expirations": { - "result": [ - { - "type": "order", - "object_id": "a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", - "block_index": 184, - "confirmed": true, - "block_time": 1729875934 - }, - { - "type": "order", - "object_id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", - "block_index": 184, - "confirmed": true, - "block_time": 1729875934 - }, - { - "type": "order_match", - "object_id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b_a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", - "block_index": 184, - "confirmed": true, - "block_time": 1729875934 - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/blocks//cancels": { - "result": [ - { - "tx_index": 58, - "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", - "block_index": 192, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "offer_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "status": "valid", - "confirmed": true, - "block_time": 1729876028 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//destructions": { - "result": [ - { - "tx_index": 61, - "tx_hash": "d41b13b0b1a25e8e77dbd3c8caa5b91aff948a81618a598872934c4809d49e7e", - "block_index": 195, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "asset": "XCP", - "quantity": 1, - "tag": "64657374726f79", - "status": "valid", - "confirmed": true, - "block_time": 1729876041, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000001" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//issuances": { - "result": [ - { - "tx_index": 64, - "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", - "msg_index": 0, - "block_index": 198, - "asset": "UTXOASSET", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super asset", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1729876053, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//sends": { - "result": [ - { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "asset": "XCP", - "quantity": 1500000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "asset": "MYASSETA", - "quantity": 1500000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729876074, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "15.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/blocks//dispenses": { - "result": [ - { - "tx_index": 68, - "dispense_index": 0, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "asset": "XCP", - "dispense_quantity": 66, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "btc_amount": 1000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "last_status_tx_hash": null, - "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//sweeps": { - "result": [ - { - "tx_index": 60, - "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", - "block_index": 194, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "flags": 1, - "status": "valid", - "memo": "sweep my assets", - "fee_paid": 600000, - "confirmed": true, - "block_time": 1729876037, - "fee_paid_normalized": "0.00600000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//fairminters": { - "result": [ - { - "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", - "tx_index": 42, - "block_index": 155, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "A95428958968845068", - "asset_parent": "MYASSETA", - "asset_longname": "MYASSETA.SUBMYASSETA", - "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, - "confirmed": true, - "block_time": 1729875887, - "price_normalized": "0.00000001", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/blocks//fairmints": { - "result": [ - { - "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729875818, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/transactions": { - "result": [ - { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", - "block_time": 1729876074, - "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "btc_amount": 1000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - }, - { - "tx_index": 67, - "tx_hash": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98", - "block_index": 200, - "block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280", - "block_time": 1729876064, - "source": "", - "destination": null, - "btc_amount": null, - "fee": null, - "data": null, - "supported": true, - "utxos_info": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3:0 69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98:0", - "confirmed": true - } - ], - "next_cursor": 66, - "result_count": 69 - }, - "/v2/transactions/info": { - "result": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", - "decoded_tx": { - "version": 2, - "segwit": true, - "coinbase": false, - "vin": [ - { - "hash": "4f8571a488ab04a918215d4a1f93ee57bdee8f748751083d045a02d7c5d0ec20", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - } - ], - "vout": [ - { - "value": 0, - "script_pub_key": "6a2a53d62d377950872e33ce781c58a42345cae314bd15ad5cbb2bf248066d88550d0a7fbbbc01cc7240fbca" - }, - { - "value": 4999990000, - "script_pub_key": "0014aa5f1fcf04bccbd58dfaa75c74514113e56ff748" - } - ], - "vtxinwit": [ - "304402200288c8930b6f242c23cd4b2c836cdd35a7f36120a57ad0a8a74a2a5634326ea402203c74a2e6277f1bb7e2d1c7162240daf44dbb75309807fe199a4dfe4f00e67bc001", - "0211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f515" - ], - "lock_time": 0, - "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", - "tx_id": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f" - }, - "unpacked_data": { - "message_type": "dispenser", - "message_type_id": 12, - "message_data": { - "asset": "TESTLOCKDESC", - "give_quantity": 1, - "escrow_quantity": 10000, - "mainchainrate": 1, - "dispenser_status": 0, - "action_address": null, - "oracle_address": null, - "status": "valid", - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "escrow_quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - } - }, - "/v2/transactions//info": { - "result": { - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "02000000000000000100000000000027108041bc73770b22d4ed185c6ac763c7d17e3a3272ce", - "decoded_tx": { - "version": 2, - "segwit": true, - "coinbase": false, - "vin": [ - { - "hash": "1a4736dcb5b00f8859901726b6a731d7ddd53fde667085c039e038518019c026", - "n": 1, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - } - ], - "vout": [ - { - "value": 0, - "script_pub_key": "6a2e57e589f583ae5424e2cac4d48559fda7d7431a2a617073832f3eb2f7d5e48c232aa072921da9f0ca2cdbeb9f7cfd" - }, - { - "value": 4999970000, - "script_pub_key": "0014ff7bfd93f2bf72a1088e1cdf07174f46f787c026" - } - ], - "vtxinwit": [ - "3044022010433c1e6d727485a461ff6e7bf52076e8005d7829c43cff5f2e0bae9ca8d36902205d3f93066744c90a7e5b9ffbfef092f666962e4f14679ecf69201db42447d5d101", - "0271e87f8220264edfff84c2d6d6e03361443ffa736d66fc4cc0ea261e2fa56d73" - ], - "lock_time": 0, - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "tx_id": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515" - }, - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 10000, - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "memo": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - } - }, - "/v2/transactions/unpack": { - "result": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "error": "memo too long" - } - } - }, - "/v2/transactions/": { - "result": { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", - "block_time": 1729876074, - "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "btc_amount": 1000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - } - }, - "/v2/transactions/": { - "result": { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", - "block_time": 1729876074, - "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "btc_amount": 1000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - } - }, - "/v2/transactions//events": { - "result": [ - { - "event_index": 602, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68 - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - }, - { - "event_index": 601, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 201, - "btc_amount": 1000, - "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - }, - { - "event_index": 600, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "status": 0, - "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - }, - { - "event_index": 599, - "event": "CREDIT", - "params": { - "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "asset": "XCP", - "block_index": 201, - "calling_function": "dispense", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "quantity": 66, - "tx_index": 68, - "utxo": null, - "utxo_address": null, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - }, - { - "event_index": 598, - "event": "UTXO_MOVE", - "params": { - "asset": "XCP", - "block_index": 201, - "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "msg_index": 1, - "quantity": 1500000000, - "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "status": "valid", - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - } - ], - "next_cursor": 597, - "result_count": 12 - }, - "/v2/transactions//events": { - "result": [ - { - "event_index": 602, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68 - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - }, - { - "event_index": 601, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 201, - "btc_amount": 1000, - "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - }, - { - "event_index": 600, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "status": 0, - "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - }, - { - "event_index": 599, - "event": "CREDIT", - "params": { - "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "asset": "XCP", - "block_index": 201, - "calling_function": "dispense", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "quantity": 66, - "tx_index": 68, - "utxo": null, - "utxo_address": null, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - }, - { - "event_index": 598, - "event": "UTXO_MOVE", - "params": { - "asset": "XCP", - "block_index": 201, - "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "msg_index": 1, - "quantity": 1500000000, - "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "status": "valid", - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - } - ], - "next_cursor": 597, - "result_count": 12 - }, - "/v2/transactions//sends": { - "result": [ - { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "asset": "XCP", - "quantity": 1500000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "asset": "MYASSETA", - "quantity": 1500000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729876074, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "15.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/transactions//dispenses": { - "result": [ - { - "tx_index": 68, - "dispense_index": 0, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "asset": "XCP", - "dispense_quantity": 66, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "btc_amount": 1000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "last_status_tx_hash": null, - "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/transactions//events/": { - "result": [ - { - "event_index": 599, - "event": "CREDIT", - "params": { - "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "asset": "XCP", - "block_index": 201, - "calling_function": "dispense", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "quantity": 66, - "tx_index": 68, - "utxo": null, - "utxo_address": null, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - }, - { - "event_index": 597, - "event": "CREDIT", - "params": { - "address": null, - "asset": "XCP", - "block_index": 201, - "calling_function": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "quantity": 1500000000, - "tx_index": 68, - "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - }, - { - "event_index": 594, - "event": "CREDIT", - "params": { - "address": null, - "asset": "MYASSETA", - "block_index": 201, - "calling_function": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "quantity": 1500000000, - "tx_index": 68, - "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "block_time": 1729876074, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/transactions//events/": { - "result": [ - { - "event_index": 599, - "event": "CREDIT", - "params": { - "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "asset": "XCP", - "block_index": 201, - "calling_function": "dispense", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "quantity": 66, - "tx_index": 68, - "utxo": null, - "utxo_address": null, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - }, - { - "event_index": 597, - "event": "CREDIT", - "params": { - "address": null, - "asset": "XCP", - "block_index": 201, - "calling_function": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "quantity": 1500000000, - "tx_index": 68, - "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - }, - { - "event_index": 594, - "event": "CREDIT", - "params": { - "address": null, - "asset": "MYASSETA", - "block_index": 201, - "calling_function": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "quantity": 1500000000, - "tx_index": 68, - "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "block_time": 1729876074, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/addresses/balances": { - "result": [ - { - "asset": "A95428956980101314", - "total": 100000000000, - "addresses": [ - { - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "utxo": null, - "utxo_address": null, - "quantity": 100000000000, - "quantity_normalized": "1000.00000000" - } - ], - "asset_info": { - "asset_longname": "A95428959745315388.SUBNUMERIC", - "description": "A subnumeric asset", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "total_normalized": "1000.00000000" - }, - { - "asset": "MYASSETA", - "total": 97999999980, - "addresses": [ - { - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "utxo": null, - "utxo_address": null, - "quantity": 97999999980, - "quantity_normalized": "980.00000000" - } - ], - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "total_normalized": "980.00000000" - }, - { - "asset": "FAIRMINTA", - "total": 500000000, - "addresses": [ - { - "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "utxo": null, - "utxo_address": null, - "quantity": 500000000, - "quantity_normalized": "5.00000000" - } - ], - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "total_normalized": "5.00000000" - }, - { - "asset": "FAIRMINTD", - "total": 40, - "addresses": [ - { - "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "utxo": null, - "utxo_address": null, - "quantity": 40, - "quantity_normalized": "0.00000040" - } - ], - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "total_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "total": 19, - "addresses": [ - { - "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "utxo": null, - "utxo_address": null, - "quantity": 19, - "quantity_normalized": "0.00000019" - } - ], - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "total_normalized": "0.00000019" - } - ], - "next_cursor": "TESTLOCKDESC", - "result_count": 7 - }, - "/v2/addresses/transactions": { - "result": [ - { - "tx_index": 63, - "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", - "block_index": 197, - "block_hash": "71c33ed751f0d3896ba4ae8536beb0def514bfca9af11ca3d4a8d90245a6df48", - "block_time": 1729876048, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "btc_amount": 4000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2:0", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 62, - "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", - "block_index": 196, - "block_hash": "6e3cb216f3145455efc27a2f6f579c4a01305a02305f48759144dabb73b27da3", - "block_time": 1729876044, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", - "supported": true, - "utxos_info": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f:1", - "confirmed": true, - "unpacked_data": { - "message_type": "dispenser", - "message_type_id": 12, - "message_data": { - "asset": "TESTLOCKDESC", - "give_quantity": 1, - "escrow_quantity": 10000, - "mainchainrate": 1, - "dispenser_status": 0, - "action_address": null, - "oracle_address": null, - "status": "valid", - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "escrow_quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 59, - "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", - "block_index": 193, - "block_hash": "45f185041d0ca45bc37935f64eb5d323bdbf3867d26d00c4fe1ad1525a9812b6", - "block_time": 1729876032, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", - "supported": true, - "utxos_info": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff:1", - "confirmed": true, - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 58, - "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", - "block_index": 192, - "block_hash": "6be48c382c9942ca735bebd63f6fd172f2370046494e2b051ab2230e49f7c8c4", - "block_time": 1729876028, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "46f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "supported": true, - "utxos_info": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f:1", - "confirmed": true, - "unpacked_data": { - "message_type": "cancel", - "message_type_id": 70, - "message_data": { - "offer_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "status": "valid" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 57, - "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "block_index": 191, - "block_hash": "4003b7caf894823fd81bb6e27f945a17aad4e8674493d4cb6aeceb6233323e87", - "block_time": 1729876024, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", - "supported": true, - "utxos_info": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703:1", - "confirmed": true, - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } - }, - "btc_amount_normalized": "0.00000000" - } - ], - "next_cursor": 56, - "result_count": 39 - }, - "/v2/addresses/events": { - "result": [ - { - "event_index": 561, - "event": "DISPENSE", - "params": { - "asset": "TESTLOCKDESC", - "block_index": 197, - "btc_amount": 4000, - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "dispense_index": 0, - "dispense_quantity": 4000, - "dispenser_tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", - "tx_index": 63, - "block_time": 1729876048, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", - "block_index": 197, - "block_time": 1729876048 - }, - { - "event_index": 560, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "TESTLOCKDESC", - "dispense_count": 1, - "give_remaining": 6000, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "status": 0, - "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "give_remaining_normalized": "0.00006000" - }, - "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", - "block_index": 197, - "block_time": 1729876048 - }, - { - "event_index": 559, - "event": "CREDIT", - "params": { - "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "TESTLOCKDESC", - "block_index": 197, - "calling_function": "dispense", - "event": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", - "quantity": 4000, - "tx_index": 63, - "utxo": null, - "utxo_address": null, - "block_time": 1729876048, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00004000" - }, - "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", - "block_index": 197, - "block_time": 1729876048 - }, - { - "event_index": 557, - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "71c33ed751f0d3896ba4ae8536beb0def514bfca9af11ca3d4a8d90245a6df48", - "block_index": 197, - "block_time": 1729876048, - "btc_amount": 4000, - "data": "0d00", - "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "fee": 0, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", - "tx_index": 63, - "utxos_info": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2:0", - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00004000" - }, - "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", - "block_index": 197, - "block_time": 1729876048 - } - ], - "next_cursor": 557, - "result_count": 189 - }, - "/v2/addresses/mempool": { - "result": [ - { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "event": "ENHANCED_SEND", - "params": { - "asset": "XCP", - "block_index": 9999999, - "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "memo": null, - "quantity": 10000, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "status": "valid", - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "tx_index": 69, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1729876077.4463573 - }, - { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "event": "CREDIT", - "params": { - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "asset": "XCP", - "block_index": 201, - "calling_function": "send", - "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "quantity": 10000, - "tx_index": 69, - "utxo": null, - "utxo_address": null, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1729876077.4463573 - }, - { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "event": "DEBIT", - "params": { - "action": "send", - "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "asset": "XCP", - "block_index": 201, - "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "quantity": 10000, - "tx_index": 69, - "utxo": null, - "utxo_address": null, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1729876077.4463573 - }, - { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "mempool", - "block_index": 9999999, - "block_time": 1729876077.4463573, - "btc_amount": 0, - "data": "02000000000000000100000000000027108041bc73770b22d4ed185c6ac763c7d17e3a3272ce", - "destination": "", - "fee": 10000, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "tx_index": 69, - "utxos_info": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515:1", - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 10000, - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "memo": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - "timestamp": 1729876077.4463573 - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/addresses/
/balances": { - "result": [ - { - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "A95428956980101314", - "quantity": 100000000000, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": "A95428959745315388.SUBNUMERIC", - "description": "A subnumeric asset", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "1000.00000000" - }, - { - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "MYASSETA", - "quantity": 97999999980, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "980.00000000" - }, - { - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "XCP", - "quantity": 82699937196, - "utxo": null, - "utxo_address": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "826.99937000" - }, - { - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "TESTLOCKDESC", - "quantity": 9999990000, - "utxo": null, - "utxo_address": null, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "99.99990000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/addresses/
/balances/": { - "result": [ - { - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "XCP", - "quantity": 82699937196, - "utxo": null, - "utxo_address": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "826.99937000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/credits": { - "result": [ - { - "block_index": 192, - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "XCP", - "quantity": 1000, - "calling_function": "cancel order", - "event": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "tx_index": 58, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729876028, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - { - "block_index": 184, - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "XCP", - "quantity": 1000, - "calling_function": "cancel order", - "event": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", - "tx_index": 0, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729875934, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - { - "block_index": 161, - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "A95428956980101314", - "quantity": 100000000000, - "calling_function": "issuance", - "event": "92b8cfc3dc569089881dfa46bd7aded69c484e727c25ac8c0d98ea48d182e205", - "tx_index": 48, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729875920, - "asset_info": { - "asset_longname": "A95428959745315388.SUBNUMERIC", - "description": "A subnumeric asset", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "1000.00000000" - }, - { - "block_index": 158, - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "TESTLOCKDESC", - "quantity": 10000000000, - "calling_function": "issuance", - "event": "d679c8a07c7838453357da218c63bf8e7fb7b0efdf968013a632b9f14d728268", - "tx_index": 45, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729875898, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "100.00000000" - }, - { - "block_index": 152, - "address": null, - "asset": "MYASSETA", - "quantity": 1000000000, - "calling_function": "attach to utxo", - "event": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1", - "tx_index": 39, - "utxo": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1:1", - "utxo_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "confirmed": true, - "block_time": 1729875878, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000" - } - ], - "next_cursor": 44, - "result_count": 15 - }, - "/v2/addresses/
/debits": { - "result": [ - { - "block_index": 196, - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "TESTLOCKDESC", - "quantity": 10000, - "action": "open dispenser", - "event": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", - "tx_index": 62, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729876044, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00010000" - }, - { - "block_index": 193, - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "XCP", - "quantity": 1000, - "action": "open order", - "event": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", - "tx_index": 59, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729876032, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - { - "block_index": 191, - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "XCP", - "quantity": 1000, - "action": "open order", - "event": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "tx_index": 57, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729876024, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - { - "block_index": 190, - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "XCP", - "quantity": 10, - "action": "mpma send", - "event": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "tx_index": 56, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729876020, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - }, - { - "block_index": 190, - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "MYASSETA", - "quantity": 20, - "action": "mpma send", - "event": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "tx_index": 56, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729876020, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000020" - } - ], - "next_cursor": 44, - "result_count": 21 - }, - "/v2/addresses/
/bets": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/addresses/
/broadcasts": { - "result": [ - { - "tx_index": 24, - "tx_hash": "782e54445dc6f9962386534b10d6a8aaf57293a2b3496497dfb06449c9a278c5", - "block_index": 137, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "timestamp": 4003903983, - "value": 999.0, - "fee_fraction_int": 0, - "text": "Hello, world!", - "locked": false, - "status": "valid", - "confirmed": true, - "block_time": 1729875823, - "fee_fraction_int_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/burns": { - "result": [ - { - "tx_index": 0, - "tx_hash": "03c6237993bf4e49be2d4706650f42c8f5e92d5801c440c704be95b788fa3a94", - "block_index": 112, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "burned": 50000000, - "earned": 74999998167, - "status": "valid", - "confirmed": true, - "block_time": 1729875719, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99998000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/sends": { - "result": [ - { - "tx_index": 56, - "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "block_index": 190, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729876020, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 56, - "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "block_index": 190, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "asset": "MYASSETA", - "quantity": 10, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729876020, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 56, - "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "block_index": 190, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "asset": "MYASSETA", - "quantity": 10, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729876020, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 39, - "tx_hash": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1", - "block_index": 152, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1:1", - "asset": "MYASSETA", - "quantity": 1000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729875878, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 36, - "tx_hash": "20d672e20ae3e08302a625db8ec5e88b336dc5db4c807e88ee72d21b4d556904", - "block_index": 149, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "d04cbc4143bd475740dfb3d02bfdaaa23e40fc357c9e9475d29ecc97b6a5851a:1", - "asset": "MYASSETA", - "quantity": 1000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729875866, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/addresses/
/receives": { - "result": [ - { - "tx_index": 38, - "tx_hash": "d9c867b10bea6f7411fc096f380763fb0a09ee8fc6ca89568b5c11ee0f15063c", - "block_index": 151, - "source": "03cae60632c738d12c7ac2243ef952bbe11e47c70391ef56c5a8012cf1c8ca86:0", - "destination": "bcrt1qlnehx4acfdgpf3cz4hqtgdgf5wejvwhpr9x5kq", - "asset": "MYASSETA", - "quantity": 500000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729875873, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/sends/": { - "result": [ - { - "tx_index": 56, - "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "block_index": 190, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "asset": "MYASSETA", - "quantity": 10, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729876020, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 56, - "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "block_index": 190, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "asset": "MYASSETA", - "quantity": 10, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729876020, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 39, - "tx_hash": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1", - "block_index": 152, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1:1", - "asset": "MYASSETA", - "quantity": 1000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729875878, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 36, - "tx_hash": "20d672e20ae3e08302a625db8ec5e88b336dc5db4c807e88ee72d21b4d556904", - "block_index": 149, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "d04cbc4143bd475740dfb3d02bfdaaa23e40fc357c9e9475d29ecc97b6a5851a:1", - "asset": "MYASSETA", - "quantity": 1000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729875866, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/addresses/
/receives/": { - "result": [ - { - "tx_index": 38, - "tx_hash": "d9c867b10bea6f7411fc096f380763fb0a09ee8fc6ca89568b5c11ee0f15063c", - "block_index": 151, - "source": "03cae60632c738d12c7ac2243ef952bbe11e47c70391ef56c5a8012cf1c8ca86:0", - "destination": "bcrt1qlnehx4acfdgpf3cz4hqtgdgf5wejvwhpr9x5kq", - "asset": "MYASSETA", - "quantity": 500000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729875873, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/dispensers": { - "result": [ - { - "tx_index": 26, - "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729875837, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 62, - "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", - "block_index": 197, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "TESTLOCKDESC", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729876048, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/addresses/
/dispensers/": { - "result": { - "tx_index": 26, - "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729875837, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - } - }, - "/v2/addresses/
/dispenses/sends": { - "result": [ - { - "tx_index": 63, - "dispense_index": 0, - "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", - "block_index": 197, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "TESTLOCKDESC", - "dispense_quantity": 4000, - "dispenser_tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 62, - "block_index": 197, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729876048, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729875837, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", - "block_index": 140, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729875832, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/addresses/
/dispenses/receives": { - "result": [ - { - "tx_index": 63, - "dispense_index": 0, - "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", - "block_index": 197, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "TESTLOCKDESC", - "dispense_quantity": 4000, - "dispenser_tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 62, - "block_index": 197, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729876048, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729875837, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", - "block_index": 140, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729875832, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/addresses/
/dispenses/sends/": { - "result": [ - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729875837, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", - "block_index": 140, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729875832, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/addresses/
/dispenses/receives/": { - "result": [ - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729875837, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", - "block_index": 140, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729875832, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/addresses/
/sweeps": { - "result": [ - { - "tx_index": 60, - "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", - "block_index": 194, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "flags": 1, - "status": "valid", - "memo": "sweep my assets", - "fee_paid": 600000, - "confirmed": true, - "block_time": 1729876037, - "fee_paid_normalized": "0.00600000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/issuances": { - "result": [ - { - "tx_index": 48, - "tx_hash": "92b8cfc3dc569089881dfa46bd7aded69c484e727c25ac8c0d98ea48d182e205", - "msg_index": 0, - "block_index": 161, - "asset": "A95428956980101314", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "A subnumeric asset", - "fee_paid": 0, - "status": "valid", - "asset_longname": "A95428959745315388.SUBNUMERIC", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1729875920, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 47, - "tx_hash": "be598808b3f486e15e9e7267071c662fd87779a774a700271319f7ac59268ea9", - "msg_index": 0, - "block_index": 160, - "asset": "TESTLOCKDESC", - "quantity": 0, - "divisible": true, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 0, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": true, - "fair_minting": false, - "asset_events": "lock_description", - "confirmed": true, - "block_time": 1729875905, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 46, - "tx_hash": "d356791a0df1d37ddaf36b4b2a55eccaeda19adbaf8e099acda84fe9f8d43bb2", - "msg_index": 0, - "block_index": 159, - "asset": "A95428959745315388", - "quantity": 0, - "divisible": true, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 0, - "status": "valid", - "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1729875901, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 45, - "tx_hash": "d679c8a07c7838453357da218c63bf8e7fb7b0efdf968013a632b9f14d728268", - "msg_index": 0, - "block_index": 158, - "asset": "TESTLOCKDESC", - "quantity": 10000000000, - "divisible": true, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1729875898, - "quantity_normalized": "100.00000000", - "fee_paid_normalized": "0.50000000" - }, - { - "tx_index": 42, - "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", - "msg_index": 0, - "block_index": 155, - "asset": "A95428958968845068", - "quantity": 0, - "divisible": true, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "MYASSETA.SUBMYASSETA", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", - "confirmed": true, - "block_time": 1729875887, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": 16, - "result_count": 21 - }, - "/v2/addresses/
/assets": { - "result": [ - { - "asset": "TESTLOCKDESC", - "asset_id": "70403005118950974", - "asset_longname": null, - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "Test Locking Description", - "first_issuance_block_index": 158, - "last_issuance_block_index": 160, - "confirmed": true, - "first_issuance_block_time": 1729875898, - "last_issuance_block_time": 1729875905, - "supply_normalized": "100.00000000" - }, - { - "asset": "MYASSETA", - "asset_id": "103804245870", - "asset_longname": null, - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, - "confirmed": true, - "first_issuance_block_time": 1729875862, - "last_issuance_block_time": 1729875862, - "supply_normalized": "1000.00000000" - }, - { - "asset": "FAIRMINTD", - "asset_id": "1046814266085", - "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 40, - "description": "", - "first_issuance_block_index": 135, - "last_issuance_block_index": 136, - "confirmed": true, - "first_issuance_block_time": 1729875814, - "last_issuance_block_time": 1729875818, - "supply_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "asset_id": "1046814266084", - "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 19, - "description": "", - "first_issuance_block_index": 131, - "last_issuance_block_index": 134, - "confirmed": true, - "first_issuance_block_time": 1729875789, - "last_issuance_block_time": 1729875810, - "supply_normalized": "0.00000019" - }, - { - "asset": "FAIRMINTB", - "asset_id": "1046814266083", - "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 0, - "description": "", - "first_issuance_block_index": 126, - "last_issuance_block_index": 130, - "confirmed": true, - "first_issuance_block_time": 1729875771, - "last_issuance_block_time": 1729875786, - "supply_normalized": "0.00000000" - } - ], - "next_cursor": 2, - "result_count": 6 - }, - "/v2/addresses/
/assets/issued": { - "result": [ - { - "asset": "TESTLOCKDESC", - "asset_id": "70403005118950974", - "asset_longname": null, - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "Test Locking Description", - "first_issuance_block_index": 158, - "last_issuance_block_index": 160, - "confirmed": true, - "first_issuance_block_time": 1729875898, - "last_issuance_block_time": 1729875905, - "supply_normalized": "100.00000000" - }, - { - "asset": "MYASSETA", - "asset_id": "103804245870", - "asset_longname": null, - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, - "confirmed": true, - "first_issuance_block_time": 1729875862, - "last_issuance_block_time": 1729875862, - "supply_normalized": "1000.00000000" - }, - { - "asset": "FAIRMINTD", - "asset_id": "1046814266085", - "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 40, - "description": "", - "first_issuance_block_index": 135, - "last_issuance_block_index": 136, - "confirmed": true, - "first_issuance_block_time": 1729875814, - "last_issuance_block_time": 1729875818, - "supply_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "asset_id": "1046814266084", - "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 19, - "description": "", - "first_issuance_block_index": 131, - "last_issuance_block_index": 134, - "confirmed": true, - "first_issuance_block_time": 1729875789, - "last_issuance_block_time": 1729875810, - "supply_normalized": "0.00000019" - }, - { - "asset": "FAIRMINTB", - "asset_id": "1046814266083", - "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 0, - "description": "", - "first_issuance_block_index": 126, - "last_issuance_block_index": 130, - "confirmed": true, - "first_issuance_block_time": 1729875771, - "last_issuance_block_time": 1729875786, - "supply_normalized": "0.00000000" - } - ], - "next_cursor": 2, - "result_count": 6 - }, - "/v2/addresses/
/assets/owned": { - "result": [ - { - "asset": "TESTLOCKDESC", - "asset_id": "70403005118950974", - "asset_longname": null, - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "Test Locking Description", - "first_issuance_block_index": 158, - "last_issuance_block_index": 160, - "confirmed": true, - "first_issuance_block_time": 1729875898, - "last_issuance_block_time": 1729875905, - "supply_normalized": "100.00000000" - }, - { - "asset": "MYASSETA", - "asset_id": "103804245870", - "asset_longname": null, - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, - "confirmed": true, - "first_issuance_block_time": 1729875862, - "last_issuance_block_time": 1729875862, - "supply_normalized": "1000.00000000" - }, - { - "asset": "FAIRMINTD", - "asset_id": "1046814266085", - "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 40, - "description": "", - "first_issuance_block_index": 135, - "last_issuance_block_index": 136, - "confirmed": true, - "first_issuance_block_time": 1729875814, - "last_issuance_block_time": 1729875818, - "supply_normalized": "0.00000040" - }, - { - "asset": "FAIRMINTC", - "asset_id": "1046814266084", - "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 19, - "description": "", - "first_issuance_block_index": 131, - "last_issuance_block_index": 134, - "confirmed": true, - "first_issuance_block_time": 1729875789, - "last_issuance_block_time": 1729875810, - "supply_normalized": "0.00000019" - }, - { - "asset": "FAIRMINTB", - "asset_id": "1046814266083", - "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 0, - "description": "", - "first_issuance_block_index": 126, - "last_issuance_block_index": 130, - "confirmed": true, - "first_issuance_block_time": 1729875771, - "last_issuance_block_time": 1729875786, - "supply_normalized": "0.00000000" - } - ], - "next_cursor": 2, - "result_count": 6 - }, - "/v2/addresses/
/transactions": { - "result": [ - { - "tx_index": 62, - "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", - "block_index": 196, - "block_hash": "6e3cb216f3145455efc27a2f6f579c4a01305a02305f48759144dabb73b27da3", - "block_time": 1729876044, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", - "supported": true, - "utxos_info": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f:1", - "confirmed": true, - "unpacked_data": { - "message_type": "dispenser", - "message_type_id": 12, - "message_data": { - "asset": "TESTLOCKDESC", - "give_quantity": 1, - "escrow_quantity": 10000, - "mainchainrate": 1, - "dispenser_status": 0, - "action_address": null, - "oracle_address": null, - "status": "valid", - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "escrow_quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 59, - "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", - "block_index": 193, - "block_hash": "45f185041d0ca45bc37935f64eb5d323bdbf3867d26d00c4fe1ad1525a9812b6", - "block_time": 1729876032, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", - "supported": true, - "utxos_info": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff:1", - "confirmed": true, - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 58, - "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", - "block_index": 192, - "block_hash": "6be48c382c9942ca735bebd63f6fd172f2370046494e2b051ab2230e49f7c8c4", - "block_time": 1729876028, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "46f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "supported": true, - "utxos_info": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f:1", - "confirmed": true, - "unpacked_data": { - "message_type": "cancel", - "message_type_id": 70, - "message_data": { - "offer_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "status": "valid" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 57, - "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "block_index": 191, - "block_hash": "4003b7caf894823fd81bb6e27f945a17aad4e8674493d4cb6aeceb6233323e87", - "block_time": 1729876024, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", - "supported": true, - "utxos_info": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703:1", - "confirmed": true, - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 56, - "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "block_index": 190, - "block_hash": "0c22d5f5069d1e48684934297db7b24cd14f263b972adee4e059a1b97f242b5a", - "block_time": 1729876020, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "03000380e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba8041bc73770b22d4ed185c6ac763c7d17e3a3272ce80ff7bfd93f2bf72a1088e1cdf07174f46f787c026400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", - "supported": true, - "utxos_info": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65:0", - "confirmed": true, - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MYASSETA", - "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "quantity": 10, - "memo": null, - "memo_is_hex": null, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" - }, - { - "asset": "XCP", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "quantity": 10, - "memo": null, - "memo_is_hex": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - } - ] - }, - "btc_amount_normalized": "0.00000000" - } - ], - "next_cursor": 51, - "result_count": 26 - }, - "/v2/addresses/
/dividends": { - "result": [ - { - "tx_index": 41, - "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", - "block_index": 154, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "MYASSETA", - "dividend_asset": "XCP", - "quantity_per_unit": 100000000, - "fee_paid": 40000, - "status": "valid", - "confirmed": true, - "block_time": 1729875884, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00040000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/orders": { - "result": [ - { - "tx_index": 49, - "tx_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", - "block_index": 184, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 183, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "confirmed": true, - "block_time": 1729875934, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 51, - "tx_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "block_index": 188, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, - "expiration": 21, - "expire_index": 206, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1729876012, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00010000", - "get_quantity_normalized": "0.00010000", - "get_remaining_normalized": "0.00005000", - "give_remaining_normalized": "0.00005000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 57, - "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "block_index": 192, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 212, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "cancelled", - "confirmed": true, - "block_time": 1729876028, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 59, - "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", - "block_index": 193, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 214, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1729876032, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/addresses/
/fairminters": { - "result": [ - { - "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", - "tx_index": 42, - "block_index": 155, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "A95428958968845068", - "asset_parent": "MYASSETA", - "asset_longname": "MYASSETA.SUBMYASSETA", - "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, - "confirmed": true, - "block_time": 1729875887, - "price_normalized": "0.00000001", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", - "tx_index": 22, - "block_index": 135, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "FAIRMINTD", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 50, - "quantity_by_price": 60, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": 40, - "commission": 0, - "paid_quantity": 34, - "confirmed": true, - "block_time": 1729875814, - "price_normalized": "0.00000050", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000060", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - }, - { - "tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", - "tx_index": 18, - "block_index": 131, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "FAIRMINTC", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": 19, - "commission": 0, - "paid_quantity": 5, - "confirmed": true, - "block_time": 1729875789, - "price_normalized": "0.00000001", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000019", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000005" - }, - { - "tx_hash": "5bbb7d89d98e4d3cea2e5bcb4f6438a19666ff81c76b02e70f1508276c81fcfe", - "tx_index": 14, - "block_index": 130, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "FAIRMINTB", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 130, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 300000000, - "commission": 0, - "paid_quantity": 300000000, - "confirmed": true, - "block_time": 1729875786, - "price_normalized": "0.00000001", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "3.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "3.00000000" - }, - { - "tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", - "tx_index": 10, - "block_index": 125, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "FAIRMINTA", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 124, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 10000000000, - "commission": 0, - "paid_quantity": 10000000000, - "confirmed": true, - "block_time": 1729875767, - "price_normalized": "0.00000001", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "100.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "100.00000000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/addresses/
/fairmints": { - "result": [ - { - "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729875818, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - }, - { - "tx_hash": "87884ac53a4aacf74156f175cb165810d1814f1f8055d20c774db5c03037d974", - "tx_index": 21, - "block_index": 134, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", - "asset": "FAIRMINTC", - "earn_quantity": 11, - "paid_quantity": 3, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729875810, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000011", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000003" - }, - { - "tx_hash": "cac3154c795618e62f7795292f95404673f9cf0c3ec5d3b8569e7e54e56041b5", - "tx_index": 20, - "block_index": 133, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", - "asset": "FAIRMINTC", - "earn_quantity": 3, - "paid_quantity": 1, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729875796, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000003", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000001" - }, - { - "tx_hash": "9938a552fcf5b52aac1996f6ef4c65ef99ff68e50830c40666c0ae6a2a3a0ea8", - "tx_index": 19, - "block_index": 132, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", - "asset": "FAIRMINTC", - "earn_quantity": 5, - "paid_quantity": 1, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729875793, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000005", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000001" - }, - { - "tx_hash": "35e610d6b6a17ffa96a45a34067de3837f4816e5de97bbaa1a4ba6c0e62aabd1", - "tx_index": 15, - "block_index": 127, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "5bbb7d89d98e4d3cea2e5bcb4f6438a19666ff81c76b02e70f1508276c81fcfe", - "asset": "FAIRMINTB", - "earn_quantity": 100000000, - "paid_quantity": 100000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729875776, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "1.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "1.00000000" - }, - { - "tx_hash": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729875760, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 6 - }, - "/v2/addresses/
/fairmints/": { - "result": [ - { - "tx_hash": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729875760, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/addresses/
/compose/bet": { - "error": "['feed doesn\u2019t exist']" - }, - "/v2/addresses/
/compose/broadcast": { - "result": { - "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "timestamp": 4003903985, - "value": 100.0, - "fee_fraction": 0.05, - "text": "\"Hello, world!\"" - }, - "name": "broadcast", - "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985110, - "btc_fee": 14890, - "rawtransaction": "02000000000101ba9f4524168be2765a45cc71adb2b22281788fd6a477ebf760ed1f395345bbcb00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff0200000000000000002b6a2924f04cf861aaab433b87d991283f4abe647b7b8e6bdddce649bd29af4473b032afe6299df3411027f4d6b7052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", - "unpacked_data": { - "message_type": "broadcast", - "message_type_id": 30, - "message_data": { - "timestamp": 4003903985, - "value": 100.0, - "fee_fraction_int": 5000000, - "text": "\"Hello, world!\"", - "status": "valid", - "fee_fraction_int_normalized": "0.05000000" - } - } - } - }, - "/v2/addresses/
/compose/btcpay": { - "result": { - "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf" - }, - "name": "btcpay", - "data": "434e5452505254590bd520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c19ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "btc_in": 5000000000, - "btc_out": 3000, - "btc_change": 4999978049, - "btc_fee": 18951, - "rawtransaction": "02000000000101be150b833f3b3d41e45aa03d1956746c24462d6ee5fa356310ae29f0fac3fdab00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff03b80b000000000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74800000000000000004b6a49c822823fcbefad04994d17ebc7cd5ac8aecd0288a5df471749e7634949cae075fc3c11394264e28ade6e0acb72a1cd42aa03094bf3bb3a54bdafd74d88414cb76cc29609c85e65b0ef419c052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", - "unpacked_data": { - "message_type": "btcpay", - "message_type_id": 11, - "message_data": { - "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "status": "valid" - } - } - } - }, - "/v2/addresses/
/compose/burn": { - "result": { - "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "quantity": 1000, - "overburn": false - }, - "name": "burn", - "data": null, - "btc_in": 5000000000, - "btc_out": 1000, - "btc_change": 4999985156, - "btc_fee": 13844, - "rawtransaction": "0200000000010137ec33628fcdb1a9c50007c3a89a0e6bae5706b02951f6125718f6b4529e541600000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac04b8052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000" - } - }, - "/v2/addresses/
/compose/cancel": { - "result": { - "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "offer_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff" - }, - "name": "cancel", - "data": "434e5452505254594665c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985110, - "btc_fee": 14890, - "rawtransaction": "020000000001017586b86bc163821cd6b659640efd899c63173e2317436686e63e8e3368fa8ec800000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff0200000000000000002b6a298361e9b61b93c70680ebfc9f5db9ec6456157f10da5722c9c577426d29610c2a694f715838bea74b93d6b7052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", - "unpacked_data": { - "message_type": "cancel", - "message_type_id": 70, - "message_data": { - "offer_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", - "status": "valid" - } - } - } - }, - "/v2/addresses/
/compose/destroy": { - "result": { - "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "XCP", - "quantity": 1000, - "tag": "\"bugs!\"", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - "name": "destroy", - "data": "434e5452505254596e000000000000000100000000000003e822627567732122", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985664, - "btc_fee": 14336, - "rawtransaction": "020000000001012e0e50c19f5074eea1d8c17cd6879adcb051c25abbe3e1a9328f06faf229116000000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000226a20c96ff42fd9bc9aecb9251b0a6417472b0690430266ca7cfe494b636da1f2197500ba052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", - "unpacked_data": { - "message_type": "destroy", - "message_type_id": 110, - "message_data": { - "asset": "XCP", - "quantity": 1000, - "tag": "22627567732122", - "quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/addresses/
/compose/dispenser": { - "result": { - "params": { - "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "asset": "XCP", - "give_quantity": 1000, - "escrow_quantity": 1000, - "mainchainrate": 100, - "status": 0, - "open_address": null, - "oracle_address": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "escrow_quantity_normalized": "0.00001000" - }, - "name": "dispenser", - "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", - "btc_in": 4949934500, - "btc_out": 0, - "btc_change": 4949919549, - "btc_fee": 14951, - "rawtransaction": "02000000000101e3f61985ad574271f36d9aa38a689b45a90eb31282c733525079b9be999e2f9c010000001600140e46f99c97e82da0b0b17c2eaf78f51070e611b4ffffffff0200000000000000002c6a2a4277113ca832cfadb6d4e12145ec87337a9894e147e80622109d08e3ed56eaef9652bd96b7ead91554df3dc70927010000001600140e46f99c97e82da0b0b17c2eaf78f51070e611b402000000000000", - "unpacked_data": { - "message_type": "dispenser", - "message_type_id": 12, - "message_data": { - "asset": "XCP", - "give_quantity": 1000, - "escrow_quantity": 1000, - "mainchainrate": 100, - "dispenser_status": 0, - "action_address": null, - "oracle_address": null, - "status": "valid", - "give_quantity_normalized": "0.00001000", - "escrow_quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/addresses/
/compose/dividend": { - "result": { - "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "quantity_per_unit": 1, - "asset": "FAIRMINTA", - "dividend_asset": "XCP", - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_per_unit_normalized": "0.00000001" - }, - "name": "dividend", - "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985602, - "btc_fee": 14398, - "rawtransaction": "0200000000010117d0c94606515db5d229f7068ab8f8b313ed418d31799d5245c932e70fe2a39700000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000236a217c09d61d451fcc78daa6dfaf67020c301b75fe683edb01d4f2fd53209555b2be5bc2b9052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", - "unpacked_data": { - "message_type": "dividend", - "message_type_id": 50, - "message_data": { - "asset": "FAIRMINTA", - "quantity_per_unit": 1, - "dividend_asset": "XCP", - "status": "valid", - "quantity_per_unit_normalized": "0.00000001" - } - } - } - }, - "/v2/addresses/
/compose/issuance": { - "result": { - "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "XCPTEST", - "quantity": 1000, - "transfer_destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "lock": false, - "reset": false, - "description": null, - "quantity_normalized": "0.00001000" - }, - "name": "issuance", - "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", - "btc_in": 5000000000, - "btc_out": 546, - "btc_change": 4999982964, - "btc_fee": 16490, - "rawtransaction": "02000000000101327c00ce43ede25debe22ed780dac3ba76d392a9ba648307f515b626983b9be800000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff032202000000000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff7480000000000000000236a21e04797aade082d95379ff0cfde5da76db1a9aca46565564ebd5c7cc3b9711a964274af052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", - "unpacked_data": { - "message_type": "issuance", - "message_type_id": 22, - "message_data": { - "asset_id": 7136017375, - "asset": "XCPTEST", - "subasset_longname": null, - "quantity": 1000, - "divisible": true, - "lock": false, - "reset": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "status": "valid", - "quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/addresses/
/compose/mpma": { - "result": { - "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset_dest_quant_list": [ - [ - "XCP", - "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - 1 - ], - [ - "MYASSETA", - "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - 2 - ] - ], - "memo": "\"Hello, world!\"", - "memo_is_hex": false - }, - "name": "mpma", - "data": "434e54525052545903000280aa5f1fcf04bccbd58dfaa75c74514113e56ff74880e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", - "btc_in": 20000000000, - "btc_out": 2000, - "btc_change": 19999942870, - "btc_fee": 55130, - "rawtransaction": "020000000001040dea2852b03c6db35c901546ffbbaebe82b32effb00adc6c763c9323ca41e24e00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffffd57a84ba84f216251a91df650d6b7116bf3b34922a157d82884f3d5c88678a0500000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff377647a5bd5470af2f29be5e89fbfe894378660e3eb587b09f3ce528215c9c0b00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff1f89794624b6dd4e5cdb4d3a46b6f08abc0f8c40cad8f8f03d83cb294ef2b5fe00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff03e8030000000000006951210359b1740fd686fce25029f048f4d762e7b9cfe85d1af814e08e031b6682763dcd21020336c3c2524555b015219669c830c4f6d6ae1751359a1b08bdc43930dd723abf210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51553aee8030000000000006951210356b1740fd686fce2500a8725061159d9544b5496c36075cc65574a27919352402103f47e0b2a91f4f85b701ef026d3692fdd02755da353c8a1879f8c5c5cb11d169d210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51553aed6e816a804000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000002000002000002000000000000", - "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MYASSETA", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "quantity": 2, - "memo": "\"Hello, world!\"", - "memo_is_hex": false - }, - { - "asset": "XCP", - "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "quantity": 1, - "memo": "\"Hello, world!\"", - "memo_is_hex": false - } - ] - } - } - }, - "/v2/addresses/
/compose/order": { - "result": { - "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "FAIRMINTA", - "get_quantity": 1000, - "expiration": 100, - "fee_required": 100, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000100" - }, - "name": "order", - "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999984495, - "btc_fee": 15505, - "rawtransaction": "02000000000101ee39364187a27e574280596410b70f4847254d3f3aff821fcd8a0f9829133b3100000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000356a3373690747fb312f865b7593ea2d05ea3fe290d77e97b1bc967973240e6d379222a28d90fd71664cd13dc8f4773ffbfd91df14f06fb5052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "FAIRMINTA", - "get_quantity": 1000, - "expiration": 100, - "fee_required": 100, - "status": "open", - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000100" - } - } - } - }, - "/v2/addresses/
/compose/send": { - "result": { - "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "XCP", - "quantity": 1000, - "memo": null, - "memo_is_hex": false, - "use_enhanced_send": true, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999984803, - "btc_fee": 15197, - "rawtransaction": "020000000001015f572b10e82ae4e7245d3788318ec4699543a4e925fc2232a2de2c9271c49c8100000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000306a2ee796c2a399c14ecdd3bf731ace596700d4468848a6fdb759d1f64c8cfdb93a279ea80c4a861fba8a3e3f8c180e25a3b6052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 1000, - "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "memo": null, - "quantity_normalized": "0.00001000" - } - } - } - }, - "/v2/addresses/
/compose/sweep": { - "result": { - "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "flags": 7, - "memo": "FFFF" - }, - "name": "sweep", - "data": "434e5452505254590480e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba07ffff", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999985602, - "btc_fee": 14398, - "rawtransaction": "02000000000101f01cf8227b24abff6c956382c4b2ebbeba4380b6f6290d16d7f3d1888da0998b00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000236a21b8ac5ec1c7c141350f22bbc7877bfd56e15fe9314cfecc34c55bc586ce69dbc72ac2b9052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", - "unpacked_data": { - "message_type": "sweep", - "message_type_id": 4, - "message_data": { - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "flags": 7, - "memo": "ffff" - } - } - } - }, - "/v2/addresses/
/compose/dispense": { - "result": { - "params": { - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "quantity": 1000 - }, - "name": "dispense", - "data": "434e5452505254590d00", - "btc_in": 4949854000, - "btc_out": 1000, - "btc_change": 4949837926, - "btc_fee": 15074, - "rawtransaction": "02000000000101f2919794fe633be2cb9c213e5644ca18b8d5064da3a1134edd8704d776a21d1102000000160014e8c3b1adeb653f6e4f1b59eb2bd4db48f26652baffffffff03e803000000000000160014ff7bfd93f2bf72a1088e1cdf07174f46f787c02600000000000000000c6a0a1e1e622ba185e90744bf6688082701000000160014e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba02000000000000", - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - } - } - }, - "/v2/addresses/
/compose/fairminter": { - "result": { - "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "MYASSET", - "asset_parent": "", - "price": 10, - "quantity_by_price": 1, - "max_mint_per_tx": 0, - "hard_cap": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "minted_asset_commission": 0.0, - "burn_payment": false, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "description": "", - "price_normalized": "0.00000010", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - }, - "name": "fairminter", - "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999984741, - "btc_fee": 15259, - "rawtransaction": "020000000001012a035812009894c8e7773b1d3a74269e92d17e91c4061aed16f13ca471a66f0500000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000316a2f04837b856423fea56cbc0aaccecd1342cc3751ec4c51b50e00cc5fc3939103c81dfe27dede267cf8fad823f319dd7a65b6052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", - "unpacked_data": { - "message_type": "fairminter", - "message_type_id": 90, - "message_data": { - "asset": "MYASSET", - "asset_parent": "", - "price": 10, - "quantity_by_price": 1, - "max_mint_per_tx": 0, - "hard_cap": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "minted_asset_commission": "0.00000000", - "burn_payment": false, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "description": "", - "price_normalized": "0.00000010", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - } - } - } - }, - "/v2/addresses/
/compose/fairmint": { - "result": { - "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "FAIRMINTC", - "quantity": 1, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000001" - }, - "name": "fairmint", - "data": "434e5452505254595b464149524d494e54437c31", - "btc_in": 5000000000, - "btc_out": 0, - "btc_change": 4999986402, - "btc_fee": 13598, - "rawtransaction": "02000000000101de0c787ae9cc816f11a997c834c15422b17f83ce29db74bc454956f6c4de267800000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000166a1474ca8fac46f44178e095034e94a2d1b7d50beb40e2bc052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", - "unpacked_data": { - "message_type": "fairmint", - "message_type_id": 91, - "message_data": { - "asset": "FAIRMINTC", - "quantity": 1, - "quantity_normalized": "0.00000001" - } - } - } - }, - "/v2/addresses/
/compose/attach": { - "result": { - "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f:1", - "asset": "XCP", - "quantity": 1000, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - "name": "utxo", - "data": "434e54525052545964626372743171346630336c6e6379686e39617472303635617738673532707a306a6b6c6136673435707a76617c366537343964363866663964393938633138313733363561363035373633323431363931633532383362363137366366636563303235396262306565326336663a317c5843507c31303030", - "btc_in": 30000000000, - "btc_out": 3000, - "btc_change": 29999914612, - "btc_fee": 82388, - "rawtransaction": "0200000000010617008f4f372adb06a763d40a362f96e2e2740a0555de276dd5c8a1ff0650f2fa00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748fffffffff528117da56199d9812d06e4ef27ed43620b916671babdd567a37a807614114700000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff76667f1d58f0b61461070d53d8bb7a55789c81b0a42ce2cad54bfe5d07b9832200000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff3a6e9e132bbe15f2b73d289f8abccc38b2894bfcb946091ed09d869a042b328200000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff54ee4eeab8d8a9eb4b8674287e88971334d615f78698f49de365af94e34114b600000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff0f821efaabb6e0e6971b5914b00bb4a770e9c495e67ed297762d8752328f8b0800000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff04e80300000000000069512102a750859296f9e5fa5855687c9443f3876369e4961a2d7e818363d1f300ab7b852103ed73bb9e8a0b92b1f28c4b0a44cc55a7eb92b65b6df3f77aad1d54c0a158297d210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51553aee80300000000000069512102a750859296f9e5fa58096c79df53fbcf6f6ce59d47742ecede6cdea241ee7d182103e874eed8845596e0b7c443534d9605a6bac5e54872e6a634ae410196a8597acb210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51553aee803000000000000695121028d50859296f9e5fa58036929800df38a0f4c84d947732dc8eb0de89274d94bb72103db46dae9b26ca78382f67b602fa034918ca6832b178596069b7863f4983c1f98210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51553ae745e22fc06000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000002000002000002000002000002000000000000", - "unpacked_data": { - "message_type": "unknown", - "message_type_id": 100, - "message_data": { - "error": "Unknown message type" - } - } - } - }, - "/v2/utxos//compose/detach": { - "result": { - "params": { - "source": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "XCP", - "quantity": 1000, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00001000" - }, - "name": "utxo", - "data": "434e54525052545964613763316533666335643338353462643362333135306632313531393432343436353236663538626530653331333837316261386530333337333131353938303a307c626372743171346630336c6e6379686e39617472303635617738673532707a306a6b6c6136673435707a76617c5843507c31303030", - "btc_in": 4950080000, - "btc_out": 3000, - "btc_change": 4950028023, - "btc_fee": 48977, - "rawtransaction": "02000000000103add2da36e3c80ec048f687ac495f3292dcab0d29f5898eb447e64dbe5ef76f2a010000001600149f22482d5ab564881e7bf35d1fe53187f23d85b7ffffffff2809c45f929d5db89e3bd6e3b3557330c64ae9cc1e0a7c6dbbe4ce90596c62bb000000001600149f22482d5ab564881e7bf35d1fe53187f23d85b7ffffffffa1980cf0c44a39398be3125f10f7a8eccd9a915fe1c121ea9001b44c410dad1d010000001600149f22482d5ab564881e7bf35d1fe53187f23d85b7ffffffff04e8030000000000006951210273d9564b709bebfe06c33885d9490a4153d102da83c9e97be48ed4a6a53d893c21037ce4e1a59dca1a69f97747044000cc02a68b0132b17a0ef41a499688cc68024b2103dfe916dc86fb9eef3d273cb8dd60f9776dd6ab378df03396da81eef4b9137e5f53aee8030000000000006951210373d9564b709bebfe06c26981894f5c4304870e8680cbec33e48995b0a77d88b521032ab2e0f8c6985a35a57a12460702cc51f2c45b30b42d4dbf191bcad5cf3f5d062103dfe916dc86fb9eef3d273cb8dd60f9776dd6ab378df03396da81eef4b9137e5f53aee8030000000000006951210359d9564b709bebfe06936cc2c00e0e0e6df167c281c1ec7f86eae7c4960cbcb521034c82d394a8fb235dcb4373327532fa6493b36357811f3dc52971a1b9ae093a732103dfe916dc86fb9eef3d273cb8dd60f9776dd6ab378df03396da81eef4b9137e5f53aef76e0b27010000001600149f22482d5ab564881e7bf35d1fe53187f23d85b702000002000002000000000000", - "unpacked_data": { - "message_type": "unknown", - "message_type_id": 100, - "message_data": { - "error": "Unknown message type" - } - } - } - }, - "/v2/assets": { - "result": [ - { - "asset": "UTXOASSET", - "asset_id": "4336417415635", - "asset_longname": null, - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "owner": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset", - "first_issuance_block_index": 198, - "last_issuance_block_index": 198, - "confirmed": true, - "first_issuance_block_time": 1729876053, - "last_issuance_block_time": 1729876053, - "supply_normalized": "1000.00000000" - }, - { - "asset": "TESTLOCKDESC", - "asset_id": "70403005118950974", - "asset_longname": null, - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "Test Locking Description", - "first_issuance_block_index": 158, - "last_issuance_block_index": 160, - "confirmed": true, - "first_issuance_block_time": 1729875898, - "last_issuance_block_time": 1729875905, - "supply_normalized": "100.00000000" - }, - { - "asset": "MYASSETB", - "asset_id": "103804245871", - "asset_longname": null, - "issuer": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "owner": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset B", - "first_issuance_block_index": 157, - "last_issuance_block_index": 157, - "confirmed": true, - "first_issuance_block_time": 1729875894, - "last_issuance_block_time": 1729875894, - "supply_normalized": "1000.00000000" - }, - { - "asset": "MYASSETA", - "asset_id": "103804245870", - "asset_longname": null, - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 100000000000, - "description": "My super asset A", - "first_issuance_block_index": 148, - "last_issuance_block_index": 148, - "confirmed": true, - "first_issuance_block_time": 1729875862, - "last_issuance_block_time": 1729875862, - "supply_normalized": "1000.00000000" - }, - { - "asset": "FAIRMINTD", - "asset_id": "1046814266085", - "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 40, - "description": "", - "first_issuance_block_index": 135, - "last_issuance_block_index": 136, - "confirmed": true, - "first_issuance_block_time": 1729875814, - "last_issuance_block_time": 1729875818, - "supply_normalized": "0.00000040" - } - ], - "next_cursor": 4, - "result_count": 9 - }, - "/v2/assets/": { - "result": { - "asset": "FAIRMINTA", - "asset_id": "1046814266082", - "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 10000000000, - "description": "", - "first_issuance_block_index": 122, - "last_issuance_block_index": 125, - "confirmed": true, - "first_issuance_block_time": 1729875755, - "last_issuance_block_time": 1729875767, - "supply_normalized": "100.00000000" - } - }, - "/v2/assets//balances": { - "result": [ - { - "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "utxo": null, - "utxo_address": null, - "asset": "FAIRMINTA", - "quantity": 9500000000, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "95.00000000" - }, - { - "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "utxo": null, - "utxo_address": null, - "asset": "FAIRMINTA", - "quantity": 500000000, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/assets//balances/
": { - "result": [ - { - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "XCP", - "quantity": 82699937196, - "utxo": null, - "utxo_address": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "826.99937000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/assets//orders": { - "result": [ - { - "tx_index": 49, - "tx_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", - "block_index": 184, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 183, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "confirmed": true, - "block_time": 1729875934, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 51, - "tx_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "block_index": 188, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, - "expiration": 21, - "expire_index": 206, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1729876012, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00010000", - "get_quantity_normalized": "0.00010000", - "get_remaining_normalized": "0.00005000", - "give_remaining_normalized": "0.00005000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 57, - "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "block_index": 192, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 212, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "cancelled", - "confirmed": true, - "block_time": 1729876028, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 59, - "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", - "block_index": 193, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 214, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1729876032, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 52, - "tx_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "block_index": 187, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "give_asset": "BTC", - "give_quantity": 2000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 2000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 207, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "filled", - "confirmed": true, - "block_time": 1729876008, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00002000", - "get_quantity_normalized": "0.00002000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - } - ], - "next_cursor": 54, - "result_count": 7 - }, - "/v2/assets//matches": { - "result": [ - { - "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "tx0_index": 51, - "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "tx1_index": 54, - "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "tx1_address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "forward_asset": "XCP", - "forward_quantity": 3000, - "backward_asset": "BTC", - "backward_quantity": 3000, - "tx0_block_index": 186, - "tx1_block_index": 188, - "block_index": 188, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 208, - "fee_paid": 0, - "status": "pending", - "confirmed": true, - "block_time": 1729876012, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "tx0_index": 51, - "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "tx1_index": 52, - "tx1_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "forward_asset": "XCP", - "forward_quantity": 2000, - "backward_asset": "BTC", - "backward_quantity": 2000, - "tx0_block_index": 185, - "tx1_block_index": 186, - "block_index": 187, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 206, - "fee_paid": 0, - "status": "completed", - "confirmed": true, - "block_time": 1729876008, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00002000", - "backward_quantity_normalized": "0.00002000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b_a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", - "tx0_index": 49, - "tx0_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "tx1_index": 50, - "tx1_hash": "a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", - "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 162, - "tx1_block_index": 163, - "block_index": 184, - "tx0_expiration": 21, - "tx1_expiration": 20, - "match_expire_index": 183, - "fee_paid": 0, - "status": "expired", - "confirmed": true, - "block_time": 1729875934, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/assets//credits": { - "result": [ - { - "block_index": 194, - "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "sweep", - "event": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", - "tx_index": 60, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729876037, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "block_index": 125, - "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "asset": "FAIRMINTA", - "quantity": 9000000000, - "calling_function": "fairmint", - "event": "247a83049c76d2c8cce458965c61b55515a12725eee4559c2cbf08a90aa52cc1", - "tx_index": 13, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729875767, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "90.00000000" - }, - { - "block_index": 124, - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "unescrowed fairmint", - "event": "fb7a4f0b452e71991d1e44f65ec7ff0767bd9988506e968fc5b0a67d4aa921a3", - "tx_index": 12, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729875763, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "block_index": 124, - "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "unescrowed fairmint", - "event": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", - "tx_index": 11, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729875763, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "block_index": 124, - "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", - "asset": "FAIRMINTA", - "quantity": 500000000, - "calling_function": "escrowed fairmint", - "event": "fb7a4f0b452e71991d1e44f65ec7ff0767bd9988506e968fc5b0a67d4aa921a3", - "tx_index": 12, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729875763, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - } - ], - "next_cursor": 12, - "result_count": 6 - }, - "/v2/assets//debits": { - "result": [ - { - "block_index": 201, - "address": null, - "asset": "XCP", - "quantity": 1500000000, - "action": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "utxo": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "utxo_address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "confirmed": true, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - { - "block_index": 198, - "address": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "asset": "XCP", - "quantity": 50000000, - "action": "issuance fee", - "event": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", - "tx_index": 64, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729876053, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.50000000" - }, - { - "block_index": 195, - "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "asset": "XCP", - "quantity": 1, - "action": "destroy", - "event": "d41b13b0b1a25e8e77dbd3c8caa5b91aff948a81618a598872934c4809d49e7e", - "tx_index": 61, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729876041, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000001" - }, - { - "block_index": 194, - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "asset": "XCP", - "quantity": 74499387833, - "action": "sweep", - "event": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", - "tx_index": 60, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729876037, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "744.99388000" - }, - { - "block_index": 194, - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "asset": "XCP", - "quantity": 600000, - "action": "sweep fee", - "event": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", - "tx_index": 60, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729876037, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00600000" - } - ], - "next_cursor": 49, - "result_count": 40 - }, - "/v2/assets//dividends": { - "result": [ - { - "tx_index": 41, - "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", - "block_index": 154, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "MYASSETA", - "dividend_asset": "XCP", - "quantity_per_unit": 100000000, - "fee_paid": 40000, - "status": "valid", - "confirmed": true, - "block_time": 1729875884, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00040000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/assets//issuances": { - "result": [ - { - "tx_index": 13, - "tx_hash": "247a83049c76d2c8cce458965c61b55515a12725eee4559c2cbf08a90aa52cc1", - "msg_index": 0, - "block_index": 125, - "asset": "FAIRMINTA", - "quantity": 9000000000, - "divisible": true, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "fairmint", - "confirmed": true, - "block_time": 1729875767, - "quantity_normalized": "90.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 12, - "tx_hash": "fb7a4f0b452e71991d1e44f65ec7ff0767bd9988506e968fc5b0a67d4aa921a3", - "msg_index": 0, - "block_index": 124, - "asset": "FAIRMINTA", - "quantity": 500000000, - "divisible": true, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "fairmint", - "confirmed": true, - "block_time": 1729875763, - "quantity_normalized": "5.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 11, - "tx_hash": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", - "msg_index": 0, - "block_index": 123, - "asset": "FAIRMINTA", - "quantity": 500000000, - "divisible": true, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "fairmint", - "confirmed": true, - "block_time": 1729875760, - "quantity_normalized": "5.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 10, - "tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", - "msg_index": 0, - "block_index": 122, - "asset": "FAIRMINTA", - "quantity": 0, - "divisible": true, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": "", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", - "confirmed": true, - "block_time": 1729875755, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.50000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//sends": { - "result": [ - { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "asset": "XCP", - "quantity": 1500000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 56, - "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "block_index": 190, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "XCP", - "quantity": 10, - "status": "valid", - "msg_index": 2, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729876020, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 55, - "tx_hash": "dc24a98f4f65b086869c6350383240e014524d822aab2e2630ccaa222668e74a", - "block_index": 189, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "asset": "XCP", - "quantity": 10000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729876016, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 44, - "tx_hash": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62", - "block_index": 157, - "source": "1dad0d414cb40190ea21c1e15f919acdeca8f7105f12e38b39394ac4f00c98a1:0", - "destination": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "asset": "XCP", - "quantity": 1500000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729875894, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 43, - "tx_hash": "1dad0d414cb40190ea21c1e15f919acdeca8f7105f12e38b39394ac4f00c98a1", - "block_index": 156, - "source": "26c019805138e039c0857066de3fd5ddd731a7b626179059880fb0b5dc36471a:0", - "destination": "1dad0d414cb40190ea21c1e15f919acdeca8f7105f12e38b39394ac4f00c98a1:0", - "asset": "XCP", - "quantity": 1500000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729875891, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/assets//dispensers": { - "result": [ - { - "tx_index": 26, - "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729875837, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 29, - "tx_hash": "12f60c8df8cefdbdd94f3b60fb85a2a2b58f8970e8f67131e13d2a118ee446db", - "block_index": 142, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 10000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "dispense_count": 0, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729875840, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00010000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 30, - "tx_hash": "8a0a52171c4efc276df87ce95bc204e13120c49d1702588067a90c1931a5de67", - "block_index": 150, - "source": "mymSDaJc8UDD3vXT5QFhccicJMeXuYM2hK", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": "c91d1d242120d71e6248eab1da2513b751b655d271348c2ac27c5ac31c23beb3", - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 0, - "last_status_tx_source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "close_block_index": 150, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729875869, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00000010", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 33, - "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "last_status_tx_hash": null, - "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//dispensers/
": { - "result": { - "tx_index": 26, - "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729875837, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - } - }, - "/v2/assets//holders": { - "result": [ - { - "asset": "FAIRMINTA", - "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", - "quantity": 0, - "escrow": null, - "cursor_id": "balances_12", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000000" - }, - { - "asset": "FAIRMINTA", - "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "quantity": 500000000, - "escrow": null, - "cursor_id": "balances_13", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000" - }, - { - "asset": "FAIRMINTA", - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "quantity": 0, - "escrow": null, - "cursor_id": "balances_14", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000000" - }, - { - "asset": "FAIRMINTA", - "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "quantity": 9500000000, - "escrow": null, - "cursor_id": "balances_15", - "holding_type": "balances", - "status": null, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "95.00000000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//dispenses": { - "result": [ - { - "tx_index": 68, - "dispense_index": 0, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "asset": "XCP", - "dispense_quantity": 66, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "btc_amount": 1000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "last_status_tx_hash": null, - "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - { - "tx_index": 34, - "dispense_index": 0, - "tx_hash": "bb626c5990cee4bb6d7c0a1ecce94ac6307355b3e3d63b9eb85d9d925fc40928", - "block_index": 147, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "destination": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "asset": "XCP", - "dispense_quantity": 666, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "btc_amount": 10000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "last_status_tx_hash": null, - "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1729875858, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000666", - "btc_amount_normalized": "0.00010000" - }, - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729875837, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", - "block_index": 140, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729875832, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 4 - }, - "/v2/assets//subassets": { - "result": [ - { - "asset": "A95428959745315388", - "asset_id": "95428959745315388", - "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 0, - "description": "Test Locking Description", - "first_issuance_block_index": 159, - "last_issuance_block_index": 159, - "confirmed": true, - "first_issuance_block_time": 1729875901, - "last_issuance_block_time": 1729875901, - "supply_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/assets//fairminters": { - "result": [ - { - "tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", - "tx_index": 10, - "block_index": 125, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "FAIRMINTA", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 124, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 10000000000, - "commission": 0, - "paid_quantity": 10000000000, - "confirmed": true, - "block_time": 1729875767, - "price_normalized": "0.00000001", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "100.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "100.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/assets//fairmints": { - "result": [ - { - "tx_hash": "247a83049c76d2c8cce458965c61b55515a12725eee4559c2cbf08a90aa52cc1", - "tx_index": 13, - "block_index": 125, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", - "asset": "FAIRMINTA", - "earn_quantity": 9000000000, - "paid_quantity": 9000000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729875767, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "90.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "90.00000000" - }, - { - "tx_hash": "fb7a4f0b452e71991d1e44f65ec7ff0767bd9988506e968fc5b0a67d4aa921a3", - "tx_index": 12, - "block_index": 124, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729875763, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - }, - { - "tx_hash": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729875760, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/assets//fairmints/
": { - "result": [ - { - "tx_hash": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", - "tx_index": 11, - "block_index": 123, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", - "asset": "FAIRMINTA", - "earn_quantity": 500000000, - "paid_quantity": 500000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729875760, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "5.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/orders": { - "result": [ - { - "tx_index": 49, - "tx_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", - "block_index": 184, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 183, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "confirmed": true, - "block_time": 1729875934, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 52, - "tx_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "block_index": 187, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "give_asset": "BTC", - "give_quantity": 2000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 2000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 207, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "filled", - "confirmed": true, - "block_time": 1729876008, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00002000", - "get_quantity_normalized": "0.00002000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 51, - "tx_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "block_index": 188, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, - "expiration": 21, - "expire_index": 206, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1729876012, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00010000", - "get_quantity_normalized": "0.00010000", - "get_remaining_normalized": "0.00005000", - "give_remaining_normalized": "0.00005000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 54, - "tx_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "block_index": 188, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "give_asset": "BTC", - "give_quantity": 3000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 3000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 209, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1729876012, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00003000", - "get_quantity_normalized": "0.00003000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 57, - "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "block_index": 192, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 212, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "cancelled", - "confirmed": true, - "block_time": 1729876028, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - } - ], - "next_cursor": 59, - "result_count": 7 - }, - "/v2/orders/": { - "result": { - "tx_index": 59, - "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", - "block_index": 193, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 214, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "block_time": 1729876032, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - } - }, - "/v2/orders//matches": { - "result": [ - { - "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "tx0_index": 51, - "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "tx1_index": 54, - "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "tx1_address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "forward_asset": "XCP", - "forward_quantity": 3000, - "backward_asset": "BTC", - "backward_quantity": 3000, - "tx0_block_index": 186, - "tx1_block_index": 188, - "block_index": 188, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 208, - "fee_paid": 0, - "status": "pending", - "confirmed": true, - "block_time": 1729876012, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "tx0_index": 51, - "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "tx1_index": 52, - "tx1_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "forward_asset": "XCP", - "forward_quantity": 2000, - "backward_asset": "BTC", - "backward_quantity": 2000, - "tx0_block_index": 185, - "tx1_block_index": 186, - "block_index": 187, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 206, - "fee_paid": 0, - "status": "completed", - "confirmed": true, - "block_time": 1729876008, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00002000", - "backward_quantity_normalized": "0.00002000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/orders//btcpays": { - "result": [ - { - "tx_index": 53, - "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", - "block_index": 187, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "btc_amount": 2000, - "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "status": "valid", - "confirmed": true, - "block_time": 1729876008, - "btc_amount_normalized": "0.00002000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/orders//": { - "result": [ - { - "tx_index": 52, - "tx_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "block_index": 187, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "give_asset": "BTC", - "give_quantity": 2000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 2000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 207, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "filled", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "SELL", - "market_price": "1.00000000", - "block_time": 1729876008, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00002000", - "get_quantity_normalized": "0.00002000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 54, - "tx_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "block_index": 188, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "give_asset": "BTC", - "give_quantity": 3000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 3000, - "get_remaining": 0, - "expiration": 21, - "expire_index": 209, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "SELL", - "market_price": "1.00000000", - "block_time": 1729876012, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00003000", - "get_quantity_normalized": "0.00003000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 49, - "tx_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", - "block_index": 184, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 183, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "expired", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1729875934, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 51, - "tx_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "block_index": 188, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, - "expiration": 21, - "expire_index": 206, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "open", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1729876012, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00010000", - "get_quantity_normalized": "0.00010000", - "get_remaining_normalized": "0.00005000", - "give_remaining_normalized": "0.00005000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - { - "tx_index": 57, - "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "block_index": 192, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "expiration": 21, - "expire_index": 212, - "fee_required": 0, - "fee_required_remaining": 0, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "status": "cancelled", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1729876028, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - } - ], - "next_cursor": 59, - "result_count": 7 - }, - "/v2/orders///matches": { - "result": [ - { - "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "tx0_index": 51, - "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "tx1_index": 54, - "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "tx1_address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "forward_asset": "XCP", - "forward_quantity": 3000, - "backward_asset": "BTC", - "backward_quantity": 3000, - "tx0_block_index": 186, - "tx1_block_index": 188, - "block_index": 188, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 208, - "fee_paid": 0, - "status": "pending", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1729876012, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "tx0_index": 51, - "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "tx1_index": 52, - "tx1_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "forward_asset": "XCP", - "forward_quantity": 2000, - "backward_asset": "BTC", - "backward_quantity": 2000, - "tx0_block_index": 185, - "tx1_block_index": 186, - "block_index": 187, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 206, - "fee_paid": 0, - "status": "completed", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1729876008, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00002000", - "backward_quantity_normalized": "0.00002000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b_a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", - "tx0_index": 49, - "tx0_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "tx1_index": 50, - "tx1_hash": "a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", - "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 162, - "tx1_block_index": 163, - "block_index": 184, - "tx0_expiration": 21, - "tx1_expiration": 20, - "match_expire_index": 183, - "fee_paid": 0, - "status": "expired", - "confirmed": true, - "market_pair": "BTC/XCP", - "market_dir": "BUY", - "market_price": "1.00000000", - "block_time": 1729875934, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/order_matches": { - "result": [ - { - "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "tx0_index": 51, - "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "tx1_index": 54, - "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "tx1_address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "forward_asset": "XCP", - "forward_quantity": 3000, - "backward_asset": "BTC", - "backward_quantity": 3000, - "tx0_block_index": 186, - "tx1_block_index": 188, - "block_index": 188, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 208, - "fee_paid": 0, - "status": "pending", - "confirmed": true, - "block_time": 1729876012, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "tx0_index": 51, - "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "tx1_index": 52, - "tx1_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "forward_asset": "XCP", - "forward_quantity": 2000, - "backward_asset": "BTC", - "backward_quantity": 2000, - "tx0_block_index": 185, - "tx1_block_index": 186, - "block_index": 187, - "tx0_expiration": 21, - "tx1_expiration": 21, - "match_expire_index": 206, - "fee_paid": 0, - "status": "completed", - "confirmed": true, - "block_time": 1729876008, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00002000", - "backward_quantity_normalized": "0.00002000", - "fee_paid_normalized": "0.00000000" - }, - { - "id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b_a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", - "tx0_index": 49, - "tx0_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "tx1_index": 50, - "tx1_hash": "a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", - "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "forward_asset": "XCP", - "forward_quantity": 1000, - "backward_asset": "BTC", - "backward_quantity": 1000, - "tx0_block_index": 162, - "tx1_block_index": 163, - "block_index": 184, - "tx0_expiration": 21, - "tx1_expiration": 20, - "match_expire_index": 183, - "fee_paid": 0, - "status": "expired", - "confirmed": true, - "block_time": 1729875934, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00001000", - "backward_quantity_normalized": "0.00001000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 3 - }, - "/v2/bets": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/bets/": { - "error": "Not found" - }, - "/v2/bets//matches": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/bets//resolutions": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/burns": { - "result": [ - { - "tx_index": 9, - "tx_hash": "bffb2be5bdaa6276cca4057394e8a543c6324ecbc27920251c3eb7fd5e3ddc60", - "block_index": 121, - "source": "bcrt1qwv0kz40a9nmvlc7dgqqdmwky9e6gxn9ja9sksv", - "burned": 50000000, - "earned": 74999996667, - "status": "valid", - "confirmed": true, - "block_time": 1729875752, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - { - "tx_index": 8, - "tx_hash": "1175633d80e0c71fc0a539ed361665eb4eb52ab3acbfd25433e460029e7be56f", - "block_index": 120, - "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "burned": 50000000, - "earned": 74999996833, - "status": "valid", - "confirmed": true, - "block_time": 1729875747, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - { - "tx_index": 7, - "tx_hash": "a832284ce8b0d7a599d29aa9371faa4f6b7b73dc93a91b3c852cddfda619d104", - "block_index": 119, - "source": "bcrt1qu3xm5xg3tj9sv3ns4qdxgmk0n06h4w48udmzju", - "burned": 50000000, - "earned": 74999997000, - "status": "valid", - "confirmed": true, - "block_time": 1729875744, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - { - "tx_index": 6, - "tx_hash": "4f1c28ff39c8e163c217e59ec95dcb92c47282cf100fe2b69444e221bee48965", - "block_index": 118, - "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "burned": 50000000, - "earned": 74999997167, - "status": "valid", - "confirmed": true, - "block_time": 1729875741, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - { - "tx_index": 5, - "tx_hash": "b863e0316b321904eb30a9f46b5013d3b7ddbc0243ab9641b9ab3ee262c15708", - "block_index": 117, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "burned": 50000000, - "earned": 74999997333, - "status": "valid", - "confirmed": true, - "block_time": 1729875737, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - } - ], - "next_cursor": 4, - "result_count": 10 - }, - "/v2/dispensers": { - "result": [ - { - "tx_index": 26, - "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729875837, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 29, - "tx_hash": "12f60c8df8cefdbdd94f3b60fb85a2a2b58f8970e8f67131e13d2a118ee446db", - "block_index": 142, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 10000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "dispense_count": 0, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729875840, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00010000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 30, - "tx_hash": "8a0a52171c4efc276df87ce95bc204e13120c49d1702588067a90c1931a5de67", - "block_index": 150, - "source": "mymSDaJc8UDD3vXT5QFhccicJMeXuYM2hK", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": "c91d1d242120d71e6248eab1da2513b751b655d271348c2ac27c5ac31c23beb3", - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 0, - "last_status_tx_source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "close_block_index": 150, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729875869, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00000010", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 62, - "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", - "block_index": 197, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "TESTLOCKDESC", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729876048, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - { - "tx_index": 33, - "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "last_status_tx_hash": null, - "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/dispensers/": { - "result": { - "tx_index": 26, - "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "XCP", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "confirmed": true, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "block_time": 1729875837, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - } - }, - "/v2/dispensers//dispenses": { - "result": [ - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729875837, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", - "block_index": 140, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729875832, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/dividends": { - "result": [ - { - "tx_index": 41, - "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", - "block_index": 154, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "MYASSETA", - "dividend_asset": "XCP", - "quantity_per_unit": 100000000, - "fee_paid": 40000, - "status": "valid", - "confirmed": true, - "block_time": 1729875884, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00040000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/dividends/": { - "result": { - "tx_index": 41, - "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", - "block_index": 154, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "MYASSETA", - "dividend_asset": "XCP", - "quantity_per_unit": 100000000, - "fee_paid": 40000, - "status": "valid", - "confirmed": true, - "block_time": 1729875884, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00040000" - } - }, - "/v2/dividends//credits": { - "result": [ - { - "block_index": 154, - "address": null, - "asset": "XCP", - "quantity": 1500000000, - "calling_function": "dividend", - "event": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", - "tx_index": 41, - "utxo": "26c019805138e039c0857066de3fd5ddd731a7b626179059880fb0b5dc36471a:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "confirmed": true, - "block_time": 1729875884, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - { - "block_index": 154, - "address": "bcrt1qlnehx4acfdgpf3cz4hqtgdgf5wejvwhpr9x5kq", - "asset": "XCP", - "quantity": 500000000, - "calling_function": "dividend", - "event": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", - "tx_index": 41, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729875884, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "5.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/events": { - "result": [ - { - "event_index": 603, - "event": "BLOCK_PARSED", - "params": { - "block_index": 201, - "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", - "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", - "transaction_count": 1, - "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", - "block_time": 1729876074 - }, - "tx_hash": null, - "block_index": 201, - "block_time": 1729876074 - }, - { - "event_index": 602, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68 - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - }, - { - "event_index": 601, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 201, - "btc_amount": 1000, - "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - }, - { - "event_index": 600, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "status": 0, - "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - }, - { - "event_index": 599, - "event": "CREDIT", - "params": { - "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "asset": "XCP", - "block_index": 201, - "calling_function": "dispense", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "quantity": 66, - "tx_index": 68, - "utxo": null, - "utxo_address": null, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - } - ], - "next_cursor": 598, - "result_count": 604 - }, - "/v2/events/": { - "result": { - "event_index": 603, - "event": "BLOCK_PARSED", - "params": { - "block_index": 201, - "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", - "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", - "transaction_count": 1, - "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", - "block_time": 1729876074 - }, - "tx_hash": null, - "block_index": 201, - "block_time": 1729876074 - } - }, - "/v2/events/counts": { - "result": [ - { - "event": "UTXO_MOVE", - "event_count": 11 - }, - { - "event": "TRANSACTION_PARSED", - "event_count": 54 - }, - { - "event": "SWEEP", - "event_count": 1 - }, - { - "event": "REFILL_DISPENSER", - "event_count": 1 - }, - { - "event": "ORDER_UPDATE", - "event_count": 11 - } - ], - "next_cursor": "ORDER_MATCH_UPDATE", - "result_count": 36 - }, - "/v2/events/": { - "result": [ - { - "event_index": 599, - "event": "CREDIT", - "params": { - "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "asset": "XCP", - "block_index": 201, - "calling_function": "dispense", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "quantity": 66, - "tx_index": 68, - "utxo": null, - "utxo_address": null, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - }, - { - "event_index": 597, - "event": "CREDIT", - "params": { - "address": null, - "asset": "XCP", - "block_index": 201, - "calling_function": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "quantity": 1500000000, - "tx_index": 68, - "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - }, - { - "event_index": 594, - "event": "CREDIT", - "params": { - "address": null, - "asset": "MYASSETA", - "block_index": 201, - "calling_function": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "quantity": 1500000000, - "tx_index": 68, - "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "block_time": 1729876074, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - }, - { - "event_index": 587, - "event": "CREDIT", - "params": { - "address": null, - "asset": "UTXOASSET", - "block_index": 200, - "calling_function": "utxo move", - "event": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98", - "quantity": 1000000000, - "tx_index": 67, - "utxo": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98:0", - "utxo_address": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "block_time": 1729876064, - "asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000" - }, - "tx_hash": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98", - "block_index": 200, - "block_time": 1729876064 - }, - { - "event_index": 584, - "event": "CREDIT", - "params": { - "address": null, - "asset": "UTXOASSET", - "block_index": 200, - "calling_function": "utxo move", - "event": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3", - "quantity": 1000000000, - "tx_index": 66, - "utxo": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3:0", - "utxo_address": "bcrt1qu3xm5xg3tj9sv3ns4qdxgmk0n06h4w48udmzju", - "block_time": 1729876064, - "asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000" - }, - "tx_hash": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3", - "block_index": 200, - "block_time": 1729876064 - } - ], - "next_cursor": 575, - "result_count": 76 - }, - "/v2/events//count": { - "result": { - "event": "CREDIT", - "event_count": 76 - } - }, - "/v2/dispenses": { - "result": [ - { - "tx_index": 68, - "dispense_index": 0, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "asset": "XCP", - "dispense_quantity": 66, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "btc_amount": 1000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "last_status_tx_hash": null, - "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - { - "tx_index": 63, - "dispense_index": 0, - "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", - "block_index": 197, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "TESTLOCKDESC", - "dispense_quantity": 4000, - "dispenser_tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 62, - "block_index": 197, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 6000, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 1, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00006000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729876048, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 34, - "dispense_index": 0, - "tx_hash": "bb626c5990cee4bb6d7c0a1ecce94ac6307355b3e3d63b9eb85d9d925fc40928", - "block_index": 147, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "destination": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "asset": "XCP", - "dispense_quantity": 666, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "btc_amount": 10000, - "confirmed": true, - "dispenser": { - "tx_index": 33, - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 0, - "give_remaining": 9268, - "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "last_status_tx_hash": null, - "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": 0.01, - "oracle_price": 66600.0, - "fiat_unit": "USD", - "oracle_price_last_updated": 138, - "satoshi_price": 16, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00009268", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000016" - }, - "block_time": 1729875858, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000666", - "btc_amount_normalized": "0.00010000" - }, - { - "tx_index": 28, - "dispense_index": 0, - "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "XCP", - "dispense_quantity": 4000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", - "btc_amount": 4000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729875837, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 27, - "dispense_index": 0, - "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", - "block_index": 140, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "XCP", - "dispense_quantity": 6000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", - "btc_amount": 6000, - "confirmed": true, - "dispenser": { - "tx_index": 26, - "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_quantity": 1, - "escrow_quantity": 10000, - "satoshirate": 1, - "status": 10, - "give_remaining": 0, - "oracle_address": null, - "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "dispense_count": 2, - "last_status_tx_source": null, - "close_block_index": null, - "fiat_price": null, - "oracle_price": null, - "fiat_unit": null, - "oracle_price_last_updated": null, - "satoshi_price": 1, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00000000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001", - "satoshi_price_normalized": "0.00000001" - }, - "block_time": 1729875832, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00006000", - "btc_amount_normalized": "0.00006000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/sends": { - "result": [ - { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "asset": "XCP", - "quantity": 1500000000, - "status": "valid", - "msg_index": 1, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "asset": "MYASSETA", - "quantity": 1500000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729876074, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "15.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 67, - "tx_hash": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98", - "block_index": 200, - "source": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3:0", - "destination": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98:0", - "asset": "UTXOASSET", - "quantity": 1000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729876064, - "asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 66, - "tx_hash": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3", - "block_index": 200, - "source": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320:1", - "destination": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3:0", - "asset": "UTXOASSET", - "quantity": 1000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729876064, - "asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 65, - "tx_hash": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320", - "block_index": 199, - "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "destination": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320:1", - "asset": "UTXOASSET", - "quantity": 1000000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729876056, - "asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - } - ], - "next_cursor": 14, - "result_count": 19 - }, - "/v2/issuances": { - "result": [ - { - "tx_index": 64, - "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", - "msg_index": 0, - "block_index": 198, - "asset": "UTXOASSET", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super asset", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1729876053, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" - }, - { - "tx_index": 48, - "tx_hash": "92b8cfc3dc569089881dfa46bd7aded69c484e727c25ac8c0d98ea48d182e205", - "msg_index": 0, - "block_index": 161, - "asset": "A95428956980101314", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "A subnumeric asset", - "fee_paid": 0, - "status": "valid", - "asset_longname": "A95428959745315388.SUBNUMERIC", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1729875920, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 47, - "tx_hash": "be598808b3f486e15e9e7267071c662fd87779a774a700271319f7ac59268ea9", - "msg_index": 0, - "block_index": 160, - "asset": "TESTLOCKDESC", - "quantity": 0, - "divisible": true, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 0, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": true, - "fair_minting": false, - "asset_events": "lock_description", - "confirmed": true, - "block_time": 1729875905, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 46, - "tx_hash": "d356791a0df1d37ddaf36b4b2a55eccaeda19adbaf8e099acda84fe9f8d43bb2", - "msg_index": 0, - "block_index": 159, - "asset": "A95428959745315388", - "quantity": 0, - "divisible": true, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 0, - "status": "valid", - "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1729875901, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 45, - "tx_hash": "d679c8a07c7838453357da218c63bf8e7fb7b0efdf968013a632b9f14d728268", - "msg_index": 0, - "block_index": 158, - "asset": "TESTLOCKDESC", - "quantity": 10000000000, - "divisible": true, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1729875898, - "quantity_normalized": "100.00000000", - "fee_paid_normalized": "0.50000000" - } - ], - "next_cursor": 18, - "result_count": 23 - }, - "/v2/issuances/": { - "result": { - "tx_index": 64, - "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", - "msg_index": 0, - "block_index": 198, - "asset": "UTXOASSET", - "quantity": 100000000000, - "divisible": true, - "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "My super asset", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1729876053, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" - } - }, - "/v2/sweeps": { - "result": [ - { - "tx_index": 60, - "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", - "block_index": 194, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "flags": 1, - "status": "valid", - "memo": "sweep my assets", - "fee_paid": 600000, - "confirmed": true, - "block_time": 1729876037, - "fee_paid_normalized": "0.00600000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/sweeps/": { - "result": [ - { - "tx_index": 60, - "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", - "block_index": 194, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "flags": 1, - "status": "valid", - "memo": "sweep my assets", - "fee_paid": 600000, - "confirmed": true, - "block_time": 1729876037, - "fee_paid_normalized": "0.00600000" - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/broadcasts": { - "result": [ - { - "tx_index": 25, - "tx_hash": "d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa", - "block_index": 138, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "timestamp": 4003903983, - "value": 66600.0, - "fee_fraction_int": 0, - "text": "price-USD", - "locked": false, - "status": "valid", - "confirmed": true, - "block_time": 1729875826, - "fee_fraction_int_normalized": "0.00000000" - }, - { - "tx_index": 24, - "tx_hash": "782e54445dc6f9962386534b10d6a8aaf57293a2b3496497dfb06449c9a278c5", - "block_index": 137, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "timestamp": 4003903983, - "value": 999.0, - "fee_fraction_int": 0, - "text": "Hello, world!", - "locked": false, - "status": "valid", - "confirmed": true, - "block_time": 1729875823, - "fee_fraction_int_normalized": "0.00000000" - } - ], - "next_cursor": null, - "result_count": 2 - }, - "/v2/broadcasts/": { - "result": { - "tx_index": 25, - "tx_hash": "d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa", - "block_index": 138, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "timestamp": 4003903983, - "value": 66600.0, - "fee_fraction_int": 0, - "text": "price-USD", - "locked": false, - "status": "valid", - "confirmed": true, - "block_time": 1729875826, - "fee_fraction_int_normalized": "0.00000000" - } - }, - "/v2/fairminters": { - "result": [ - { - "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", - "tx_index": 42, - "block_index": 155, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "A95428958968845068", - "asset_parent": "MYASSETA", - "asset_longname": "MYASSETA.SUBMYASSETA", - "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": null, - "commission": null, - "paid_quantity": null, - "confirmed": true, - "block_time": 1729875887, - "price_normalized": "0.00000001", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - }, - { - "tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", - "tx_index": 22, - "block_index": 135, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "FAIRMINTD", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 50, - "quantity_by_price": 60, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": 40, - "commission": 0, - "paid_quantity": 34, - "confirmed": true, - "block_time": 1729875814, - "price_normalized": "0.00000050", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000060", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - }, - { - "tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", - "tx_index": 18, - "block_index": 131, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "FAIRMINTC", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 5, - "hard_cap": 0, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "open", - "earned_quantity": 19, - "commission": 0, - "paid_quantity": 5, - "confirmed": true, - "block_time": 1729875789, - "price_normalized": "0.00000001", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "0.00000019", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000005" - }, - { - "tx_hash": "5bbb7d89d98e4d3cea2e5bcb4f6438a19666ff81c76b02e70f1508276c81fcfe", - "tx_index": 14, - "block_index": 130, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "FAIRMINTB", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 130, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 300000000, - "commission": 0, - "paid_quantity": 300000000, - "confirmed": true, - "block_time": 1729875786, - "price_normalized": "0.00000001", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "3.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "3.00000000" - }, - { - "tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", - "tx_index": 10, - "block_index": 125, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "FAIRMINTA", - "asset_parent": "", - "asset_longname": "", - "description": "", - "price": 1, - "quantity_by_price": 1, - "hard_cap": 10000000000, - "burn_payment": false, - "max_mint_per_tx": 0, - "premint_quantity": 0, - "start_block": 0, - "end_block": 0, - "minted_asset_commission_int": 0, - "soft_cap": 1000000000, - "soft_cap_deadline_block": 124, - "lock_description": false, - "lock_quantity": false, - "divisible": true, - "pre_minted": false, - "status": "closed", - "earned_quantity": 10000000000, - "commission": 0, - "paid_quantity": 10000000000, - "confirmed": true, - "block_time": 1729875767, - "price_normalized": "0.00000001", - "hard_cap_normalized": "100.00000000", - "soft_cap_normalized": "10.00000000", - "quantity_by_price_normalized": "0.00000001", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000", - "earned_quantity_normalized": "100.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "100.00000000" - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/fairmints": { - "result": [ - { - "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729875818, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - }, - { - "tx_hash": "87884ac53a4aacf74156f175cb165810d1814f1f8055d20c774db5c03037d974", - "tx_index": 21, - "block_index": 134, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", - "asset": "FAIRMINTC", - "earn_quantity": 11, - "paid_quantity": 3, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729875810, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000011", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000003" - }, - { - "tx_hash": "cac3154c795618e62f7795292f95404673f9cf0c3ec5d3b8569e7e54e56041b5", - "tx_index": 20, - "block_index": 133, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", - "asset": "FAIRMINTC", - "earn_quantity": 3, - "paid_quantity": 1, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729875796, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000003", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000001" - }, - { - "tx_hash": "9938a552fcf5b52aac1996f6ef4c65ef99ff68e50830c40666c0ae6a2a3a0ea8", - "tx_index": 19, - "block_index": 132, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", - "asset": "FAIRMINTC", - "earn_quantity": 5, - "paid_quantity": 1, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729875793, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000005", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000001" - }, - { - "tx_hash": "37e5f57c83e48468fde220893ad85c68bc067778a970ccc71ebcf96555186026", - "tx_index": 17, - "block_index": 129, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "fairminter_tx_hash": "5bbb7d89d98e4d3cea2e5bcb4f6438a19666ff81c76b02e70f1508276c81fcfe", - "asset": "FAIRMINTB", - "earn_quantity": 100000000, - "paid_quantity": 100000000, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729875782, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "1.00000000", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "1.00000000" - } - ], - "next_cursor": 5, - "result_count": 10 - }, - "/v2/fairmints/": { - "result": { - "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", - "tx_index": 23, - "block_index": 136, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", - "asset": "FAIRMINTD", - "earn_quantity": 40, - "paid_quantity": 34, - "commission": 0, - "status": "valid", - "confirmed": true, - "block_time": 1729875818, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - } - }, - "/v2/bitcoin/addresses/utxos": { - "result": [ - { - "vout": 0, - "height": 200, - "value": 5460, - "confirmations": 2, - "amount": 5.46e-05, - "txid": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98", - "address": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8" - }, - { - "vout": 1, - "height": 200, - "value": 4949934500, - "confirmations": 2, - "amount": 49.499345, - "txid": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3", - "address": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8" - }, - { - "vout": 2, - "height": 157, - "value": 100000, - "confirmations": 45, - "amount": 0.001, - "txid": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62", - "address": "bcrt1qu3xm5xg3tj9sv3ns4qdxgmk0n06h4w48udmzju" - } - ], - "next_cursor": null, - "result_count": null - }, - "/v2/bitcoin/addresses/
/transactions": { - "result": [ - { - "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14" - }, - { - "tx_hash": "d04cbc4143bd475740dfb3d02bfdaaa23e40fc357c9e9475d29ecc97b6a5851a" - }, - { - "tx_hash": "dc24a98f4f65b086869c6350383240e014524d822aab2e2630ccaa222668e74a" - }, - { - "tx_hash": "4441e31fc17357751ecc85a725105ff847a383cda23c8d9519c93ab66c150276" - }, - { - "tx_hash": "03cae60632c738d12c7ac2243ef952bbe11e47c70391ef56c5a8012cf1c8ca86" - }, - { - "tx_hash": "2459771d0358a9f4e4944129a25f7bd6d7cb7779fcdef57cff34ff7a6d6e7fa0" - }, - { - "tx_hash": "fb7a4f0b452e71991d1e44f65ec7ff0767bd9988506e968fc5b0a67d4aa921a3" - }, - { - "tx_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf" - } - ], - "next_cursor": null, - "result_count": null - }, - "/v2/bitcoin/addresses/
/transactions/oldest": { - "result": { - "block_index": 9, - "tx_hash": "837ad3733d118b7dbd9efcc3cb8e2d4689b54ab79ef5b521696406c4020a5752" - } - }, - "/v2/bitcoin/addresses/
/utxos": { - "result": [ - { - "vout": 0, - "height": 200, - "value": 5460, - "confirmations": 2, - "amount": 5.46e-05, - "txid": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98" - }, - { - "vout": 1, - "height": 200, - "value": 4949934500, - "confirmations": 2, - "amount": 49.499345, - "txid": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3" - } - ], - "next_cursor": null, - "result_count": null - }, - "/v2/bitcoin/addresses/
/pubkey": { - "result": "0211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f515" - }, - "/v2/bitcoin/transactions/": { - "result": "0200000000010162dd492c370b0b3db90c80467cd473b13a3537582e455584cb23148f21f272580100000000ffffffff03e8030000000000001600149f22482d5ab564881e7bf35d1fe53187f23d85b700000000000000000c6a0a96667af1a04c6c644af8dced0827010000001600147456bd897a33076ce4667b017973899a15be77f60247304402205e33ab76c1c59b0f64afdae48c481b7782b32af7f3344bee338d76268a780b70022049e84e2831027ef76f8fba8f9a2799169ee928de4e38db4372a56702b9a83ab0012102d7f4ece0006152226d7ed234de9a4ead39071a2074bf0931525a3471a13b1d6d00000000" - }, - "/v2/bitcoin/estimatesmartfee": { - "result": 61530 - }, - "/v2/bitcoin/getmempoolinfo": { - "result": { - "loaded": true, - "size": 1, - "bytes": 167, - "usage": 1232, - "total_fee": 0.0001, - "maxmempool": 300000000, - "mempoolminfee": 0.0, - "minrelaytxfee": 0.0, - "incrementalrelayfee": 1e-05, - "unbroadcastcount": 1, - "fullrbf": false - } - }, - "/v2/mempool/events": { - "result": [ - { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "tx_index": 69 - }, - "timestamp": 1729876077.4463573 - }, - { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "event": "ENHANCED_SEND", - "params": { - "asset": "XCP", - "block_index": 9999999, - "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "memo": null, - "quantity": 10000, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "status": "valid", - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "tx_index": 69, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1729876077.4463573 - }, - { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "event": "CREDIT", - "params": { - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "asset": "XCP", - "block_index": 201, - "calling_function": "send", - "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "quantity": 10000, - "tx_index": 69, - "utxo": null, - "utxo_address": null, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1729876077.4463573 - }, - { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "event": "DEBIT", - "params": { - "action": "send", - "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "asset": "XCP", - "block_index": 201, - "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "quantity": 10000, - "tx_index": 69, - "utxo": null, - "utxo_address": null, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1729876077.4463573 - }, - { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "mempool", - "block_index": 9999999, - "block_time": 1729876077.4463573, - "btc_amount": 0, - "data": "02000000000000000100000000000027108041bc73770b22d4ed185c6ac763c7d17e3a3272ce", - "destination": "", - "fee": 10000, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "tx_index": 69, - "utxos_info": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515:1", - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 10000, - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "memo": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - "timestamp": 1729876077.4463573 - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/mempool/events/": { - "result": [ - { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "event": "CREDIT", - "params": { - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "asset": "XCP", - "block_index": 201, - "calling_function": "send", - "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "quantity": 10000, - "tx_index": 69, - "utxo": null, - "utxo_address": null, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1729876077.4463573 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/mempool/transactions//events": { - "result": [ - { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "tx_index": 69 - }, - "timestamp": 1729876077.4463573 - }, - { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "event": "ENHANCED_SEND", - "params": { - "asset": "XCP", - "block_index": 9999999, - "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "memo": null, - "quantity": 10000, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "status": "valid", - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "tx_index": 69, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1729876077.4463573 - }, - { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "event": "CREDIT", - "params": { - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "asset": "XCP", - "block_index": 201, - "calling_function": "send", - "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "quantity": 10000, - "tx_index": 69, - "utxo": null, - "utxo_address": null, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1729876077.4463573 - }, - { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "event": "DEBIT", - "params": { - "action": "send", - "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "asset": "XCP", - "block_index": 201, - "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "quantity": 10000, - "tx_index": 69, - "utxo": null, - "utxo_address": null, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "timestamp": 1729876077.4463573 - }, - { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "mempool", - "block_index": 9999999, - "block_time": 1729876077.4463573, - "btc_amount": 0, - "data": "02000000000000000100000000000027108041bc73770b22d4ed185c6ac763c7d17e3a3272ce", - "destination": "", - "fee": 10000, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "tx_index": 69, - "utxos_info": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515:1", - "unpacked_data": { - "message_type": "enhanced_send", - "message_type_id": 2, - "message_data": { - "asset": "XCP", - "quantity": 10000, - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "memo": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - "timestamp": 1729876077.4463573 - } - ], - "next_cursor": null, - "result_count": 5 - }, - "/v2/healthz": { - "result": { - "status": "Healthy" - } - }, - "/healthz": { - "result": { - "status": "Healthy" - } - }, - "/v2/events/NEW_BLOCK": { - "result": [ - { - "event_index": 590, - "event": "NEW_BLOCK", - "params": { - "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", - "block_index": 201, - "block_time": 1729876074, - "difficulty": 545259519, - "previous_block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280" - }, - "tx_hash": null, - "block_index": 201, - "block_time": 1729876074 - } - ], - "next_cursor": 580, - "result_count": 101 - }, - "/v2/events/NEW_TRANSACTION": { - "result": [ - { - "event_index": 591, - "event": "NEW_TRANSACTION", - "params": { - "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", - "block_index": 201, - "block_time": 1729876074, - "btc_amount": 1000, - "data": "0d00", - "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "fee": 0, - "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - } - ], - "next_cursor": 582, - "result_count": 69 - }, - "/v2/events/NEW_TRANSACTION_OUTPUT": { - "result": [ - { - "event_index": 592, - "event": "NEW_TRANSACTION_OUTPUT", - "params": { - "block_index": 201, - "btc_amount": 1000, - "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "out_index": 0, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "block_time": 1729876074, - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - } - ], - "next_cursor": 558, - "result_count": 5 - }, - "/v2/events/BLOCK_PARSED": { - "result": [ - { - "event_index": 603, - "event": "BLOCK_PARSED", - "params": { - "block_index": 201, - "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", - "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", - "transaction_count": 1, - "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", - "block_time": 1729876074 - }, - "tx_hash": null, - "block_index": 201, - "block_time": 1729876074 - } - ], - "next_cursor": 589, - "result_count": 101 - }, - "/v2/events/TRANSACTION_PARSED": { - "result": [ - { - "event_index": 602, - "event": "TRANSACTION_PARSED", - "params": { - "supported": true, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68 - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - } - ], - "next_cursor": 578, - "result_count": 54 - }, - "/v2/events/DEBIT": { - "result": [ - { - "event_index": 596, - "event": "DEBIT", - "params": { - "action": "utxo move", - "address": null, - "asset": "XCP", - "block_index": 201, - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "quantity": 1500000000, - "tx_index": 68, - "utxo": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "utxo_address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - } - ], - "next_cursor": 593, - "result_count": 61 - }, - "/v2/events/CREDIT": { - "result": [ - { - "event_index": 599, - "event": "CREDIT", - "params": { - "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "asset": "XCP", - "block_index": 201, - "calling_function": "dispense", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "quantity": 66, - "tx_index": 68, - "utxo": null, - "utxo_address": null, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000066" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - } - ], - "next_cursor": 597, - "result_count": 76 - }, - "/v2/events/ENHANCED_SEND": { - "result": [ - { - "event_index": 498, - "event": "ENHANCED_SEND", - "params": { - "asset": "XCP", - "block_index": 189, - "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "memo": null, - "quantity": 10000, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "status": "valid", - "tx_hash": "dc24a98f4f65b086869c6350383240e014524d822aab2e2630ccaa222668e74a", - "tx_index": 55, - "block_time": 1729876016, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00010000" - }, - "tx_hash": "dc24a98f4f65b086869c6350383240e014524d822aab2e2630ccaa222668e74a", - "block_index": 189, - "block_time": 1729876016 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/MPMA_SEND": { - "result": [ - { - "event_index": 510, - "event": "MPMA_SEND", - "params": { - "asset": "XCP", - "block_index": 190, - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "memo": null, - "msg_index": 2, - "quantity": 10, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "status": "valid", - "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "tx_index": 56, - "block_time": 1729876020, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - }, - "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "block_index": 190, - "block_time": 1729876020 - } - ], - "next_cursor": 509, - "result_count": 3 - }, - "/v2/events/SEND": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/events/ASSET_TRANSFER": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/events/SWEEP": { - "result": [ - { - "event_index": 541, - "event": "SWEEP", - "params": { - "block_index": 194, - "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "fee_paid": 600000, - "flags": 1, - "memo": "sweep my assets", - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "status": "valid", - "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", - "tx_index": 60, - "block_time": 1729876037, - "fee_paid_normalized": "0.00600000" - }, - "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", - "block_index": 194, - "block_time": 1729876037 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/ASSET_DIVIDEND": { - "result": [ - { - "event_index": 337, - "event": "ASSET_DIVIDEND", - "params": { - "asset": "MYASSETA", - "block_index": 154, - "dividend_asset": "XCP", - "fee_paid": 40000, - "quantity_per_unit": 100000000, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "status": "valid", - "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", - "tx_index": 41, - "block_time": 1729875884, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00040000" - }, - "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", - "block_index": 154, - "block_time": 1729875884 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/RESET_ISSUANCE": { - "result": [], - "next_cursor": null, - "result_count": 0 - }, - "/v2/events/ASSET_CREATION": { - "result": [ - { - "event_index": 567, - "event": "ASSET_CREATION", - "params": { - "asset_id": "4336417415635", - "asset_longname": null, - "asset_name": "UTXOASSET", - "block_index": 198, - "block_time": 1729876053 - }, - "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", - "block_index": 198, - "block_time": 1729876053 - } - ], - "next_cursor": 394, - "result_count": 11 - }, - "/v2/events/ASSET_ISSUANCE": { - "result": [ - { - "event_index": 568, - "event": "ASSET_ISSUANCE", - "params": { - "asset": "UTXOASSET", - "asset_events": "creation", - "asset_longname": null, - "block_index": 198, - "call_date": 0, - "call_price": 0.0, - "callable": false, - "description": "My super asset", - "description_locked": false, - "divisible": true, - "fee_paid": 50000000, - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "locked": false, - "quantity": 100000000000, - "reset": false, - "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "status": "valid", - "transfer": false, - "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", - "tx_index": 64, - "block_time": 1729876053, - "quantity_normalized": "1000.00000000", - "fee_paid_normalized": "0.50000000" - }, - "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", - "block_index": 198, - "block_time": 1729876053 - } - ], - "next_cursor": 395, - "result_count": 23 - }, - "/v2/events/ASSET_DESTRUCTION": { - "result": [ - { - "event_index": 547, - "event": "ASSET_DESTRUCTION", - "params": { - "asset": "XCP", - "block_index": 195, - "quantity": 1, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "status": "valid", - "tag": "64657374726f79", - "tx_hash": "d41b13b0b1a25e8e77dbd3c8caa5b91aff948a81618a598872934c4809d49e7e", - "tx_index": 61, - "block_time": 1729876041, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000001" - }, - "tx_hash": "d41b13b0b1a25e8e77dbd3c8caa5b91aff948a81618a598872934c4809d49e7e", - "block_index": 195, - "block_time": 1729876041 - } - ], - "next_cursor": 157, - "result_count": 2 - }, - "/v2/events/OPEN_ORDER": { - "result": [ - { - "event_index": 529, - "event": "OPEN_ORDER", - "params": { - "block_index": 193, - "expiration": 21, - "expire_index": 214, - "fee_provided": 10000, - "fee_provided_remaining": 10000, - "fee_required": 0, - "fee_required_remaining": 0, - "get_asset": "BTC", - "get_quantity": 1000, - "get_remaining": 1000, - "give_asset": "XCP", - "give_quantity": 1000, - "give_remaining": 1000, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "status": "open", - "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", - "tx_index": 59, - "block_time": 1729876032, - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "get_remaining_normalized": "0.00001000", - "give_remaining_normalized": "0.00001000", - "fee_provided_normalized": "0.00010000", - "fee_required_normalized": "0.00000000", - "fee_required_remaining_normalized": "0.00000000", - "fee_provided_remaining_normalized": "0.00010000" - }, - "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", - "block_index": 193, - "block_time": 1729876032 - } - ], - "next_cursor": 516, - "result_count": 7 - }, - "/v2/events/ORDER_MATCH": { - "result": [ - { - "event_index": 491, - "event": "ORDER_MATCH", - "params": { - "backward_asset": "BTC", - "backward_quantity": 3000, - "block_index": 188, - "fee_paid": 0, - "forward_asset": "XCP", - "forward_quantity": 3000, - "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "match_expire_index": 208, - "status": "pending", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "tx0_block_index": 186, - "tx0_expiration": 21, - "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "tx0_index": 51, - "tx1_address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "tx1_block_index": 188, - "tx1_expiration": 21, - "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "tx1_index": 54, - "block_time": 1729876012, - "forward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "backward_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "forward_quantity_normalized": "0.00003000", - "backward_quantity_normalized": "0.00003000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "block_index": 188, - "block_time": 1729876012 - } - ], - "next_cursor": 475, - "result_count": 3 - }, - "/v2/events/ORDER_UPDATE": { - "result": [ - { - "event_index": 521, - "event": "ORDER_UPDATE", - "params": { - "status": "cancelled", - "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703" - }, - "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", - "block_index": 192, - "block_time": 1729876028 - } - ], - "next_cursor": 490, - "result_count": 11 - }, - "/v2/events/ORDER_FILLED": { - "result": [ - { - "event_index": 482, - "event": "ORDER_FILLED", - "params": { - "status": "filled", - "tx_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21" - }, - "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", - "block_index": 187, - "block_time": 1729876008 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/ORDER_MATCH_UPDATE": { - "result": [ - { - "event_index": 481, - "event": "ORDER_MATCH_UPDATE", - "params": { - "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "status": "completed" - }, - "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", - "block_index": 187, - "block_time": 1729876008 - } - ], - "next_cursor": 454, - "result_count": 2 - }, - "/v2/events/BTC_PAY": { - "result": [ - { - "event_index": 483, - "event": "BTC_PAY", - "params": { - "block_index": 187, - "btc_amount": 2000, - "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "status": "valid", - "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", - "tx_index": 53, - "block_time": 1729876008, - "btc_amount_normalized": "0.00002000" - }, - "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", - "block_index": 187, - "block_time": 1729876008 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/CANCEL_ORDER": { - "result": [ - { - "event_index": 523, - "event": "CANCEL_ORDER", - "params": { - "block_index": 192, - "offer_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "status": "valid", - "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", - "tx_index": 58, - "block_time": 1729876028 - }, - "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", - "block_index": 192, - "block_time": 1729876028 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/ORDER_EXPIRATION": { - "result": [ - { - "event_index": 462, - "event": "ORDER_EXPIRATION", - "params": { - "block_index": 184, - "order_hash": "a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "block_time": 1729875934 - }, - "tx_hash": null, - "block_index": 184, - "block_time": 1729875934 - } - ], - "next_cursor": 460, - "result_count": 2 - }, - "/v2/events/ORDER_MATCH_EXPIRATION": { - "result": [ - { - "event_index": 457, - "event": "ORDER_MATCH_EXPIRATION", - "params": { - "block_index": 184, - "order_match_id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b_a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "block_time": 1729875934 - }, - "tx_hash": null, - "block_index": 184, - "block_time": 1729875934 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/OPEN_DISPENSER": { - "result": [ - { - "event_index": 553, - "event": "OPEN_DISPENSER", - "params": { - "asset": "TESTLOCKDESC", - "block_index": 196, - "dispense_count": 0, - "escrow_quantity": 10000, - "give_quantity": 1, - "give_remaining": 10000, - "oracle_address": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "satoshirate": 1, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "status": 0, - "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", - "tx_index": 62, - "block_time": 1729876044, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "give_remaining_normalized": "0.00010000", - "escrow_quantity_normalized": "0.00010000", - "satoshirate_normalized": "0.00000001" - }, - "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", - "block_index": 196, - "block_time": 1729876044 - } - ], - "next_cursor": 272, - "result_count": 5 - }, - "/v2/events/DISPENSER_UPDATE": { - "result": [ - { - "event_index": 600, - "event": "DISPENSER_UPDATE", - "params": { - "asset": "XCP", - "dispense_count": 2, - "give_remaining": 9268, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "status": 0, - "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_remaining_normalized": "0.00009268" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - } - ], - "next_cursor": 560, - "result_count": 8 - }, - "/v2/events/REFILL_DISPENSER": { - "result": [ - { - "event_index": 261, - "event": "REFILL_DISPENSER", - "params": { - "asset": "XCP", - "block_index": 144, - "destination": "mymSDaJc8UDD3vXT5QFhccicJMeXuYM2hK", - "dispense_quantity": 10, - "dispenser_tx_hash": "8a0a52171c4efc276df87ce95bc204e13120c49d1702588067a90c1931a5de67", - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "tx_hash": "f91defe0eba18322595dc1ad3aa8818da3374398fb0d92cc58e6420aabaa6956", - "tx_index": 31, - "block_time": 1729875848, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000010" - }, - "tx_hash": "f91defe0eba18322595dc1ad3aa8818da3374398fb0d92cc58e6420aabaa6956", - "block_index": 144, - "block_time": 1729875848 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/DISPENSE": { - "result": [ - { - "event_index": 601, - "event": "DISPENSE", - "params": { - "asset": "XCP", - "block_index": 201, - "btc_amount": 1000, - "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "dispense_index": 0, - "dispense_quantity": 66, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "dispense_quantity_normalized": "0.00000066", - "btc_amount_normalized": "0.00001000" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - } - ], - "next_cursor": 561, - "result_count": 5 - }, - "/v2/events/BROADCAST": { - "result": [ - { - "event_index": 218, - "event": "BROADCAST", - "params": { - "block_index": 138, - "fee_fraction_int": 0, - "locked": false, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "status": "valid", - "text": "price-USD", - "timestamp": 4003903983, - "tx_hash": "d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa", - "tx_index": 25, - "value": 66600.0, - "block_time": 1729875826, - "fee_fraction_int_normalized": "0.00000000" - }, - "tx_hash": "d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa", - "block_index": 138, - "block_time": 1729875826 - } - ], - "next_cursor": 213, - "result_count": 2 - }, - "/v2/events/NEW_FAIRMINTER": { - "result": [ - { - "event_index": 342, - "event": "NEW_FAIRMINTER", - "params": { - "asset": "A95428958968845068", - "asset_longname": "MYASSETA.SUBMYASSETA", - "asset_parent": "MYASSETA", - "block_index": 155, - "burn_payment": false, - "description": "", - "divisible": true, - "end_block": 0, - "hard_cap": 0, - "lock_description": false, - "lock_quantity": false, - "max_mint_per_tx": 0, - "minted_asset_commission_int": 0, - "pre_minted": false, - "premint_quantity": 0, - "price": 1, - "quantity_by_price": 5, - "soft_cap": 0, - "soft_cap_deadline_block": 0, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "start_block": 0, - "status": "open", - "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", - "tx_index": 42, - "block_time": 1729875887, - "price_normalized": "0.00000001", - "hard_cap_normalized": "0.00000000", - "soft_cap_normalized": "0.00000000", - "quantity_by_price_normalized": "0.00000005", - "max_mint_per_tx_normalized": "0.00000000", - "premint_quantity_normalized": "0.00000000" - }, - "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", - "block_index": 155, - "block_time": 1729875887 - } - ], - "next_cursor": 196, - "result_count": 5 - }, - "/v2/events/FAIRMINTER_UPDATE": { - "result": [ - { - "event_index": 155, - "event": "FAIRMINTER_UPDATE", - "params": { - "status": "closed", - "tx_hash": "5bbb7d89d98e4d3cea2e5bcb4f6438a19666ff81c76b02e70f1508276c81fcfe" - }, - "tx_hash": null, - "block_index": 130, - "block_time": 1729875786 - } - ], - "next_cursor": 110, - "result_count": 2 - }, - "/v2/events/NEW_FAIRMINT": { - "result": [ - { - "event_index": 207, - "event": "NEW_FAIRMINT", - "params": { - "asset": "FAIRMINTD", - "block_index": 136, - "commission": 0, - "earn_quantity": 40, - "fairminter_tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", - "paid_quantity": 34, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "status": "valid", - "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", - "tx_index": 23, - "block_time": 1729875818, - "asset_info": { - "asset_longname": "", - "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "earn_quantity_normalized": "0.00000040", - "commission_normalized": "0.00000000", - "paid_quantity_normalized": "0.00000034" - }, - "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", - "block_index": 136, - "block_time": 1729875818 - } - ], - "next_cursor": 190, - "result_count": 10 - }, - "/v2/events/ATTACH_TO_UTXO": { - "result": [ - { - "event_index": 577, - "event": "ATTACH_TO_UTXO", - "params": { - "asset": "UTXOASSET", - "block_index": 199, - "destination": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320:1", - "fee_paid": 0, - "msg_index": 0, - "quantity": 1000000000, - "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "status": "valid", - "tx_hash": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320", - "tx_index": 65, - "block_time": 1729876056, - "asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "divisible": true, - "locked": false - }, - "quantity_normalized": "10.00000000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320", - "block_index": 199, - "block_time": 1729876056 - } - ], - "next_cursor": 319, - "result_count": 3 - }, - "/v2/events/DETACH_FROM_UTXO": { - "result": [ - { - "event_index": 311, - "event": "DETACH_FROM_UTXO", - "params": { - "asset": "MYASSETA", - "block_index": 151, - "destination": "bcrt1qlnehx4acfdgpf3cz4hqtgdgf5wejvwhpr9x5kq", - "fee_paid": 0, - "msg_index": 0, - "quantity": 500000000, - "source": "03cae60632c738d12c7ac2243ef952bbe11e47c70391ef56c5a8012cf1c8ca86:0", - "status": "valid", - "tx_hash": "d9c867b10bea6f7411fc096f380763fb0a09ee8fc6ca89568b5c11ee0f15063c", - "tx_index": 38, - "block_time": 1729875873, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000", - "fee_paid_normalized": "0.00000000" - }, - "tx_hash": "d9c867b10bea6f7411fc096f380763fb0a09ee8fc6ca89568b5c11ee0f15063c", - "block_index": 151, - "block_time": 1729875873 - } - ], - "next_cursor": null, - "result_count": 1 - }, - "/v2/events/UTXO_MOVE": { - "result": [ - { - "event_index": 598, - "event": "UTXO_MOVE", - "params": { - "asset": "XCP", - "block_index": 201, - "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "msg_index": 1, - "quantity": 1500000000, - "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "status": "valid", - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "block_time": 1729876074, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "15.00000000" - }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 - } - ], - "next_cursor": 595, - "result_count": 11 - }, - "/v2/events/BURN": { - "result": [ - { - "event_index": 70, - "event": "BURN", - "params": { - "block_index": 121, - "burned": 50000000, - "earned": 74999996667, - "source": "bcrt1qwv0kz40a9nmvlc7dgqqdmwky9e6gxn9ja9sksv", - "status": "valid", - "tx_hash": "bffb2be5bdaa6276cca4057394e8a543c6324ecbc27920251c3eb7fd5e3ddc60", - "tx_index": 9, - "block_time": 1729875752, - "burned_normalized": "0.50000000", - "earned_normalized": "749.99997000" - }, - "tx_hash": "bffb2be5bdaa6276cca4057394e8a543c6324ecbc27920251c3eb7fd5e3ddc60", - "block_index": 121, - "block_time": 1729875752 - } - ], - "next_cursor": 65, - "result_count": 10 - } -} \ No newline at end of file diff --git a/counterparty-core/counterpartycore/test/regtest/regtestnode.py b/counterparty-core/counterpartycore/test/regtest/regtestnode.py index 36ac4e1d52..4e0b7d605c 100644 --- a/counterparty-core/counterpartycore/test/regtest/regtestnode.py +++ b/counterparty-core/counterpartycore/test/regtest/regtestnode.py @@ -107,7 +107,17 @@ def send_transaction( params["return_only_data"] = True if "exact_fee" not in params: params["exact_fee"] = 10000 # fixed fee - query_string = urllib.parse.urlencode(params) + + query_string = [] + for key, value in params.items(): + print(key, value) + if not isinstance(value, list): + query_string.append(urllib.parse.urlencode({key: value})) + else: + for i in range(len(value)): + query_string.append(urllib.parse.urlencode({key: value[i]})) + query_string = "&".join(query_string) + if tx_name in ["detach", "movetoutxo"]: compose_url = f"utxos/{source}/compose/{tx_name}?{query_string}" else: diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_12_send.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_12_send.py index f951ebe975..dba265a859 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_12_send.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_12_send.py @@ -1,3 +1,10 @@ +from binascii import hexlify + + +def to_hex(x): + return hexlify(x.encode()).decode() + + SCENARIO = [ { "title": "Send XCP", @@ -68,16 +75,174 @@ ], }, { - "title": "Send MPMA", + "title": "Create asset MYASSETB", + "transaction": "issuance", + "source": "$ADDRESS_1", + "params": { + "asset": "MYASSETB", + "quantity": 1000 * 10**8, + "divisible": True, + "description": "My super asset B", + }, + }, + { + "title": "Send MPMA with memo", "transaction": "mpma", "source": "$ADDRESS_1", "params": { - "assets": "XCP,MYASSETA,MYASSETA", + "assets": "XCP,MYASSETB,MYASSETB", "quantities": "10,10,10", "destinations": "$ADDRESS_2,$ADDRESS_3,$ADDRESS_4", + "memo": "the memo", }, - "set_variables": { - "SEND_2_HASH": "$TX_HASH", + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=MPMA_SEND,CREDIT,DEBIT", + "result": [ + { + "event": "MPMA_SEND", + "event_index": "$EVENT_INDEX_10", + "params": { + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "destination": "$ADDRESS_2", + "memo": "the memo", + "msg_index": 2, + "quantity": 10, + "source": "$ADDRESS_1", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "MPMA_SEND", + "event_index": "$EVENT_INDEX_9", + "params": { + "asset": "MYASSETB", + "block_index": "$BLOCK_INDEX", + "destination": "$ADDRESS_4", + "memo": "the memo", + "msg_index": 1, + "quantity": 10, + "source": "$ADDRESS_1", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "MPMA_SEND", + "event_index": "$EVENT_INDEX_8", + "params": { + "asset": "MYASSETB", + "block_index": "$BLOCK_INDEX", + "destination": "$ADDRESS_3", + "memo": "the memo", + "msg_index": 0, + "quantity": 10, + "source": "$ADDRESS_1", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_7", + "params": { + "action": "mpma send", + "address": "$ADDRESS_1", + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 10, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_6", + "params": { + "action": "mpma send", + "address": "$ADDRESS_1", + "asset": "MYASSETB", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 20, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_5", + "params": { + "address": "$ADDRESS_2", + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "calling_function": "mpma send", + "event": "$TX_HASH", + "quantity": 10, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_4", + "params": { + "address": "$ADDRESS_4", + "asset": "MYASSETB", + "block_index": "$BLOCK_INDEX", + "calling_function": "mpma send", + "event": "$TX_HASH", + "quantity": 10, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_3", + "params": { + "address": "$ADDRESS_3", + "asset": "MYASSETB", + "block_index": "$BLOCK_INDEX", + "calling_function": "mpma send", + "event": "$TX_HASH", + "quantity": 10, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + ], + }, + ], + }, + { + "title": "Send MPMA with memos for each send", + "transaction": "mpma", + "source": "$ADDRESS_1", + "params": { + "assets": "XCP,MYASSETB,MYASSETB", + "quantities": "10,10,10", + "destinations": "$ADDRESS_2,$ADDRESS_3,$ADDRESS_4", + "memos": ["memo1", "memo2", "memo3"], }, "controls": [ { @@ -90,7 +255,7 @@ "asset": "XCP", "block_index": "$BLOCK_INDEX", "destination": "$ADDRESS_2", - "memo": None, + "memo": "memo1", "msg_index": 2, "quantity": 10, "source": "$ADDRESS_1", @@ -104,10 +269,10 @@ "event": "MPMA_SEND", "event_index": "$EVENT_INDEX_9", "params": { - "asset": "MYASSETA", + "asset": "MYASSETB", "block_index": "$BLOCK_INDEX", "destination": "$ADDRESS_4", - "memo": None, + "memo": "memo3", "msg_index": 1, "quantity": 10, "source": "$ADDRESS_1", @@ -121,10 +286,10 @@ "event": "MPMA_SEND", "event_index": "$EVENT_INDEX_8", "params": { - "asset": "MYASSETA", + "asset": "MYASSETB", "block_index": "$BLOCK_INDEX", "destination": "$ADDRESS_3", - "memo": None, + "memo": "memo2", "msg_index": 0, "quantity": 10, "source": "$ADDRESS_1", @@ -156,7 +321,7 @@ "params": { "action": "mpma send", "address": "$ADDRESS_1", - "asset": "MYASSETA", + "asset": "MYASSETB", "block_index": "$BLOCK_INDEX", "event": "$TX_HASH", "quantity": 20, @@ -187,7 +352,7 @@ "event_index": "$EVENT_INDEX_4", "params": { "address": "$ADDRESS_4", - "asset": "MYASSETA", + "asset": "MYASSETB", "block_index": "$BLOCK_INDEX", "calling_function": "mpma send", "event": "$TX_HASH", @@ -203,7 +368,7 @@ "event_index": "$EVENT_INDEX_3", "params": { "address": "$ADDRESS_3", - "asset": "MYASSETA", + "asset": "MYASSETB", "block_index": "$BLOCK_INDEX", "calling_function": "mpma send", "event": "$TX_HASH", diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index 9e3190a4e7..bbc715406e 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -57,7 +57,7 @@ CURR_DIR = os.path.dirname(os.path.realpath(__file__)) BASE_DIR = os.path.join(CURR_DIR, "../../../../") -# SCENARIOS = scenario_18_utxo.SCENARIO +# SCENARIOS = scenario_12_send.SCENARIO def compare_strings(string1, string2): From 1681553ef76889ed2af84acb25b950e5413d3fa1 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 28 Oct 2024 11:25:34 +0000 Subject: [PATCH 04/23] Accept empty memos for sends; More tests --- .../counterpartycore/lib/api/compose.py | 5 +- .../lib/messages/versions/mpma.py | 2 +- .../regtest/scenarios/scenario_12_send.py | 189 +----- .../regtest/scenarios/scenario_19_mpma.py | 628 ++++++++++++++++++ .../test/regtest/testscenarios.py | 4 +- 5 files changed, 647 insertions(+), 181 deletions(-) create mode 100644 counterparty-core/counterpartycore/test/regtest/scenarios/scenario_19_mpma.py diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index f1dd2389fc..2ba3044499 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -418,8 +418,9 @@ def compose_mpma( raise exceptions.ComposeError( "The number of memos must be equal to the number of sends" ) - for i, memo in enumerate(memos): - asset_dest_quant_list[i] += (memo, memos_are_hex) + for i, send_memo in enumerate(memos): + if send_memo: + asset_dest_quant_list[i] += (send_memo, memos_are_hex) params = { "source": address, diff --git a/counterparty-core/counterpartycore/lib/messages/versions/mpma.py b/counterparty-core/counterpartycore/lib/messages/versions/mpma.py index 3ddd1da2fd..e8834ff3a4 100644 --- a/counterparty-core/counterpartycore/lib/messages/versions/mpma.py +++ b/counterparty-core/counterpartycore/lib/messages/versions/mpma.py @@ -98,7 +98,7 @@ def validate(db, source, asset_dest_quant_list, block_index): return problems -def compose(db, source: str, asset_dest_quant_list: list, memo, memo_is_hex): +def compose(db, source: str, asset_dest_quant_list: list, memo: str, memo_is_hex: bool): cursor = db.cursor() out_balances = util.accumulate([(t[0], t[2]) for t in asset_dest_quant_list]) diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_12_send.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_12_send.py index dba265a859..f951ebe975 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_12_send.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_12_send.py @@ -1,10 +1,3 @@ -from binascii import hexlify - - -def to_hex(x): - return hexlify(x.encode()).decode() - - SCENARIO = [ { "title": "Send XCP", @@ -75,174 +68,16 @@ def to_hex(x): ], }, { - "title": "Create asset MYASSETB", - "transaction": "issuance", - "source": "$ADDRESS_1", - "params": { - "asset": "MYASSETB", - "quantity": 1000 * 10**8, - "divisible": True, - "description": "My super asset B", - }, - }, - { - "title": "Send MPMA with memo", + "title": "Send MPMA", "transaction": "mpma", "source": "$ADDRESS_1", "params": { - "assets": "XCP,MYASSETB,MYASSETB", + "assets": "XCP,MYASSETA,MYASSETA", "quantities": "10,10,10", "destinations": "$ADDRESS_2,$ADDRESS_3,$ADDRESS_4", - "memo": "the memo", }, - "controls": [ - { - "url": "blocks/$BLOCK_INDEX/events?event_name=MPMA_SEND,CREDIT,DEBIT", - "result": [ - { - "event": "MPMA_SEND", - "event_index": "$EVENT_INDEX_10", - "params": { - "asset": "XCP", - "block_index": "$BLOCK_INDEX", - "destination": "$ADDRESS_2", - "memo": "the memo", - "msg_index": 2, - "quantity": 10, - "source": "$ADDRESS_1", - "status": "valid", - "tx_hash": "$TX_HASH", - "tx_index": "$TX_INDEX", - }, - "tx_hash": "$TX_HASH", - }, - { - "event": "MPMA_SEND", - "event_index": "$EVENT_INDEX_9", - "params": { - "asset": "MYASSETB", - "block_index": "$BLOCK_INDEX", - "destination": "$ADDRESS_4", - "memo": "the memo", - "msg_index": 1, - "quantity": 10, - "source": "$ADDRESS_1", - "status": "valid", - "tx_hash": "$TX_HASH", - "tx_index": "$TX_INDEX", - }, - "tx_hash": "$TX_HASH", - }, - { - "event": "MPMA_SEND", - "event_index": "$EVENT_INDEX_8", - "params": { - "asset": "MYASSETB", - "block_index": "$BLOCK_INDEX", - "destination": "$ADDRESS_3", - "memo": "the memo", - "msg_index": 0, - "quantity": 10, - "source": "$ADDRESS_1", - "status": "valid", - "tx_hash": "$TX_HASH", - "tx_index": "$TX_INDEX", - }, - "tx_hash": "$TX_HASH", - }, - { - "event": "DEBIT", - "event_index": "$EVENT_INDEX_7", - "params": { - "action": "mpma send", - "address": "$ADDRESS_1", - "asset": "XCP", - "block_index": "$BLOCK_INDEX", - "event": "$TX_HASH", - "quantity": 10, - "tx_index": "$TX_INDEX", - "utxo": None, - "utxo_address": None, - }, - "tx_hash": "$TX_HASH", - }, - { - "event": "DEBIT", - "event_index": "$EVENT_INDEX_6", - "params": { - "action": "mpma send", - "address": "$ADDRESS_1", - "asset": "MYASSETB", - "block_index": "$BLOCK_INDEX", - "event": "$TX_HASH", - "quantity": 20, - "tx_index": "$TX_INDEX", - "utxo": None, - "utxo_address": None, - }, - "tx_hash": "$TX_HASH", - }, - { - "event": "CREDIT", - "event_index": "$EVENT_INDEX_5", - "params": { - "address": "$ADDRESS_2", - "asset": "XCP", - "block_index": "$BLOCK_INDEX", - "calling_function": "mpma send", - "event": "$TX_HASH", - "quantity": 10, - "tx_index": "$TX_INDEX", - "utxo": None, - "utxo_address": None, - }, - "tx_hash": "$TX_HASH", - }, - { - "event": "CREDIT", - "event_index": "$EVENT_INDEX_4", - "params": { - "address": "$ADDRESS_4", - "asset": "MYASSETB", - "block_index": "$BLOCK_INDEX", - "calling_function": "mpma send", - "event": "$TX_HASH", - "quantity": 10, - "tx_index": "$TX_INDEX", - "utxo": None, - "utxo_address": None, - }, - "tx_hash": "$TX_HASH", - }, - { - "event": "CREDIT", - "event_index": "$EVENT_INDEX_3", - "params": { - "address": "$ADDRESS_3", - "asset": "MYASSETB", - "block_index": "$BLOCK_INDEX", - "calling_function": "mpma send", - "event": "$TX_HASH", - "quantity": 10, - "tx_index": "$TX_INDEX", - "utxo": None, - "utxo_address": None, - }, - "tx_hash": "$TX_HASH", - }, - ], - }, - ], - }, - { - "title": "Send MPMA with memos for each send", - "transaction": "mpma", - "source": "$ADDRESS_1", - "params": { - "assets": "XCP,MYASSETB,MYASSETB", - "quantities": "10,10,10", - "destinations": "$ADDRESS_2,$ADDRESS_3,$ADDRESS_4", - "memos": ["memo1", "memo2", "memo3"], + "set_variables": { + "SEND_2_HASH": "$TX_HASH", }, "controls": [ { @@ -255,7 +90,7 @@ def to_hex(x): "asset": "XCP", "block_index": "$BLOCK_INDEX", "destination": "$ADDRESS_2", - "memo": "memo1", + "memo": None, "msg_index": 2, "quantity": 10, "source": "$ADDRESS_1", @@ -269,10 +104,10 @@ def to_hex(x): "event": "MPMA_SEND", "event_index": "$EVENT_INDEX_9", "params": { - "asset": "MYASSETB", + "asset": "MYASSETA", "block_index": "$BLOCK_INDEX", "destination": "$ADDRESS_4", - "memo": "memo3", + "memo": None, "msg_index": 1, "quantity": 10, "source": "$ADDRESS_1", @@ -286,10 +121,10 @@ def to_hex(x): "event": "MPMA_SEND", "event_index": "$EVENT_INDEX_8", "params": { - "asset": "MYASSETB", + "asset": "MYASSETA", "block_index": "$BLOCK_INDEX", "destination": "$ADDRESS_3", - "memo": "memo2", + "memo": None, "msg_index": 0, "quantity": 10, "source": "$ADDRESS_1", @@ -321,7 +156,7 @@ def to_hex(x): "params": { "action": "mpma send", "address": "$ADDRESS_1", - "asset": "MYASSETB", + "asset": "MYASSETA", "block_index": "$BLOCK_INDEX", "event": "$TX_HASH", "quantity": 20, @@ -352,7 +187,7 @@ def to_hex(x): "event_index": "$EVENT_INDEX_4", "params": { "address": "$ADDRESS_4", - "asset": "MYASSETB", + "asset": "MYASSETA", "block_index": "$BLOCK_INDEX", "calling_function": "mpma send", "event": "$TX_HASH", @@ -368,7 +203,7 @@ def to_hex(x): "event_index": "$EVENT_INDEX_3", "params": { "address": "$ADDRESS_3", - "asset": "MYASSETB", + "asset": "MYASSETA", "block_index": "$BLOCK_INDEX", "calling_function": "mpma send", "event": "$TX_HASH", diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_19_mpma.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_19_mpma.py new file mode 100644 index 0000000000..11240201b0 --- /dev/null +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_19_mpma.py @@ -0,0 +1,628 @@ +from binascii import hexlify + + +def to_hex(x): + return hexlify(x.encode()).decode() + + +SCENARIO = [ + { + "title": "Create asset MPMASSET", + "transaction": "issuance", + "source": "$ADDRESS_1", + "params": { + "asset": "MPMASSET", + "quantity": 1000 * 10**8, + "divisible": True, + "description": "My super asset B", + }, + }, + { + "title": "Send XCP", + "transaction": "send", + "source": "$ADDRESS_1", + "params": { + "asset": "MPMASSET", + "quantity": 1000, + "destination": "$ADDRESS_2", + }, + }, + { + "title": "Send MPMA with memo", + "transaction": "mpma", + "source": "$ADDRESS_1", + "params": { + "assets": "XCP,MPMASSET,MPMASSET", + "quantities": "10,10,10", + "destinations": "$ADDRESS_2,$ADDRESS_3,$ADDRESS_4", + "memo": "the memo", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=MPMA_SEND,CREDIT,DEBIT", + "result": [ + { + "event": "MPMA_SEND", + "event_index": "$EVENT_INDEX_10", + "params": { + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "destination": "$ADDRESS_2", + "memo": "the memo", + "msg_index": 2, + "quantity": 10, + "source": "$ADDRESS_1", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "MPMA_SEND", + "event_index": "$EVENT_INDEX_9", + "params": { + "asset": "MPMASSET", + "block_index": "$BLOCK_INDEX", + "destination": "$ADDRESS_4", + "memo": "the memo", + "msg_index": 1, + "quantity": 10, + "source": "$ADDRESS_1", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "MPMA_SEND", + "event_index": "$EVENT_INDEX_8", + "params": { + "asset": "MPMASSET", + "block_index": "$BLOCK_INDEX", + "destination": "$ADDRESS_3", + "memo": "the memo", + "msg_index": 0, + "quantity": 10, + "source": "$ADDRESS_1", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_7", + "params": { + "action": "mpma send", + "address": "$ADDRESS_1", + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 10, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_6", + "params": { + "action": "mpma send", + "address": "$ADDRESS_1", + "asset": "MPMASSET", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 20, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_5", + "params": { + "address": "$ADDRESS_2", + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "calling_function": "mpma send", + "event": "$TX_HASH", + "quantity": 10, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_4", + "params": { + "address": "$ADDRESS_4", + "asset": "MPMASSET", + "block_index": "$BLOCK_INDEX", + "calling_function": "mpma send", + "event": "$TX_HASH", + "quantity": 10, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_3", + "params": { + "address": "$ADDRESS_3", + "asset": "MPMASSET", + "block_index": "$BLOCK_INDEX", + "calling_function": "mpma send", + "event": "$TX_HASH", + "quantity": 10, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + ], + }, + ], + }, + { + "title": "Send MPMA with memos for each send", + "transaction": "mpma", + "source": "$ADDRESS_1", + "params": { + "assets": "XCP,MPMASSET,MPMASSET", + "quantities": "10,10,10", + "destinations": "$ADDRESS_2,$ADDRESS_3,$ADDRESS_4", + "memos": ["memo1", "memo2", "memo3"], + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=MPMA_SEND,CREDIT,DEBIT", + "result": [ + { + "event": "MPMA_SEND", + "event_index": "$EVENT_INDEX_10", + "params": { + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "destination": "$ADDRESS_2", + "memo": "memo1", + "msg_index": 2, + "quantity": 10, + "source": "$ADDRESS_1", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "MPMA_SEND", + "event_index": "$EVENT_INDEX_9", + "params": { + "asset": "MPMASSET", + "block_index": "$BLOCK_INDEX", + "destination": "$ADDRESS_4", + "memo": "memo3", + "msg_index": 1, + "quantity": 10, + "source": "$ADDRESS_1", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "MPMA_SEND", + "event_index": "$EVENT_INDEX_8", + "params": { + "asset": "MPMASSET", + "block_index": "$BLOCK_INDEX", + "destination": "$ADDRESS_3", + "memo": "memo2", + "msg_index": 0, + "quantity": 10, + "source": "$ADDRESS_1", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_7", + "params": { + "action": "mpma send", + "address": "$ADDRESS_1", + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 10, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_6", + "params": { + "action": "mpma send", + "address": "$ADDRESS_1", + "asset": "MPMASSET", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 20, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_5", + "params": { + "address": "$ADDRESS_2", + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "calling_function": "mpma send", + "event": "$TX_HASH", + "quantity": 10, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_4", + "params": { + "address": "$ADDRESS_4", + "asset": "MPMASSET", + "block_index": "$BLOCK_INDEX", + "calling_function": "mpma send", + "event": "$TX_HASH", + "quantity": 10, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_3", + "params": { + "address": "$ADDRESS_3", + "asset": "MPMASSET", + "block_index": "$BLOCK_INDEX", + "calling_function": "mpma send", + "event": "$TX_HASH", + "quantity": 10, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + ], + }, + ], + }, + { + "title": "Send MPMA with hex memo", + "transaction": "mpma", + "source": "$ADDRESS_2", + "params": { + "assets": "XCP,MPMASSET,MPMASSET", + "quantities": "10,10,10", + "destinations": "$ADDRESS_1,$ADDRESS_3,$ADDRESS_4", + "memo": to_hex("the memo"), + "memo_is_hex": True, + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=MPMA_SEND,CREDIT,DEBIT", + "result": [ + { + "event": "MPMA_SEND", + "event_index": "$EVENT_INDEX_10", + "params": { + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "destination": "$ADDRESS_1", + "memo": to_hex("the memo"), # bytes hexified by the API + "msg_index": 2, + "quantity": 10, + "source": "$ADDRESS_2", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "MPMA_SEND", + "event_index": "$EVENT_INDEX_9", + "params": { + "asset": "MPMASSET", + "block_index": "$BLOCK_INDEX", + "destination": "$ADDRESS_4", + "memo": to_hex("the memo"), + "msg_index": 1, + "quantity": 10, + "source": "$ADDRESS_2", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "MPMA_SEND", + "event_index": "$EVENT_INDEX_8", + "params": { + "asset": "MPMASSET", + "block_index": "$BLOCK_INDEX", + "destination": "$ADDRESS_3", + "memo": to_hex("the memo"), + "msg_index": 0, + "quantity": 10, + "source": "$ADDRESS_2", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_7", + "params": { + "action": "mpma send", + "address": "$ADDRESS_2", + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 10, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_6", + "params": { + "action": "mpma send", + "address": "$ADDRESS_2", + "asset": "MPMASSET", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 20, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_5", + "params": { + "address": "$ADDRESS_1", + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "calling_function": "mpma send", + "event": "$TX_HASH", + "quantity": 10, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_4", + "params": { + "address": "$ADDRESS_4", + "asset": "MPMASSET", + "block_index": "$BLOCK_INDEX", + "calling_function": "mpma send", + "event": "$TX_HASH", + "quantity": 10, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_3", + "params": { + "address": "$ADDRESS_3", + "asset": "MPMASSET", + "block_index": "$BLOCK_INDEX", + "calling_function": "mpma send", + "event": "$TX_HASH", + "quantity": 10, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + ], + }, + ], + }, + { + "title": "Send MPMA with memos and memo", + "transaction": "mpma", + "source": "$ADDRESS_2", + "params": { + "assets": "XCP,MPMASSET,MPMASSET", + "quantities": "10,10,10", + "destinations": "$ADDRESS_1,$ADDRESS_3,$ADDRESS_4", + "memos": ["memo1", "", "memo3"], + "memo": "the memo", + }, + "controls": [ + { + "url": "blocks/$BLOCK_INDEX/events?event_name=MPMA_SEND,CREDIT,DEBIT", + "result": [ + { + "event": "MPMA_SEND", + "event_index": "$EVENT_INDEX_10", + "params": { + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "destination": "$ADDRESS_1", + "memo": "memo1", + "msg_index": 2, + "quantity": 10, + "source": "$ADDRESS_2", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "MPMA_SEND", + "event_index": "$EVENT_INDEX_9", + "params": { + "asset": "MPMASSET", + "block_index": "$BLOCK_INDEX", + "destination": "$ADDRESS_4", + "memo": "memo3", + "msg_index": 1, + "quantity": 10, + "source": "$ADDRESS_2", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "MPMA_SEND", + "event_index": "$EVENT_INDEX_8", + "params": { + "asset": "MPMASSET", + "block_index": "$BLOCK_INDEX", + "destination": "$ADDRESS_3", + "memo": "the memo", + "msg_index": 0, + "quantity": 10, + "source": "$ADDRESS_2", + "status": "valid", + "tx_hash": "$TX_HASH", + "tx_index": "$TX_INDEX", + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_7", + "params": { + "action": "mpma send", + "address": "$ADDRESS_2", + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 10, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "DEBIT", + "event_index": "$EVENT_INDEX_6", + "params": { + "action": "mpma send", + "address": "$ADDRESS_2", + "asset": "MPMASSET", + "block_index": "$BLOCK_INDEX", + "event": "$TX_HASH", + "quantity": 20, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_5", + "params": { + "address": "$ADDRESS_1", + "asset": "XCP", + "block_index": "$BLOCK_INDEX", + "calling_function": "mpma send", + "event": "$TX_HASH", + "quantity": 10, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_4", + "params": { + "address": "$ADDRESS_4", + "asset": "MPMASSET", + "block_index": "$BLOCK_INDEX", + "calling_function": "mpma send", + "event": "$TX_HASH", + "quantity": 10, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + { + "event": "CREDIT", + "event_index": "$EVENT_INDEX_3", + "params": { + "address": "$ADDRESS_3", + "asset": "MPMASSET", + "block_index": "$BLOCK_INDEX", + "calling_function": "mpma send", + "event": "$TX_HASH", + "quantity": 10, + "tx_index": "$TX_INDEX", + "utxo": None, + "utxo_address": None, + }, + "tx_hash": "$TX_HASH", + }, + ], + }, + ], + }, +] diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index bbc715406e..c185c1b7ad 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -28,6 +28,7 @@ scenario_16_fairminter, scenario_17_dispenser, scenario_18_utxo, + scenario_19_mpma, scenario_last_mempool, ) from termcolor import colored @@ -51,13 +52,14 @@ SCENARIOS += scenario_15_destroy.SCENARIO SCENARIOS += scenario_17_dispenser.SCENARIO SCENARIOS += scenario_18_utxo.SCENARIO +SCENARIOS += scenario_19_mpma.SCENARIO # more scenarios before this one SCENARIOS += scenario_last_mempool.SCENARIO CURR_DIR = os.path.dirname(os.path.realpath(__file__)) BASE_DIR = os.path.join(CURR_DIR, "../../../../") -# SCENARIOS = scenario_12_send.SCENARIO +# SCENARIOS = scenario_19_mpma.SCENARIO def compare_strings(string1, string2): From 90d121e2826ccb2a0102b18fc216a7a56189ca0e Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 28 Oct 2024 11:52:06 +0000 Subject: [PATCH 05/23] Fix tests; Update release notes and blueprint --- apiary.apib | 6297 ++++----- .../test/fixtures/api_v2_fixtures.json | 18 +- .../test/regtest/apidoc/apicache.json | 11211 ++++++++++++++++ .../scenarios/scenario_last_mempool.py | 14 + release-notes/release-notes-v10.6.1.md | 1 + 5 files changed, 14493 insertions(+), 3048 deletions(-) create mode 100644 counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json diff --git a/apiary.apib b/apiary.apib index f47003f0a9..e2335d58e2 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-25 17:08:10.463286. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-28 11:48:59.812262. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -177,22 +177,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 590, + "event_index": 662, "event": "NEW_BLOCK", "params": { - "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", - "block_index": 201, - "block_time": 1729876074, + "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_index": 208, + "block_time": 1730116123, "difficulty": 545259519, - "previous_block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280" + "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb" }, "tx_hash": null, - "block_index": 201, - "block_time": 1729876074 + "block_index": 208, + "block_time": 1730116123 } ], - "next_cursor": 580, - "result_count": 101 + "next_cursor": 653, + "result_count": 108 } ``` @@ -202,20 +202,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 591, + "event_index": 663, "event": "NEW_TRANSACTION", "params": { - "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", - "block_index": 201, - "block_time": 1729876074, + "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_index": 208, + "block_time": 1730116123, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "fee": 0, - "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -225,13 +225,13 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 } ], - "next_cursor": 582, - "result_count": 69 + "next_cursor": 654, + "result_count": 76 } ``` @@ -241,21 +241,21 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 592, + "event_index": 664, "event": "NEW_TRANSACTION_OUTPUT", "params": { - "block_index": 201, + "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "out_index": 0, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "block_time": 1729876074, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "block_time": 1730116123, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 } ], "next_cursor": 558, @@ -269,23 +269,23 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 603, + "event_index": 675, "event": "BLOCK_PARSED", "params": { - "block_index": 201, - "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", - "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", + "block_index": 208, + "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", + "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", "transaction_count": 1, - "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", - "block_time": 1729876074 + "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", + "block_time": 1730116123 }, "tx_hash": null, - "block_index": 201, - "block_time": 1729876074 + "block_index": 208, + "block_time": 1730116123 } ], - "next_cursor": 589, - "result_count": 101 + "next_cursor": 661, + "result_count": 108 } ``` @@ -295,20 +295,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 602, + "event_index": 674, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75 }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 } ], - "next_cursor": 578, - "result_count": 54 + "next_cursor": 660, + "result_count": 61 } ``` @@ -320,19 +320,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 596, + "event_index": 668, "event": "DEBIT", "params": { "action": "utxo move", "address": null, "asset": "XCP", - "block_index": 201, - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", + "block_index": 208, + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", "quantity": 1500000000, - "tx_index": 68, - "utxo": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "utxo_address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "block_time": 1729876074, + "tx_index": 75, + "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -342,13 +342,13 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 } ], - "next_cursor": 593, - "result_count": 61 + "next_cursor": 665, + "result_count": 72 } ``` @@ -358,19 +358,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 599, + "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "asset": "XCP", - "block_index": 201, + "block_index": 208, "calling_function": "dispense", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", "quantity": 66, - "tx_index": 68, + "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -380,13 +380,13 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 } ], - "next_cursor": 597, - "result_count": 76 + "next_cursor": 669, + "result_count": 91 } ``` @@ -396,35 +396,35 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 498, + "event_index": 602, "event": "ENHANCED_SEND", "params": { - "asset": "XCP", - "block_index": 189, - "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "asset": "MPMASSET", + "block_index": 202, + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "memo": null, - "quantity": 10000, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "quantity": 1000, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "status": "valid", - "tx_hash": "dc24a98f4f65b086869c6350383240e014524d822aab2e2630ccaa222668e74a", - "tx_index": 55, - "block_time": 1729876016, + "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "tx_index": 69, + "block_time": 1730116081, "asset_info": { - "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false }, - "quantity_normalized": "0.00010000" + "quantity_normalized": "0.00001000" }, - "tx_hash": "dc24a98f4f65b086869c6350383240e014524d822aab2e2630ccaa222668e74a", - "block_index": 189, - "block_time": 1729876016 + "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "block_index": 202, + "block_time": 1730116081 } ], - "next_cursor": null, - "result_count": 1 + "next_cursor": 498, + "result_count": 2 } ``` @@ -434,20 +434,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 510, + "event_index": 650, "event": "MPMA_SEND", "params": { "asset": "XCP", - "block_index": 190, - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "memo": null, + "block_index": 206, + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "status": "valid", - "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "tx_index": 56, - "block_time": 1729876020, + "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_index": 73, + "block_time": 1730116106, "asset_info": { "divisible": true, "asset_longname": null, @@ -457,13 +457,13 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "block_index": 190, - "block_time": 1729876020 + "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "block_index": 206, + "block_time": 1730116106 } ], - "next_cursor": 509, - "result_count": 3 + "next_cursor": 649, + "result_count": 15 } ``` @@ -497,20 +497,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "status": "valid", - "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", + "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", "tx_index": 60, - "block_time": 1729876037, + "block_time": 1730116045, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", + "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", "block_index": 194, - "block_time": 1729876037 + "block_time": 1730116045 } ], "next_cursor": null, @@ -532,15 +532,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "status": "valid", - "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", + "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", "tx_index": 41, - "block_time": 1729875884, + "block_time": 1730115885, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -554,9 +554,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", + "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", "block_index": 154, - "block_time": 1729875884 + "block_time": 1730115885 } ], "next_cursor": null, @@ -582,22 +582,22 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 567, + "event_index": 593, "event": "ASSET_CREATION", "params": { - "asset_id": "4336417415635", + "asset_id": "101158363923", "asset_longname": null, - "asset_name": "UTXOASSET", - "block_index": 198, - "block_time": 1729876053 + "asset_name": "MPMASSET", + "block_index": 201, + "block_time": 1730116077 }, - "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", - "block_index": 198, - "block_time": 1729876053 + "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "block_index": 201, + "block_time": 1730116077 } ], - "next_cursor": 394, - "result_count": 11 + "next_cursor": 567, + "result_count": 12 } ``` @@ -607,40 +607,40 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 568, + "event_index": 594, "event": "ASSET_ISSUANCE", "params": { - "asset": "UTXOASSET", + "asset": "MPMASSET", "asset_events": "creation", "asset_longname": null, - "block_index": 198, + "block_index": 201, "call_date": 0, "call_price": 0.0, "callable": false, - "description": "My super asset", + "description": "My super asset B", "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "status": "valid", "transfer": false, - "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", - "tx_index": 64, - "block_time": 1729876053, + "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_index": 68, + "block_time": 1730116077, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", - "block_index": 198, - "block_time": 1729876053 + "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "block_index": 201, + "block_time": 1730116077 } ], - "next_cursor": 395, - "result_count": 23 + "next_cursor": 568, + "result_count": 24 } ``` @@ -656,12 +656,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "status": "valid", "tag": "64657374726f79", - "tx_hash": "d41b13b0b1a25e8e77dbd3c8caa5b91aff948a81618a598872934c4809d49e7e", + "tx_hash": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c", "tx_index": 61, - "block_time": 1729876041, + "block_time": 1730116049, "asset_info": { "divisible": true, "asset_longname": null, @@ -671,9 +671,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "d41b13b0b1a25e8e77dbd3c8caa5b91aff948a81618a598872934c4809d49e7e", + "tx_hash": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c", "block_index": 195, - "block_time": 1729876041 + "block_time": 1730116049 } ], "next_cursor": 157, @@ -689,12 +689,12 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 529, + "event_index": 659, "event": "OPEN_ORDER", "params": { - "block_index": 193, + "block_index": 207, "expiration": 21, - "expire_index": 214, + "expire_index": 228, "fee_provided": 10000, "fee_provided_remaining": 10000, "fee_required": 0, @@ -705,11 +705,11 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "status": "open", - "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", - "tx_index": 59, - "block_time": 1729876032, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_index": 74, + "block_time": 1730116110, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -733,13 +733,13 @@ Here is a list of events classified by theme and for each an example response: "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", - "block_index": 193, - "block_time": 1729876032 + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_time": 1730116110 } ], - "next_cursor": 516, - "result_count": 7 + "next_cursor": 529, + "result_count": 8 } ``` @@ -758,20 +758,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", + "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", + "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", "tx0_index": 51, - "tx1_address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", + "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", "tx1_index": 54, - "block_time": 1729876012, + "block_time": 1730116023, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -790,9 +790,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", + "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", "block_index": 188, - "block_time": 1729876012 + "block_time": 1730116023 } ], "next_cursor": 475, @@ -806,19 +806,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 521, + "event_index": 655, "event": "ORDER_UPDATE", "params": { - "status": "cancelled", - "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703" + "status": "expired", + "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878" }, - "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", - "block_index": 192, - "block_time": 1729876028 + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_time": 1730116110 } ], - "next_cursor": 490, - "result_count": 11 + "next_cursor": 521, + "result_count": 12 } ``` @@ -832,11 +832,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21" + "tx_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed" }, - "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", + "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", "block_index": 187, - "block_time": 1729876008 + "block_time": 1730116019 } ], "next_cursor": null, @@ -853,13 +853,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", "status": "completed" }, - "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", + "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", "block_index": 187, - "block_time": 1729876008 + "block_time": 1730116019 } ], "next_cursor": 454, @@ -878,18 +878,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "status": "valid", - "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", + "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", "tx_index": 53, - "block_time": 1729876008, + "block_time": 1730116019, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", + "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", "block_index": 187, - "block_time": 1729876008 + "block_time": 1730116019 } ], "next_cursor": null, @@ -907,16 +907,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "offer_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "status": "valid", - "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", + "tx_hash": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603", "tx_index": 58, - "block_time": 1729876028 + "block_time": 1730116037 }, - "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", + "tx_hash": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603", "block_index": 192, - "block_time": 1729876028 + "block_time": 1730116037 } ], "next_cursor": null, @@ -930,21 +930,21 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 462, + "event_index": 657, "event": "ORDER_EXPIRATION", "params": { - "block_index": 184, - "order_hash": "a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "block_time": 1729875934 + "block_index": 207, + "order_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_time": 1730116110 }, - "tx_hash": null, - "block_index": 184, - "block_time": 1729875934 + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_time": 1730116110 } ], - "next_cursor": 460, - "result_count": 2 + "next_cursor": 462, + "result_count": 3 } ``` @@ -958,14 +958,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b_a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "block_time": 1729875934 + "order_match_id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "block_time": 1730115936 }, "tx_hash": null, "block_index": 184, - "block_time": 1729875934 + "block_time": 1730115936 } ], "next_cursor": null, @@ -991,17 +991,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "satoshirate": 1, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "status": 0, - "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", + "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", "tx_index": 62, - "block_time": 1729876044, + "block_time": 1730116052, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -1010,9 +1010,9 @@ Here is a list of events classified by theme and for each an example response: "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", + "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", "block_index": 196, - "block_time": 1729876044 + "block_time": 1730116052 } ], "next_cursor": 272, @@ -1026,15 +1026,15 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 600, + "event_index": 672, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "status": 0, - "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", + "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", "asset_info": { "divisible": true, "asset_longname": null, @@ -1044,9 +1044,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 } ], "next_cursor": 560, @@ -1065,13 +1065,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mymSDaJc8UDD3vXT5QFhccicJMeXuYM2hK", + "destination": "mrTk1ThfTwE2f6PUY5vjkJvga5VgZXf4bk", "dispense_quantity": 10, - "dispenser_tx_hash": "8a0a52171c4efc276df87ce95bc204e13120c49d1702588067a90c1931a5de67", - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "tx_hash": "f91defe0eba18322595dc1ad3aa8818da3374398fb0d92cc58e6420aabaa6956", + "dispenser_tx_hash": "a809a9c0b667c336b61ce3e892a7f2d80231121804f3f7db594da58d9ded5a52", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx_hash": "a623caab6512fc5492719029eb7ec34044e6fe307b96362340125090670d3242", "tx_index": 31, - "block_time": 1729875848, + "block_time": 1730115837, "asset_info": { "divisible": true, "asset_longname": null, @@ -1081,9 +1081,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "f91defe0eba18322595dc1ad3aa8818da3374398fb0d92cc58e6420aabaa6956", + "tx_hash": "a623caab6512fc5492719029eb7ec34044e6fe307b96362340125090670d3242", "block_index": 144, - "block_time": 1729875848 + "block_time": 1730115837 } ], "next_cursor": null, @@ -1097,20 +1097,20 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 601, + "event_index": 673, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 201, + "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "block_time": 1729876074, + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -1121,9 +1121,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 } ], "next_cursor": 561, @@ -1145,19 +1145,19 @@ Here is a list of events classified by theme and for each an example response: "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa", + "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", "tx_index": 25, "value": 66600.0, - "block_time": 1729875826, + "block_time": 1730115814, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa", + "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", "block_index": 138, - "block_time": 1729875826 + "block_time": 1730115814 } ], "next_cursor": 213, @@ -1195,12 +1195,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "start_block": 0, "status": "open", - "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", + "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", "tx_index": 42, - "block_time": 1729875887, + "block_time": 1730115889, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1208,9 +1208,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", + "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", "block_index": 155, - "block_time": 1729875887 + "block_time": 1730115889 } ], "next_cursor": 196, @@ -1228,11 +1228,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "5bbb7d89d98e4d3cea2e5bcb4f6438a19666ff81c76b02e70f1508276c81fcfe" + "tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc" }, "tx_hash": null, "block_index": 130, - "block_time": 1729875786 + "block_time": 1730115785 } ], "next_cursor": 110, @@ -1253,17 +1253,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", + "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", "paid_quantity": 34, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "status": "valid", - "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", + "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", "tx_index": 23, - "block_time": 1729875818, + "block_time": 1730115808, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -1271,9 +1271,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", + "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", "block_index": 136, - "block_time": 1729875818 + "block_time": 1730115808 } ], "next_cursor": 190, @@ -1294,28 +1294,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320:1", + "destination": "f703cfe223c19e062e103d02c092a7eeb75f16c14dc6840c066ea940ddab89ed:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", "status": "valid", - "tx_hash": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320", + "tx_hash": "f703cfe223c19e062e103d02c092a7eeb75f16c14dc6840c066ea940ddab89ed", "tx_index": 65, - "block_time": 1729876056, + "block_time": 1730116064, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "issuer": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320", + "tx_hash": "f703cfe223c19e062e103d02c092a7eeb75f16c14dc6840c066ea940ddab89ed", "block_index": 199, - "block_time": 1729876056 + "block_time": 1730116064 } ], "next_cursor": 319, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qlnehx4acfdgpf3cz4hqtgdgf5wejvwhpr9x5kq", + "destination": "bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "03cae60632c738d12c7ac2243ef952bbe11e47c70391ef56c5a8012cf1c8ca86:0", + "source": "ebdd9911ac289e537ed7c712b293decfb0d690c1b2390873d53383b30979e9c8:0", "status": "valid", - "tx_hash": "d9c867b10bea6f7411fc096f380763fb0a09ee8fc6ca89568b5c11ee0f15063c", + "tx_hash": "16c2e31138126762962006973bfedc1ced24b4fc3d41616f4ea36346add19de5", "tx_index": 38, - "block_time": 1729875873, + "block_time": 1730115873, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d9c867b10bea6f7411fc096f380763fb0a09ee8fc6ca89568b5c11ee0f15063c", + "tx_hash": "16c2e31138126762962006973bfedc1ced24b4fc3d41616f4ea36346add19de5", "block_index": 151, - "block_time": 1729875873 + "block_time": 1730115873 } ], "next_cursor": null, @@ -1369,19 +1369,19 @@ Here is a list of events classified by theme and for each an example response: { "result": [ { - "event_index": 598, + "event_index": 670, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 201, - "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "block_index": 208, + "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", "msg_index": 1, "quantity": 1500000000, - "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", "status": "valid", - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "block_time": 1729876074, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -1391,12 +1391,12 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 } ], - "next_cursor": 595, + "next_cursor": 667, "result_count": 11 } ``` @@ -1415,17 +1415,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qwv0kz40a9nmvlc7dgqqdmwky9e6gxn9ja9sksv", + "source": "bcrt1qrac7m6sqdzx9h798y52wk0qj5205d7vtqfjyds", "status": "valid", - "tx_hash": "bffb2be5bdaa6276cca4057394e8a543c6324ecbc27920251c3eb7fd5e3ddc60", + "tx_hash": "40efc8e4de6bc24410016279eb759071c80e3ac3ee8fc7a52725555c3f89979e", "tx_index": 9, - "block_time": 1729875752, + "block_time": 1730115749, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "bffb2be5bdaa6276cca4057394e8a543c6324ecbc27920251c3eb7fd5e3ddc60", + "tx_hash": "40efc8e4de6bc24410016279eb759071c80e3ac3ee8fc7a52725555c3f89979e", "block_index": 121, - "block_time": 1729875752 + "block_time": 1730115749 } ], "next_cursor": 65, @@ -1464,7 +1464,7 @@ Returns server information and the list of documented routes in JSON format. Returns the list of the last ten blocks + Parameters - + cursor: `201` (str, optional) - The index of the most recent block to return + + cursor: `208` (str, optional) - The index of the most recent block to return + Default: `None` + limit: `5` (int, optional) - The number of blocks to return + Default: `10` @@ -1481,68 +1481,68 @@ Returns the list of the last ten blocks { "result": [ { - "block_index": 201, - "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", - "block_time": 1729876074, - "previous_block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280", + "block_index": 208, + "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_time": 1730116123, + "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", "difficulty": 545259519, - "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", - "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", - "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", + "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", + "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", + "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", "transaction_count": 1, "confirmed": true }, { - "block_index": 200, - "block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280", - "block_time": 1729876064, - "previous_block_hash": "680d63e1a94fcf9f7ce37000f837403efcff5a7d398a31eed9db2487ca1e40b5", + "block_index": 207, + "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_time": 1730116110, + "previous_block_hash": "43e679712b4649bc798af14df94c86578f3b408d04178a5c2fc175d41a020122", "difficulty": 545259519, - "ledger_hash": "336efe812ffe5396c704c2595aa7eb267beae7a33cf999c18be19a41f374087c", - "txlist_hash": "59daaee3faf1931a718b4990167f6fe8e3f24e16aa871ef809babcace67b6305", - "messages_hash": "cf00d968ac2ce169aa1a4be3eac4353ba1db59fd17e66566b9867accea98b2f2", - "transaction_count": 2, + "ledger_hash": "ba02d6708a382d3713cfcfcccac729b1e7e29a6a2aa1c7d19685ccc856890da8", + "txlist_hash": "790b35ebd56c4d625af0345f72bd428d1cb0c0318f9935ae19163367f47cbd3a", + "messages_hash": "1933b8e86c5aad6c5816ac34109db0a5f96f3f784097419eaa5909389373eb47", + "transaction_count": 1, "confirmed": true }, { - "block_index": 199, - "block_hash": "680d63e1a94fcf9f7ce37000f837403efcff5a7d398a31eed9db2487ca1e40b5", - "block_time": 1729876056, - "previous_block_hash": "019dfc456293078117151bea18eb53e2070e87beb9fa9e0f30da5a1f18d0d55b", + "block_index": 206, + "block_hash": "43e679712b4649bc798af14df94c86578f3b408d04178a5c2fc175d41a020122", + "block_time": 1730116106, + "previous_block_hash": "4a895299665e1f654c5117e9c4b133cbccccd6db23134dca896fa8a620b81d38", "difficulty": 545259519, - "ledger_hash": "5d19fa3c92a777c22206d0b7912c5aec9861e57fa9e23968b5b26da8d262d95e", - "txlist_hash": "1f07bdd8d6cfeaa370f401f09c76dd727c7d508ac615dbceaaf76fccee496ec5", - "messages_hash": "9cb0d96db0a3b2d578629764d069eaad58dc349b8fcee18491892b30f85e4d38", + "ledger_hash": "5191f4352b18e0244b417732e8ca9a2f4099e82fe6378941d597a9d0f44a35eb", + "txlist_hash": "11ed68e7e561ca9c47bd5e3b49cb3a916edd7b0565c99186172ce08b245266b6", + "messages_hash": "6d6616e6036b35108a1433422b6728e8e7184fe366730d6c4167cf4f128f3957", "transaction_count": 1, "confirmed": true }, { - "block_index": 198, - "block_hash": "019dfc456293078117151bea18eb53e2070e87beb9fa9e0f30da5a1f18d0d55b", - "block_time": 1729876053, - "previous_block_hash": "71c33ed751f0d3896ba4ae8536beb0def514bfca9af11ca3d4a8d90245a6df48", + "block_index": 205, + "block_hash": "4a895299665e1f654c5117e9c4b133cbccccd6db23134dca896fa8a620b81d38", + "block_time": 1730116102, + "previous_block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", "difficulty": 545259519, - "ledger_hash": "2a8b021bc5ac61c2570e26def8375d076c33c15f90711aa5fd7de2a26f98ec58", - "txlist_hash": "5d3ed76ad91068aea0d582fa2971a5e1b3a7f894a797780e186c8d7ab3ce4e6f", - "messages_hash": "7d651b3b7f2137114d4a7e66c602b3b8f99bfdef221e7b850f353d87c91d5607", + "ledger_hash": "9bc1700e61ef5a091713fdba122f7f916443a27ccc0f6f8962ebd916f77b09fe", + "txlist_hash": "447c3368dca8d934fd7757b6f897b5f6060d596592dc32123ae0664d1286d758", + "messages_hash": "933776eb7aae2e8246e02f0527252645708affea8a2cfcee96ed6a4022a47ab8", "transaction_count": 1, "confirmed": true }, { - "block_index": 197, - "block_hash": "71c33ed751f0d3896ba4ae8536beb0def514bfca9af11ca3d4a8d90245a6df48", - "block_time": 1729876048, - "previous_block_hash": "6e3cb216f3145455efc27a2f6f579c4a01305a02305f48759144dabb73b27da3", + "block_index": 204, + "block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", + "block_time": 1730116099, + "previous_block_hash": "37274251a093028e8065cbc9af85901d3961a9e5e04f4e726b13a0506a915652", "difficulty": 545259519, - "ledger_hash": "e03d381575e6fd123f8502086c5c4f4031998824840366947b1a1e82200076f2", - "txlist_hash": "4d905525c1e83f6f3b10de1a15f0e0c638f7e5420e4c7bfa902464194cb56ea4", - "messages_hash": "8f2707e5da86d6c8228ec3dca70cdfc49851e139797c1f8f8f4288647984f1e4", + "ledger_hash": "aa1ba152bb405e250dbe4f7276f155e4c10345fbf42243536809bc9a0ca0307a", + "txlist_hash": "757b7ab2907208b3a7d0202f310e15a22fd7dd5205a5acef4262a2c013a56c84", + "messages_hash": "f866e444026dcc12e65fad983a1b2435470977f04f7668204304a707a604c729", "transaction_count": 1, "confirmed": true } ], - "next_cursor": 196, - "result_count": 101 + "next_cursor": 203, + "result_count": 108 } ``` @@ -1561,7 +1561,7 @@ Return the information of the last block Return the information of a block + Parameters - + block_index: `201` (int, required) - The index of the block to return + + block_index: `208` (int, required) - The index of the block to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -1572,14 +1572,14 @@ Return the information of a block ``` { "result": { - "block_index": 201, - "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", - "block_time": 1729876074, - "previous_block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280", + "block_index": 208, + "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_time": 1730116123, + "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", "difficulty": 545259519, - "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", - "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", - "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", + "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", + "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", + "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1` (str, required) - The index of the block to return + + block_hash: `32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d` (str, required) - The index of the block to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -1602,14 +1602,14 @@ Return the information of a block ``` { "result": { - "block_index": 201, - "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", - "block_time": 1729876074, - "previous_block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280", + "block_index": 208, + "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_time": 1730116123, + "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", "difficulty": 545259519, - "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", - "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", - "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", + "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", + "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", + "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", "transaction_count": 1, "confirmed": true } @@ -1621,8 +1621,8 @@ Return the information of a block Returns the transactions of a block + Parameters - + block_index: `201` (int, required) - The index of the block to return - + cursor: `68` (str, optional) - The last transaction index to return + + block_index: `208` (int, required) - The index of the block to return + + cursor: `75` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` @@ -1639,18 +1639,18 @@ Returns the transactions of a block { "result": [ { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", - "block_time": 1729876074, - "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_time": 1730116123, + "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1672,10 +1672,10 @@ Returns the transactions of a block Returns the events of a block + Parameters - + block_index: `201` (int, required) - The index of the block to return + + block_index: `208` (int, required) - The index of the block to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `603` (str, optional) - The last event index to return + + cursor: `675` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -1692,43 +1692,43 @@ Returns the events of a block { "result": [ { - "event_index": 603, + "event_index": 675, "event": "BLOCK_PARSED", "params": { - "block_index": 201, - "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", - "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", + "block_index": 208, + "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", + "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", "transaction_count": 1, - "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", - "block_time": 1729876074 + "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", + "block_time": 1730116123 }, "tx_hash": null }, { - "event_index": 602, + "event_index": 674, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75 }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" }, { - "event_index": 601, + "event_index": 673, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 201, + "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "block_time": 1729876074, + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -1739,18 +1739,18 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" }, { - "event_index": 600, + "event_index": 672, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "status": 0, - "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", + "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", "asset_info": { "divisible": true, "asset_longname": null, @@ -1760,22 +1760,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" }, { - "event_index": 599, + "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "asset": "XCP", - "block_index": 201, + "block_index": 208, "calling_function": "dispense", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", "quantity": 66, - "tx_index": 68, + "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -1785,10 +1785,10 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" } ], - "next_cursor": 598, + "next_cursor": 670, "result_count": 14 } ``` @@ -1798,7 +1798,7 @@ Returns the events of a block Returns the event counts of a block + Parameters - + block_index: `201` (int, required) - The index of the block to return + + block_index: `208` (int, required) - The index of the block to return + cursor (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return @@ -1846,7 +1846,7 @@ Returns the event counts of a block Returns the events of a block filtered by event + Parameters - + block_index: `201` (int, required) - The index of the block to return + + block_index: `208` (int, required) - The index of the block to return + event: `CREDIT` (str, required) - The event to filter by + cursor (str, optional) - The last event index to return + Default: `None` @@ -1865,19 +1865,19 @@ Returns the events of a block filtered by event { "result": [ { - "event_index": 599, + "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "asset": "XCP", - "block_index": 201, + "block_index": 208, "calling_function": "dispense", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", "quantity": 66, - "tx_index": 68, + "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -1887,22 +1887,22 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" }, { - "event_index": 597, + "event_index": 669, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 201, + "block_index": 208, "calling_function": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", "quantity": 1500000000, - "tx_index": 68, - "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "block_time": 1729876074, + "tx_index": 75, + "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -1912,32 +1912,32 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" }, { - "event_index": 594, + "event_index": 666, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 201, + "block_index": 208, "calling_function": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", "quantity": 1500000000, - "tx_index": 68, - "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "block_time": 1729876074, + "tx_index": 75, + "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_time": 1730116123, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980" + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" } ], "next_cursor": null, @@ -1950,7 +1950,7 @@ Returns the events of a block filtered by event Returns the credits of a block + Parameters - + block_index: `201` (int, required) - The index of the block to return + + block_index: `208` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -1999,17 +1999,17 @@ Returns the credits of a block { "result": [ { - "block_index": 201, - "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "block_index": 208, + "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -2020,17 +2020,17 @@ Returns the credits of a block "quantity_normalized": "0.00000066" }, { - "block_index": 201, + "block_index": 208, "address": null, "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "confirmed": true, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -2041,21 +2041,21 @@ Returns the credits of a block "quantity_normalized": "15.00000000" }, { - "block_index": 201, + "block_index": 208, "address": null, "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "confirmed": true, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -2072,7 +2072,7 @@ Returns the credits of a block Returns the debits of a block + Parameters - + block_index: `201` (int, required) - The index of the block to return + + block_index: `208` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -2110,17 +2110,17 @@ Returns the debits of a block { "result": [ { - "block_index": 201, + "block_index": 208, "address": null, "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "utxo": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "utxo_address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "confirmed": true, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -2131,21 +2131,21 @@ Returns the debits of a block "quantity_normalized": "15.00000000" }, { - "block_index": 201, + "block_index": 208, "address": null, "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "utxo": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "utxo_address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "confirmed": true, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -2162,7 +2162,7 @@ Returns the debits of a block Returns the expirations of a block + Parameters - + block_index: `184` (int, required) - The index of the block to return + + block_index: `207` (int, required) - The index of the block to return + cursor (str, optional) - The last index of the expirations to return + Default: `None` + limit: `5` (int, optional) - The maximum number of expirations to return @@ -2181,28 +2181,14 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", - "block_index": 184, - "confirmed": true, - "block_time": 1729875934 - }, - { - "type": "order", - "object_id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", - "block_index": 184, - "confirmed": true, - "block_time": 1729875934 - }, - { - "type": "order_match", - "object_id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b_a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", - "block_index": 184, + "object_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "block_index": 207, "confirmed": true, - "block_time": 1729875934 + "block_time": 1730116110 } ], "next_cursor": null, - "result_count": 3 + "result_count": 1 } ``` @@ -2230,13 +2216,13 @@ Returns the cancels of a block "result": [ { "tx_index": 58, - "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", + "tx_hash": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603", "block_index": 192, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "offer_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "offer_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", "status": "valid", "confirmed": true, - "block_time": 1729876028 + "block_time": 1730116037 } ], "next_cursor": null, @@ -2268,15 +2254,15 @@ Returns the destructions of a block "result": [ { "tx_index": 61, - "tx_hash": "d41b13b0b1a25e8e77dbd3c8caa5b91aff948a81618a598872934c4809d49e7e", + "tx_hash": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c", "block_index": 195, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1729876041, + "block_time": 1730116049, "asset_info": { "divisible": true, "asset_longname": null, @@ -2297,7 +2283,7 @@ Returns the destructions of a block Returns the issuances of a block + Parameters - + block_index: `198` (int, required) - The index of the block to return + + block_index: `201` (int, required) - The index of the block to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -2328,20 +2314,20 @@ Returns the issuances of a block { "result": [ { - "tx_index": 64, - "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", + "tx_index": 68, + "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", "msg_index": 0, - "block_index": 198, - "asset": "UTXOASSET", + "block_index": 201, + "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "My super asset", + "description": "My super asset B", "fee_paid": 50000000, "status": "valid", "asset_longname": null, @@ -2351,7 +2337,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729876053, + "block_time": 1730116077, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2366,7 +2352,7 @@ Returns the issuances of a block Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + block_index: `201` (int, required) - The index of the block to return + + block_index: `208` (int, required) - The index of the block to return + cursor (str, optional) - The last index of the debits to return + Default: `None` + limit: `5` (int, optional) - The maximum number of debits to return @@ -2384,11 +2370,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2396,7 +2382,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -2408,11 +2394,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2420,11 +2406,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -2442,7 +2428,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + block_index: `201` (int, required) - The index of the block to return + + block_index: `208` (int, required) - The index of the block to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -2460,29 +2446,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 68, + "tx_index": 75, "dispense_index": 0, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "last_status_tx_hash": null, - "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2497,7 +2483,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -2538,16 +2524,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 60, - "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", + "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", "block_index": 194, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729876037, + "block_time": 1730116045, "fee_paid_normalized": "0.00600000" } ], @@ -2586,10 +2572,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", + "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", "tx_index": 42, "block_index": 155, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2614,7 +2600,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729875887, + "block_time": 1730115889, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2651,22 +2637,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", + "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", "tx_index": 23, "block_index": 136, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729875818, + "block_time": 1730115808, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -2705,17 +2691,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa", + "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", "block_index": 138, - "block_hash": "3083921a78e7ee083fedf47e7f62eb1277862a866255eff5c0bb140bc42551c0", - "block_time": 1729875826, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_hash": "408b3669259efe9231a8e85810fa01da28c68182a7e963e48f10de4b8073293b", + "block_time": 1730115814, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa:1", + "utxos_info": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2740,25 +2726,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", + "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", "block_index": 187, - "block_hash": "565497e933d18065920c7991438a01968c62c1bb8bed233a7b58a2b11b615589", - "block_time": 1729876008, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "block_hash": "1477c68770e237147df656e4057175af51d384211889daf8c50bc0ac4ee012ef", + "block_time": 1730116019, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "btc_amount": 2000, "fee": 10000, - "data": "0bd520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c12d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "data": "0ba70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", "supported": true, - "utxos_info": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d:0", + "utxos_info": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "tx1_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", "status": "valid" } }, @@ -2773,23 +2759,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", + "tx_hash": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603", "block_index": 192, - "block_hash": "6be48c382c9942ca735bebd63f6fd172f2370046494e2b051ab2230e49f7c8c4", - "block_time": 1729876028, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "block_hash": "085b3661fde628077cb1bd06946cdbd6a2d4949cc0e15cb4bb02f80a02476132", + "block_time": 1730116037, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", + "data": "4608d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", "supported": true, - "utxos_info": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f:1", + "utxos_info": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", + "offer_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", "status": "valid" } }, @@ -2804,17 +2790,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "d41b13b0b1a25e8e77dbd3c8caa5b91aff948a81618a598872934c4809d49e7e", + "tx_hash": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c", "block_index": 195, - "block_hash": "36a4db927a1097c8fae6e5b7defeffb6d4a5a8c21b2fbf7caab713bc9e4caef2", - "block_time": 1729876041, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "block_hash": "649f35ce9b812cca25395a6080f41d14c2205deae73e39df344a44c884c252cd", + "block_time": 1730116049, + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "d41b13b0b1a25e8e77dbd3c8caa5b91aff948a81618a598872934c4809d49e7e:1", + "utxos_info": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2844,17 +2830,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", + "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", "block_index": 196, - "block_hash": "6e3cb216f3145455efc27a2f6f579c4a01305a02305f48759144dabb73b27da3", - "block_time": 1729876044, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "block_hash": "1d9437f22b219d286914a85937f404bce390a88d6cc143f5576fd47635dc7b6d", + "block_time": 1730116052, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f:1", + "utxos_info": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2871,7 +2857,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -2889,18 +2875,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", - "block_time": 1729876074, - "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_time": 1730116123, + "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2920,17 +2906,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", + "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", "block_index": 154, - "block_hash": "2cf4d7d1187638ff4ed85d26bcde0cf0056b88791dd56365fe15f8c6e70f4dfd", - "block_time": 1729875884, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "block_hash": "6567d716135b76f23ac9e738a9a7cc690af701105e6da61c96461b8c14580cfb", + "block_time": 1730115885, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938:1", + "utxos_info": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2943,7 +2929,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -2967,25 +2953,25 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 64, - "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", - "block_index": 198, - "block_hash": "019dfc456293078117151bea18eb53e2070e87beb9fa9e0f30da5a1f18d0d55b", - "block_time": 1729876053, - "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "tx_index": 68, + "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "block_index": 201, + "block_hash": "31229cfb58723faf819c8772e47a52c5cc4c531fdef4370ba12b94679b292486", + "block_time": 1730116077, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "16000003f1a69ea1d3000000174876e8000100004d79207375706572206173736574", + "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5:1", + "utxos_info": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", "message_type_id": 22, "message_data": { - "asset_id": 4336417415635, - "asset": "UTXOASSET", + "asset_id": 101158363923, + "asset": "MPMASSET", "subasset_longname": null, "quantity": 100000000000, "divisible": true, @@ -2994,7 +2980,7 @@ Here is sample API output for each of these transactions: "callable": false, "call_date": 0, "call_price": 0.0, - "description": "My super asset", + "description": "My super asset B", "status": "valid", "quantity_normalized": "1000.00000000" } @@ -3009,18 +2995,18 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 59, - "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", - "block_index": 193, - "block_hash": "45f185041d0ca45bc37935f64eb5d323bdbf3867d26d00c4fe1ad1525a9812b6", - "block_time": 1729876032, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx_index": 74, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_time": 1730116110, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff:1", + "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3062,35 +3048,35 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 55, - "tx_hash": "dc24a98f4f65b086869c6350383240e014524d822aab2e2630ccaa222668e74a", - "block_index": 189, - "block_hash": "7f8dd9644d785ad09a65590da5ffb834ea647d348690d66d8cf0a5c7fa3c4011", - "block_time": 1729876016, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "tx_index": 69, + "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "block_index": 202, + "block_hash": "13a7856636590644ca049ed5074ccb96a6b9694cf0a3187ec4d3b50111b76353", + "block_time": 1730116081, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080ff7bfd93f2bf72a1088e1cdf07174f46f787c026", + "data": "02000000178d82231300000000000003e880a500a0204b6c11d32ab0bd14b78f9db630019898", "supported": true, - "utxos_info": "dc24a98f4f65b086869c6350383240e014524d822aab2e2630ccaa222668e74a:1", + "utxos_info": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { - "asset": "XCP", - "quantity": 10000, - "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "asset": "MPMASSET", + "quantity": 1000, + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "memo": null, "asset_info": { - "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false }, - "quantity_normalized": "0.00010000" + "quantity_normalized": "0.00001000" } }, "btc_amount_normalized": "0.00000000" @@ -3103,33 +3089,33 @@ Here is sample API output for each of these transactions: ``` { "result": { - "tx_index": 56, - "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "block_index": 190, - "block_hash": "0c22d5f5069d1e48684934297db7b24cd14f263b972adee4e059a1b97f242b5a", - "block_time": 1729876020, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx_index": 73, + "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "block_index": 206, + "block_hash": "43e679712b4649bc798af14df94c86578f3b408d04178a5c2fc175d41a020122", + "block_time": 1730116106, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba8041bc73770b22d4ed185c6ac763c7d17e3a3272ce80ff7bfd93f2bf72a1088e1cdf07174f46f787c026400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "0300038088638b12211ad2887d7013cdfa98b822eb7f220a802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65:0", + "utxos_info": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { - "asset": "MYASSETA", - "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "asset": "MPMASSET", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "quantity": 10, - "memo": null, - "memo_is_hex": null, + "memo": "the memo", + "memo_is_hex": false, "asset_info": { "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -3137,10 +3123,10 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "quantity": 10, - "memo": null, - "memo_is_hex": null, + "memo": "memo1", + "memo_is_hex": false, "asset_info": { "divisible": true, "asset_longname": null, @@ -3163,23 +3149,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 60, - "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", + "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", "block_index": 194, - "block_hash": "1b34943023cd7688d3cd4fa56d187dbfb87e0fa3bfba57dc07c9dade989aab67", - "block_time": 1729876037, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "block_hash": "59079c23beb8663ec42bf5ef0e77bfe0a1acd003e0ccddfe92b0611464c57038", + "block_time": 1730116045, + "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480ff7bfd93f2bf72a1088e1cdf07174f46f787c026017377656570206d7920617373657473", + "data": "04802ae165e7b04a97caa52d91a46d89891d704370ff017377656570206d7920617373657473", "supported": true, - "utxos_info": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14:1", + "utxos_info": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "flags": 1, "memo": "sweep my assets" } @@ -3194,7 +3180,7 @@ Here is sample API output for each of these transactions: Returns the list of the last ten transactions + Parameters - + cursor: `68` (str, optional) - The index of the most recent transactions to return + + cursor: `75` (str, optional) - The index of the most recent transactions to return + Default: `None` + limit: `2` (int, optional) - The number of transactions to return + Default: `10` @@ -3211,18 +3197,18 @@ Returns the list of the last ten transactions { "result": [ { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", - "block_time": 1729876074, - "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_time": 1730116123, + "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3234,23 +3220,54 @@ Returns the list of the last ten transactions "btc_amount_normalized": "0.00001000" }, { - "tx_index": 67, - "tx_hash": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98", - "block_index": 200, - "block_hash": "60187b840762167e305d00a47596db3813ef4bff1d205bf0aa238f0bf8b5d280", - "block_time": 1729876064, - "source": "", + "tx_index": 74, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_time": 1730116110, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "destination": null, - "btc_amount": null, - "fee": null, - "data": null, + "btc_amount": 0, + "fee": 10000, + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3:0 69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98:0", - "confirmed": true + "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "confirmed": true, + "unpacked_data": { + "message_type": "order", + "message_type_id": 10, + "message_data": { + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "expiration": 21, + "fee_required": 0, + "status": "open", + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000000" + } + }, + "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 66, - "result_count": 69 + "next_cursor": 73, + "result_count": 76 } ``` @@ -3259,7 +3276,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001014f8571a488ab04a918215d4a1f93ee57bdee8f748751083d045a02d7c5d0ec200000000000ffffffff0200000000000000002c6a2a53d62d377950872e33ce781c58a42345cae314bd15ad5cbb2bf248066d88550d0a7fbbbc01cc7240fbcaf0ca052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff7480247304402200288c8930b6f242c23cd4b2c836cdd35a7f36120a57ad0a8a74a2a5634326ea402203c74a2e6277f1bb7e2d1c7162240daf44dbb75309807fe199a4dfe4f00e67bc001210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51500000000` (str, required) - Raw transaction in hex format + + rawtransaction: `0200000000010122235f2d650a226bf825e40c3473b0e86f83f9343173f94cbc4a32f87c65de5a0000000000ffffffff020000000000000000356a33092deefc89a2a67b64e4c655a20092a63cf5fe4084982c805fb233a2bc65b00a4ef01528b34993cb1af6dde83d6b01746fbf64f0ca052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02473044022021eba1988ce97e426258deed9b863cd2f5e51abed055fc30eafdd9d5673ebbca022035367d00fdbc15592a449b1d3aceb36faeb59a30b022c4120fe5ae511cdf3b44012103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f500000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -3272,18 +3289,18 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "4f8571a488ab04a918215d4a1f93ee57bdee8f748751083d045a02d7c5d0ec20", + "hash": "22235f2d650a226bf825e40c3473b0e86f83f9343173f94cbc4a32f87c65de5a", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3293,42 +3310,49 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 0, - "script_pub_key": "6a2a53d62d377950872e33ce781c58a42345cae314bd15ad5cbb2bf248066d88550d0a7fbbbc01cc7240fbca" + "script_pub_key": "6a33092deefc89a2a67b64e4c655a20092a63cf5fe4084982c805fb233a2bc65b00a4ef01528b34993cb1af6dde83d6b01746fbf64" }, { "value": 4999990000, - "script_pub_key": "0014aa5f1fcf04bccbd58dfaa75c74514113e56ff748" + "script_pub_key": "001488638b12211ad2887d7013cdfa98b822eb7f220a" } ], "vtxinwit": [ - "304402200288c8930b6f242c23cd4b2c836cdd35a7f36120a57ad0a8a74a2a5634326ea402203c74a2e6277f1bb7e2d1c7162240daf44dbb75309807fe199a4dfe4f00e67bc001", - "0211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f515" + "3044022021eba1988ce97e426258deed9b863cd2f5e51abed055fc30eafdd9d5673ebbca022035367d00fdbc15592a449b1d3aceb36faeb59a30b022c4120fe5ae511cdf3b4401", + "03998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f5" ], "lock_time": 0, - "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", - "tx_id": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f" + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_id": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8" }, "unpacked_data": { - "message_type": "dispenser", - "message_type_id": 12, + "message_type": "order", + "message_type_id": 10, "message_data": { - "asset": "TESTLOCKDESC", - "give_quantity": 1, - "escrow_quantity": 10000, - "mainchainrate": 1, - "dispenser_status": 0, - "action_address": null, - "oracle_address": null, - "status": "valid", - "asset_info": { + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "expiration": 21, + "fee_required": 0, + "status": "open", + "give_asset_info": { + "divisible": true, "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { "divisible": true, - "locked": false + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null }, - "give_quantity_normalized": "0.00000001", - "escrow_quantity_normalized": "0.00010000" + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000000" } }, "btc_amount_normalized": "0.00000000" @@ -3341,7 +3365,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515` (str, required) - Transaction hash + + tx_hash: `de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f` (str, required) - Transaction hash + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3352,18 +3376,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000000000000100000000000027108041bc73770b22d4ed185c6ac763c7d17e3a3272ce", + "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "1a4736dcb5b00f8859901726b6a731d7ddd53fde667085c039e038518019c026", + "hash": "5a50713f58b6550c247df7c2b8567c2c4a84f20cb8cb68753db3ba99f474dc98", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3373,20 +3397,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e57e589f583ae5424e2cac4d48559fda7d7431a2a617073832f3eb2f7d5e48c232aa072921da9f0ca2cdbeb9f7cfd" + "script_pub_key": "6a2eb84b152a827bd18cceeba1308198de9799d937904e165fafd90b85dbc93bc1a08b3043d21b9b815079166ecce04f" }, { "value": 4999970000, - "script_pub_key": "0014ff7bfd93f2bf72a1088e1cdf07174f46f787c026" + "script_pub_key": "00142ae165e7b04a97caa52d91a46d89891d704370ff" } ], "vtxinwit": [ - "3044022010433c1e6d727485a461ff6e7bf52076e8005d7829c43cff5f2e0bae9ca8d36902205d3f93066744c90a7e5b9ffbfef092f666962e4f14679ecf69201db42447d5d101", - "0271e87f8220264edfff84c2d6d6e03361443ffa736d66fc4cc0ea261e2fa56d73" + "3044022041d4d57109cb06f7743adf5e31ff61ae4d4d8e4b0aa597e866693a4ec0db1e4b022068a38087d86e8473a3601cb134cb4a9cdee4c11ec669e3e4c9f0234ab4f7a9c101", + "02d9ed6b0141de6dd60aa82fcd650f0ea18a84a8c9069b9ff072e09c8174a59ea3" ], "lock_time": 0, - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "tx_id": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515" + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_id": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3394,7 +3418,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "memo": null, "asset_info": { "divisible": true, @@ -3443,7 +3467,7 @@ Unpacks Counterparty data in hex format and returns the message type and data. Returns a transaction by its index. + Parameters - + tx_index: `68` (int, required) - The index of the transaction + + tx_index: `75` (int, required) - The index of the transaction + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3454,18 +3478,18 @@ Returns a transaction by its index. ``` { "result": { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", - "block_time": 1729876074, - "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_time": 1730116123, + "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3484,7 +3508,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980` (str, required) - The hash of the transaction + + tx_hash: `790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8` (str, required) - The hash of the transaction + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3495,18 +3519,18 @@ Returns a transaction by its hash. ``` { "result": { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_hash": "1764b0a3c71e2a7c32468c4927b235bf41e7dc838edad64aa089c739ce3256e1", - "block_time": 1729876074, - "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "destination": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_time": 1730116123, + "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1 a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3525,7 +3549,7 @@ Returns a transaction by its hash. Returns the events of a transaction + Parameters - + tx_index: `68` (int, required) - The index of the transaction to return + + tx_index: `75` (int, required) - The index of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor (str, optional) - The last event index to return @@ -3545,32 +3569,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 602, + "event_index": 674, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75 }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 }, { - "event_index": 601, + "event_index": 673, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 201, + "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "block_time": 1729876074, + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -3581,20 +3605,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 }, { - "event_index": 600, + "event_index": 672, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "status": 0, - "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", + "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", "asset_info": { "divisible": true, "asset_longname": null, @@ -3604,24 +3628,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 }, { - "event_index": 599, + "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "asset": "XCP", - "block_index": 201, + "block_index": 208, "calling_function": "dispense", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", "quantity": 66, - "tx_index": 68, + "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -3631,24 +3655,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 }, { - "event_index": 598, + "event_index": 670, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 201, - "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "block_index": 208, + "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", "msg_index": 1, "quantity": 1500000000, - "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", "status": "valid", - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "block_time": 1729876074, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -3658,12 +3682,12 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 } ], - "next_cursor": 597, + "next_cursor": 669, "result_count": 12 } ``` @@ -3673,10 +3697,10 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980` (str, required) - The hash of the transaction to return + + tx_hash: `790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `603` (str, optional) - The last event index to return + + cursor: `675` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -3693,32 +3717,32 @@ Returns the events of a transaction { "result": [ { - "event_index": 602, + "event_index": 674, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75 }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 }, { - "event_index": 601, + "event_index": 673, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 201, + "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "block_time": 1729876074, + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -3729,20 +3753,20 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 }, { - "event_index": 600, + "event_index": 672, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "status": 0, - "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", + "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", "asset_info": { "divisible": true, "asset_longname": null, @@ -3752,24 +3776,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 }, { - "event_index": 599, + "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "asset": "XCP", - "block_index": 201, + "block_index": 208, "calling_function": "dispense", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", "quantity": 66, - "tx_index": 68, + "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -3779,24 +3803,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 }, { - "event_index": 598, + "event_index": 670, "event": "UTXO_MOVE", "params": { "asset": "XCP", - "block_index": 201, - "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "block_index": 208, + "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", "msg_index": 1, "quantity": 1500000000, - "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", "status": "valid", - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "block_time": 1729876074, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -3806,12 +3830,12 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 } ], - "next_cursor": 597, + "next_cursor": 669, "result_count": 12 } ``` @@ -3821,7 +3845,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980` (str, required) - The hash of the transaction to return + + tx_hash: `790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8` (str, required) - The hash of the transaction to return + cursor (str, optional) - The last index of the debits to return + Default: `None` + limit: `5` (int, optional) - The maximum number of debits to return @@ -3839,11 +3863,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block { "result": [ { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3851,7 +3875,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -3863,11 +3887,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "fee_paid_normalized": "0.00000000" }, { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3875,11 +3899,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -3897,7 +3921,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980` (str, required) - The hash of the transaction to return + + tx_hash: `790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8` (str, required) - The hash of the transaction to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -3915,29 +3939,29 @@ Returns the dispenses of a block { "result": [ { - "tx_index": 68, + "tx_index": 75, "dispense_index": 0, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "last_status_tx_hash": null, - "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3952,7 +3976,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -3974,9 +3998,9 @@ Returns the dispenses of a block Returns the events of a transaction + Parameters - + tx_index: `68` (int, required) - The index of the transaction to return + + tx_index: `75` (int, required) - The index of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `603` (str, optional) - The last event index to return + + cursor: `675` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -3993,19 +4017,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 599, + "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "asset": "XCP", - "block_index": 201, + "block_index": 208, "calling_function": "dispense", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", "quantity": 66, - "tx_index": 68, + "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -4015,24 +4039,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 }, { - "event_index": 597, + "event_index": 669, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 201, + "block_index": 208, "calling_function": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", "quantity": 1500000000, - "tx_index": 68, - "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "block_time": 1729876074, + "tx_index": 75, + "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -4042,36 +4066,36 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 }, { - "event_index": 594, + "event_index": 666, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 201, + "block_index": 208, "calling_function": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", "quantity": 1500000000, - "tx_index": 68, - "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "block_time": 1729876074, + "tx_index": 75, + "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_time": 1730116123, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 } ], "next_cursor": null, @@ -4084,9 +4108,9 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980` (str, required) - The hash of the transaction to return + + tx_hash: `790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by - + cursor: `603` (str, optional) - The last event index to return + + cursor: `675` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4103,19 +4127,19 @@ Returns the events of a transaction { "result": [ { - "event_index": 599, + "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "asset": "XCP", - "block_index": 201, + "block_index": 208, "calling_function": "dispense", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", "quantity": 66, - "tx_index": 68, + "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -4125,24 +4149,24 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 }, { - "event_index": 597, + "event_index": 669, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 201, + "block_index": 208, "calling_function": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", "quantity": 1500000000, - "tx_index": 68, - "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "block_time": 1729876074, + "tx_index": 75, + "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -4152,36 +4176,36 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 }, { - "event_index": 594, + "event_index": 666, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 201, + "block_index": 208, "calling_function": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", "quantity": 1500000000, - "tx_index": 68, - "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "block_time": 1729876074, + "tx_index": 75, + "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_time": 1730116123, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 } ], "next_cursor": null, @@ -4196,7 +4220,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva,bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr,bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - Comma separated list of addresses + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -4220,7 +4244,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4230,39 +4254,39 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, "total_normalized": "1000.00000000" }, { - "asset": "MYASSETA", - "total": 97999999980, + "asset": "MPMASSET", + "total": 99999998960, "addresses": [ { - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "utxo": null, "utxo_address": null, - "quantity": 97999999980, - "quantity_normalized": "980.00000000" + "quantity": 99999998960, + "quantity_normalized": "999.99999000" } ], "asset_info": { "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, - "total_normalized": "980.00000000" + "total_normalized": "999.99999000" }, { "asset": "FAIRMINTA", "total": 500000000, "addresses": [ { - "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4272,18 +4296,39 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, "total_normalized": "5.00000000" }, + { + "asset": "MPMASSET", + "total": 960, + "addresses": [ + { + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "utxo": null, + "utxo_address": null, + "quantity": 960, + "quantity_normalized": "0.00000960" + } + ], + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "total_normalized": "0.00000960" + }, { "asset": "FAIRMINTD", "total": 40, "addresses": [ { - "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4293,7 +4338,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -4304,7 +4349,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4314,15 +4359,15 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, "total_normalized": "0.00000019" } ], - "next_cursor": "TESTLOCKDESC", - "result_count": 7 + "next_cursor": "MYASSETA", + "result_count": 8 } ``` @@ -4331,8 +4376,8 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva,bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - Comma separated list of addresses to return - + cursor: `68` (str, optional) - The last transaction index to return + + addresses: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr,bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - Comma separated list of addresses to return + + cursor: `75` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `100` @@ -4349,80 +4394,18 @@ Returns the transactions of a list of addresses { "result": [ { - "tx_index": 63, - "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", - "block_index": 197, - "block_hash": "71c33ed751f0d3896ba4ae8536beb0def514bfca9af11ca3d4a8d90245a6df48", - "block_time": 1729876048, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "btc_amount": 4000, - "fee": 0, - "data": "0d00", - "supported": true, - "utxos_info": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2:0", - "confirmed": true, - "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, - "message_data": { - "data": "00" - } - }, - "btc_amount_normalized": "0.00004000" - }, - { - "tx_index": 62, - "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", - "block_index": 196, - "block_hash": "6e3cb216f3145455efc27a2f6f579c4a01305a02305f48759144dabb73b27da3", - "block_time": 1729876044, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx_index": 74, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_time": 1730116110, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f:1", - "confirmed": true, - "unpacked_data": { - "message_type": "dispenser", - "message_type_id": 12, - "message_data": { - "asset": "TESTLOCKDESC", - "give_quantity": 1, - "escrow_quantity": 10000, - "mainchainrate": 1, - "dispenser_status": 0, - "action_address": null, - "oracle_address": null, - "status": "valid", - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "escrow_quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 59, - "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", - "block_index": 193, - "block_hash": "45f185041d0ca45bc37935f64eb5d323bdbf3867d26d00c4fe1ad1525a9812b6", - "block_time": 1729876032, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", - "supported": true, - "utxos_info": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff:1", + "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4457,78 +4440,216 @@ Returns the transactions of a list of addresses "btc_amount_normalized": "0.00000000" }, { - "tx_index": 58, - "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", - "block_index": 192, - "block_hash": "6be48c382c9942ca735bebd63f6fd172f2370046494e2b051ab2230e49f7c8c4", - "block_time": 1729876028, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx_index": 73, + "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "block_index": 206, + "block_hash": "43e679712b4649bc798af14df94c86578f3b408d04178a5c2fc175d41a020122", + "block_time": 1730116106, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", + "data": "0300038088638b12211ad2887d7013cdfa98b822eb7f220a802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f:1", + "utxos_info": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257:0", "confirmed": true, "unpacked_data": { - "message_type": "cancel", - "message_type_id": 70, - "message_data": { - "offer_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "status": "valid" - } + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "quantity": 10, + "memo": "memo1", + "memo_is_hex": false, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] }, "btc_amount_normalized": "0.00000000" }, { - "tx_index": 57, - "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "block_index": 191, - "block_hash": "4003b7caf894823fd81bb6e27f945a17aad4e8674493d4cb6aeceb6233323e87", - "block_time": 1729876024, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx_index": 72, + "tx_hash": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "block_index": 205, + "block_hash": "4a895299665e1f654c5117e9c4b133cbccccd6db23134dca896fa8a620b81d38", + "block_time": 1730116102, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "0300038088638b12211ad2887d7013cdfa98b822eb7f220a802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ffc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703:1", + "utxos_info": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0:0", "confirmed": true, "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "quantity": 10, + "memo": "746865206d656d6f", + "memo_is_hex": true, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null + { + "asset": "XCP", + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "quantity": 10, + "memo": "746865206d656d6f", + "memo_is_hex": true, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 71, + "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "block_index": 204, + "block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", + "block_time": 1730116099, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "supported": true, + "utxos_info": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5:0", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "quantity": 10, + "memo": "memo2", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } + { + "asset": "XCP", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "quantity": 10, + "memo": "memo1", + "memo_is_hex": false, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 70, + "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "block_index": 203, + "block_hash": "37274251a093028e8065cbc9af85901d3961a9e5e04f4e726b13a0506a915652", + "block_time": 1730116095, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "supported": true, + "utxos_info": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354:0", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] }, "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 56, - "result_count": 39 + "next_cursor": 69, + "result_count": 46 } ``` @@ -4537,10 +4658,10 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva,bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr,bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `603` (str, optional) - The last event index to return + + cursor: `675` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -4557,115 +4678,174 @@ Returns the events of a list of addresses { "result": [ { - "event_index": 561, - "event": "DISPENSE", + "event_index": 659, + "event": "OPEN_ORDER", "params": { - "asset": "TESTLOCKDESC", - "block_index": 197, - "btc_amount": 4000, - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "dispense_index": 0, - "dispense_quantity": 4000, - "dispenser_tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", - "tx_index": 63, - "block_time": 1729876048, - "asset_info": { + "block_index": 207, + "expiration": 21, + "expire_index": 228, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "fee_required": 0, + "fee_required_remaining": 0, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "status": "open", + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_index": 74, + "block_time": 1730116110, + "give_asset_info": { + "divisible": true, "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { "divisible": true, - "locked": false + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null }, - "dispense_quantity_normalized": "0.00004000", - "btc_amount_normalized": "0.00004000" + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", - "block_index": 197, - "block_time": 1729876048 + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_time": 1730116110 }, { - "event_index": 560, - "event": "DISPENSER_UPDATE", + "event_index": 658, + "event": "DEBIT", "params": { - "asset": "TESTLOCKDESC", - "dispense_count": 1, - "give_remaining": 6000, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "status": 0, - "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", + "action": "open order", + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "block_index": 207, + "event": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "quantity": 1000, + "tx_index": 74, + "utxo": null, + "utxo_address": null, + "block_time": 1730116110, "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, - "locked": false + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null }, - "give_remaining_normalized": "0.00006000" + "quantity_normalized": "0.00001000" }, - "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", - "block_index": 197, - "block_time": 1729876048 + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_time": 1730116110 }, { - "event_index": 559, + "event_index": 657, + "event": "ORDER_EXPIRATION", + "params": { + "block_index": 207, + "order_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_time": 1730116110 + }, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_time": 1730116110 + }, + { + "event_index": 656, "event": "CREDIT", "params": { - "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "asset": "TESTLOCKDESC", - "block_index": 197, - "calling_function": "dispense", - "event": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", - "quantity": 4000, - "tx_index": 63, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "block_index": 207, + "calling_function": "cancel order", + "event": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "quantity": 5000, + "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1729876048, + "block_time": 1730116110, "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, - "locked": false + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null }, - "quantity_normalized": "0.00004000" + "quantity_normalized": "0.00005000" }, - "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", - "block_index": 197, - "block_time": 1729876048 + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_time": 1730116110 }, { - "event_index": 557, + "event_index": 654, "event": "NEW_TRANSACTION", "params": { - "block_hash": "71c33ed751f0d3896ba4ae8536beb0def514bfca9af11ca3d4a8d90245a6df48", - "block_index": 197, - "block_time": 1729876048, - "btc_amount": 4000, - "data": "0d00", - "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "fee": 0, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", - "tx_index": 63, - "utxos_info": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2:0", + "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_index": 207, + "block_time": 1730116110, + "btc_amount": 0, + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "destination": "", + "fee": 10000, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_index": 74, + "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", "unpacked_data": { - "message_type": "dispense", - "message_type_id": 13, + "message_type": "order", + "message_type_id": 10, "message_data": { - "data": "00" + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "expiration": 21, + "fee_required": 0, + "status": "open", + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000" } }, - "btc_amount_normalized": "0.00004000" + "btc_amount_normalized": "0.00000000" }, - "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", - "block_index": 197, - "block_time": 1729876048 + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_time": 1730116110 } ], - "next_cursor": 557, - "result_count": 189 + "next_cursor": 650, + "result_count": 236 } ``` @@ -4674,7 +4854,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l,bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu,bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88` (str, required) - Comma separated list of addresses to return + cursor (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return @@ -4690,18 +4870,18 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "memo": null, "quantity": 10000, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "status": "valid", - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "tx_index": 69, + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_index": 76, "asset_info": { "divisible": true, "asset_longname": null, @@ -4711,22 +4891,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729876077.4463573 + "timestamp": 1730116127.587877 }, { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "event": "CREDIT", "params": { - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "asset": "XCP", - "block_index": 201, + "block_index": 208, "calling_function": "send", - "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "quantity": 10000, - "tx_index": 69, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -4736,22 +4916,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729876077.4463573 + "timestamp": 1730116127.587877 }, { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "asset": "XCP", - "block_index": 201, - "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "block_index": 208, + "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "quantity": 10000, - "tx_index": 69, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -4761,30 +4941,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729876077.4463573 + "timestamp": 1730116127.587877 }, { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729876077.4463573, + "block_time": 1730116127.587877, "btc_amount": 0, - "data": "02000000000000000100000000000027108041bc73770b22d4ed185c6ac763c7d17e3a3272ce", + "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", "destination": "", "fee": 10000, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "tx_index": 69, - "utxos_info": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515:1", + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_index": 76, + "utxos_info": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "memo": null, "asset_info": { "divisible": true, @@ -4798,7 +4978,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729876077.4463573 + "timestamp": 1730116127.587877 } ], "next_cursor": null, @@ -4811,7 +4991,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -4831,7 +5011,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -4839,14 +5019,29 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "MPMASSET", + "quantity": 99999998960, + "utxo": null, + "utxo_address": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "999.99999000" + }, + { + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -4854,16 +5049,16 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "XCP", - "quantity": 82699937196, + "quantity": 82649941196, "utxo": null, "utxo_address": null, "asset_info": { @@ -4873,10 +5068,10 @@ Returns the balances of an address "locked": true, "issuer": null }, - "quantity_normalized": "826.99937000" + "quantity_normalized": "826.49941000" }, { - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -4884,7 +5079,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -4892,7 +5087,7 @@ Returns the balances of an address } ], "next_cursor": null, - "result_count": 4 + "result_count": 5 } ``` @@ -4901,7 +5096,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -4914,9 +5109,9 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "XCP", - "quantity": 82699937196, + "quantity": 82649941196, "utxo": null, "utxo_address": null, "asset_info": { @@ -4926,7 +5121,7 @@ Returns the balances of an address and asset "locked": true, "issuer": null }, - "quantity_normalized": "826.99937000" + "quantity_normalized": "826.49941000" } ], "next_cursor": null, @@ -4939,7 +5134,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -4988,17 +5183,17 @@ Returns the credits of an address { "result": [ { - "block_index": 192, - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "block_index": 207, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "XCP", - "quantity": 1000, + "quantity": 5000, "calling_function": "cancel order", - "event": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "tx_index": 58, + "event": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729876028, + "block_time": 1730116110, "asset_info": { "divisible": true, "asset_longname": null, @@ -5006,20 +5201,20 @@ Returns the credits of an address "locked": true, "issuer": null }, - "quantity_normalized": "0.00001000" + "quantity_normalized": "0.00005000" }, { - "block_index": 184, - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "block_index": 206, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "XCP", - "quantity": 1000, - "calling_function": "cancel order", - "event": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", - "tx_index": 0, + "quantity": 10, + "calling_function": "mpma send", + "event": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729875934, + "block_time": 1730116106, "asset_info": { "divisible": true, "asset_longname": null, @@ -5027,74 +5222,74 @@ Returns the credits of an address "locked": true, "issuer": null }, - "quantity_normalized": "0.00001000" + "quantity_normalized": "0.00000010" }, { - "block_index": 161, - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "A95428956980101314", - "quantity": 100000000000, - "calling_function": "issuance", - "event": "92b8cfc3dc569089881dfa46bd7aded69c484e727c25ac8c0d98ea48d182e205", - "tx_index": 48, + "block_index": 205, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "quantity": 10, + "calling_function": "mpma send", + "event": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729875920, + "block_time": 1730116102, "asset_info": { - "asset_longname": "A95428959745315388.SUBNUMERIC", - "description": "A subnumeric asset", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, - "locked": false + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null }, - "quantity_normalized": "1000.00000000" + "quantity_normalized": "0.00000010" }, { - "block_index": 158, - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "TESTLOCKDESC", - "quantity": 10000000000, + "block_index": 201, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "MPMASSET", + "quantity": 100000000000, "calling_function": "issuance", - "event": "d679c8a07c7838453357da218c63bf8e7fb7b0efdf968013a632b9f14d728268", - "tx_index": 45, + "event": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_index": 68, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729875898, + "block_time": 1730116077, "asset_info": { "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, - "quantity_normalized": "100.00000000" + "quantity_normalized": "1000.00000000" }, { - "block_index": 152, - "address": null, - "asset": "MYASSETA", - "quantity": 1000000000, - "calling_function": "attach to utxo", - "event": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1", - "tx_index": 39, - "utxo": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1:1", - "utxo_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "block_index": 192, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "quantity": 1000, + "calling_function": "cancel order", + "event": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "tx_index": 58, + "utxo": null, + "utxo_address": null, "confirmed": true, - "block_time": 1729875878, + "block_time": 1730116037, "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, - "locked": false + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null }, - "quantity_normalized": "10.00000000" + "quantity_normalized": "0.00001000" } ], - "next_cursor": 44, - "result_count": 15 + "next_cursor": 59, + "result_count": 19 } ``` @@ -5103,7 +5298,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5141,38 +5336,17 @@ Returns the debits of an address { "result": [ { - "block_index": 196, - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "TESTLOCKDESC", - "quantity": 10000, - "action": "open dispenser", - "event": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", - "tx_index": 62, - "utxo": null, - "utxo_address": null, - "confirmed": true, - "block_time": 1729876044, - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00010000" - }, - { - "block_index": 193, - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "block_index": 207, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", - "tx_index": 59, + "event": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729876032, + "block_time": 1730116110, "asset_info": { "divisible": true, "asset_longname": null, @@ -5183,17 +5357,17 @@ Returns the debits of an address "quantity_normalized": "0.00001000" }, { - "block_index": 191, - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "block_index": 204, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "XCP", - "quantity": 1000, - "action": "open order", - "event": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "tx_index": 57, + "quantity": 10, + "action": "mpma send", + "event": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729876024, + "block_time": 1730116099, "asset_info": { "divisible": true, "asset_longname": null, @@ -5201,20 +5375,41 @@ Returns the debits of an address "locked": true, "issuer": null }, - "quantity_normalized": "0.00001000" + "quantity_normalized": "0.00000010" + }, + { + "block_index": 204, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "MPMASSET", + "quantity": 20, + "action": "mpma send", + "event": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_index": 71, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730116099, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000020" }, { - "block_index": 190, - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "block_index": 203, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "tx_index": 56, + "event": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729876020, + "block_time": 1730116095, "asset_info": { "divisible": true, "asset_longname": null, @@ -5225,29 +5420,29 @@ Returns the debits of an address "quantity_normalized": "0.00000010" }, { - "block_index": 190, - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "MYASSETA", + "block_index": 203, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "tx_index": 56, + "event": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729876020, + "block_time": 1730116095, "asset_info": { "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, "quantity_normalized": "0.00000020" } ], - "next_cursor": 44, - "result_count": 21 + "next_cursor": 61, + "result_count": 28 } ``` @@ -5256,7 +5451,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address of the feed + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5291,7 +5486,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + cursor (str, optional) - The last index of the broadcasts to return + Default: `None` + limit: `5` (int, optional) - The maximum number of broadcasts to return @@ -5310,9 +5505,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "782e54445dc6f9962386534b10d6a8aaf57293a2b3496497dfb06449c9a278c5", + "tx_hash": "261b5785cc07a1f7000bee3be198f5d90393f35ed50ad3c8656eafadf5e468dc", "block_index": 137, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5320,7 +5515,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729875823, + "block_time": 1730115811, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5334,7 +5529,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + cursor (str, optional) - The last index of the burns to return + Default: `None` + limit: `5` (int, optional) - The maximum number of burns to return @@ -5353,14 +5548,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "03c6237993bf4e49be2d4706650f42c8f5e92d5801c440c704be95b788fa3a94", + "tx_hash": "4e51590e06d15e411d148775427a365b6d8b79fe62e2bddbc21caf33d13f1998", "block_index": 112, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1729875719, + "block_time": 1730115719, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5375,7 +5570,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + cursor (str, optional) - The last index of the sends to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sends to return @@ -5393,19 +5588,19 @@ Returns the sends, include Enhanced and MPMA sends, of an address { "result": [ { - "tx_index": 56, - "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "block_index": 190, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "tx_index": 71, + "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "block_index": 204, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, - "memo": null, + "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1729876020, + "block_time": 1730116099, "asset_info": { "divisible": true, "asset_longname": null, @@ -5417,23 +5612,23 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 56, - "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "block_index": 190, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "asset": "MYASSETA", + "tx_index": 71, + "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "block_index": 204, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 1, - "memo": null, + "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1729876020, + "block_time": 1730116099, "asset_info": { "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -5441,23 +5636,23 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 56, - "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "block_index": 190, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "asset": "MYASSETA", + "tx_index": 71, + "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "block_index": 204, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 0, - "memo": null, + "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1729876020, + "block_time": 1730116099, "asset_info": { "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -5465,56 +5660,56 @@ Returns the sends, include Enhanced and MPMA sends, of an address "fee_paid_normalized": "0.00000000" }, { - "tx_index": 39, - "tx_hash": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1", - "block_index": 152, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1:1", - "asset": "MYASSETA", - "quantity": 1000000000, + "tx_index": 70, + "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "block_index": 203, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "quantity": 10, "status": "valid", - "msg_index": 0, - "memo": null, + "msg_index": 2, + "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1729875878, + "block_time": 1730116095, "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", "divisible": true, - "locked": false + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null }, - "quantity_normalized": "10.00000000", + "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 36, - "tx_hash": "20d672e20ae3e08302a625db8ec5e88b336dc5db4c807e88ee72d21b4d556904", - "block_index": 149, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "d04cbc4143bd475740dfb3d02bfdaaa23e40fc357c9e9475d29ecc97b6a5851a:1", - "asset": "MYASSETA", - "quantity": 1000000000, + "tx_index": 70, + "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "block_index": 203, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "asset": "MPMASSET", + "quantity": 10, "status": "valid", - "msg_index": 0, - "memo": null, + "msg_index": 1, + "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1729875866, + "block_time": 1730116095, "asset_info": { "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, - "quantity_normalized": "10.00000000", + "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" } ], - "next_cursor": null, - "result_count": 5 + "next_cursor": 19, + "result_count": 12 } ``` @@ -5523,7 +5718,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qlnehx4acfdgpf3cz4hqtgdgf5wejvwhpr9x5kq` (str, required) - The address to return + + address: `bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz` (str, required) - The address to return + cursor (str, optional) - The last index of the sends to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sends to return @@ -5542,10 +5737,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "d9c867b10bea6f7411fc096f380763fb0a09ee8fc6ca89568b5c11ee0f15063c", + "tx_hash": "16c2e31138126762962006973bfedc1ced24b4fc3d41616f4ea36346add19de5", "block_index": 151, - "source": "03cae60632c738d12c7ac2243ef952bbe11e47c70391ef56c5a8012cf1c8ca86:0", - "destination": "bcrt1qlnehx4acfdgpf3cz4hqtgdgf5wejvwhpr9x5kq", + "source": "ebdd9911ac289e537ed7c712b293decfb0d690c1b2390873d53383b30979e9c8:0", + "destination": "bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5553,11 +5748,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729875873, + "block_time": 1730115873, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -5575,8 +5770,8 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return - + asset: `MYASSETA` (str, required) - The asset to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sends to return @@ -5594,23 +5789,23 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset { "result": [ { - "tx_index": 56, - "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "block_index": 190, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "asset": "MYASSETA", + "tx_index": 71, + "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "block_index": 204, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 1, - "memo": null, + "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1729876020, + "block_time": 1730116099, "asset_info": { "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -5618,23 +5813,23 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 56, - "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "block_index": 190, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "asset": "MYASSETA", + "tx_index": 71, + "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "block_index": 204, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 0, - "memo": null, + "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1729876020, + "block_time": 1730116099, "asset_info": { "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -5642,56 +5837,80 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 39, - "tx_hash": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1", - "block_index": 152, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "52ccdea2e1b30a387fbe11e985eca8000c34c698e3fbc7d42b122d8112f49ca1:1", - "asset": "MYASSETA", - "quantity": 1000000000, + "tx_index": 70, + "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "block_index": 203, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 1, + "memo": "the memo", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116095, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 70, + "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "block_index": 203, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "asset": "MPMASSET", + "quantity": 10, "status": "valid", "msg_index": 0, - "memo": null, + "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1729875878, + "block_time": 1730116095, "asset_info": { "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, - "quantity_normalized": "10.00000000", + "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 36, - "tx_hash": "20d672e20ae3e08302a625db8ec5e88b336dc5db4c807e88ee72d21b4d556904", - "block_index": 149, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "d04cbc4143bd475740dfb3d02bfdaaa23e40fc357c9e9475d29ecc97b6a5851a:1", - "asset": "MYASSETA", - "quantity": 1000000000, + "tx_index": 69, + "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "block_index": 202, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "MPMASSET", + "quantity": 1000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729875866, + "block_time": 1730116081, "asset_info": { "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, - "quantity_normalized": "10.00000000", + "quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" } ], "next_cursor": null, - "result_count": 4 + "result_count": 5 } ``` @@ -5700,8 +5919,8 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qlnehx4acfdgpf3cz4hqtgdgf5wejvwhpr9x5kq` (str, required) - The address to return - + asset: `MYASSETA` (str, required) - The asset to return + + address: `bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz` (str, required) - The address to return + + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sends to return @@ -5717,34 +5936,9 @@ Returns the receives of an address and asset ``` { - "result": [ - { - "tx_index": 38, - "tx_hash": "d9c867b10bea6f7411fc096f380763fb0a09ee8fc6ca89568b5c11ee0f15063c", - "block_index": 151, - "source": "03cae60632c738d12c7ac2243ef952bbe11e47c70391ef56c5a8012cf1c8ca86:0", - "destination": "bcrt1qlnehx4acfdgpf3cz4hqtgdgf5wejvwhpr9x5kq", - "asset": "MYASSETA", - "quantity": 500000000, - "status": "valid", - "msg_index": 0, - "memo": null, - "fee_paid": 0, - "confirmed": true, - "block_time": 1729875873, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "quantity_normalized": "5.00000000", - "fee_paid_normalized": "0.00000000" - } - ], + "result": [], "next_cursor": null, - "result_count": 1 + "result_count": 0 } ``` @@ -5753,7 +5947,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5782,9 +5976,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", + "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5793,7 +5987,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5803,7 +5997,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729875837, + "block_time": 1730115825, "asset_info": { "divisible": true, "asset_longname": null, @@ -5819,9 +6013,9 @@ Returns the dispensers of an address }, { "tx_index": 62, - "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", + "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", "block_index": 197, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -5830,7 +6024,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5840,11 +6034,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729876048, + "block_time": 1730116055, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -5865,7 +6059,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -5878,9 +6072,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", + "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5889,7 +6083,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5899,7 +6093,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729875837, + "block_time": 1730115825, "asset_info": { "divisible": true, "asset_longname": null, @@ -5921,7 +6115,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -5941,19 +6135,19 @@ Returns the dispenses of a source { "tx_index": 63, "dispense_index": 0, - "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", + "tx_hash": "6afc6887d0234625af2de1aad7aa4588fb3aa054b9f1df4e9de8cd43df5794ae", "block_index": 197, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", + "dispenser_tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -5961,7 +6155,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -5976,11 +6170,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729876048, + "block_time": 1730116055, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -5990,19 +6184,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", + "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6010,7 +6204,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6025,7 +6219,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729875837, + "block_time": 1730115825, "asset_info": { "divisible": true, "asset_longname": null, @@ -6039,19 +6233,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", + "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", "block_index": 140, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6059,7 +6253,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6074,7 +6268,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729875832, + "block_time": 1730115821, "asset_info": { "divisible": true, "asset_longname": null, @@ -6096,7 +6290,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - The address to return + + address: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -6116,19 +6310,19 @@ Returns the dispenses of a destination { "tx_index": 63, "dispense_index": 0, - "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", + "tx_hash": "6afc6887d0234625af2de1aad7aa4588fb3aa054b9f1df4e9de8cd43df5794ae", "block_index": 197, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", + "dispenser_tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6136,7 +6330,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6151,11 +6345,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729876048, + "block_time": 1730116055, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -6165,19 +6359,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", + "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6185,7 +6379,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6200,7 +6394,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729875837, + "block_time": 1730115825, "asset_info": { "divisible": true, "asset_longname": null, @@ -6214,19 +6408,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", + "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", "block_index": 140, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6234,7 +6428,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6249,7 +6443,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729875832, + "block_time": 1730115821, "asset_info": { "divisible": true, "asset_longname": null, @@ -6271,7 +6465,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` @@ -6292,19 +6486,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", + "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6312,7 +6506,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6327,7 +6521,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729875837, + "block_time": 1730115825, "asset_info": { "divisible": true, "asset_longname": null, @@ -6341,19 +6535,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", + "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", "block_index": 140, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6361,7 +6555,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6376,7 +6570,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729875832, + "block_time": 1730115821, "asset_info": { "divisible": true, "asset_longname": null, @@ -6398,7 +6592,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - The address to return + + address: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` @@ -6419,19 +6613,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", + "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6439,7 +6633,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6454,7 +6648,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729875837, + "block_time": 1730115825, "asset_info": { "divisible": true, "asset_longname": null, @@ -6468,19 +6662,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", + "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", "block_index": 140, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6488,7 +6682,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6503,7 +6697,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729875832, + "block_time": 1730115821, "asset_info": { "divisible": true, "asset_longname": null, @@ -6525,7 +6719,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l` (str, required) - The address to return + + address: `bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu` (str, required) - The address to return + cursor (str, optional) - The last index of the sweeps to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sweeps to return @@ -6544,16 +6738,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 60, - "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", + "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", "block_index": 194, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729876037, + "block_time": 1730116045, "fee_paid_normalized": "0.00600000" } ], @@ -6567,7 +6761,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6597,16 +6791,44 @@ Returns the issuances of an address ``` { "result": [ + { + "tx_index": 68, + "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "msg_index": 0, + "block_index": 201, + "asset": "MPMASSET", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset B", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730116077, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" + }, { "tx_index": 48, - "tx_hash": "92b8cfc3dc569089881dfa46bd7aded69c484e727c25ac8c0d98ea48d182e205", + "tx_hash": "92d810aacd89aaed4756618250d3df3739516fda551847d01a705a57cf250e1c", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "transfer": false, "callable": false, "call_date": 0, @@ -6621,20 +6843,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729875920, + "block_time": 1730115921, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "be598808b3f486e15e9e7267071c662fd87779a774a700271319f7ac59268ea9", + "tx_hash": "652fa348e445bedc79af7c8da7e9edd116fc6586bb2896968234ade2b0de91c4", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "transfer": false, "callable": false, "call_date": 0, @@ -6649,20 +6871,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729875905, + "block_time": 1730115918, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "d356791a0df1d37ddaf36b4b2a55eccaeda19adbaf8e099acda84fe9f8d43bb2", + "tx_hash": "a9640b7ef998e1287a94371074ed8dd399613638ecb6a9c1a406fd5ce29727e0", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "transfer": false, "callable": false, "call_date": 0, @@ -6677,20 +6899,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729875901, + "block_time": 1730115914, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "d679c8a07c7838453357da218c63bf8e7fb7b0efdf968013a632b9f14d728268", + "tx_hash": "3b8ccc6e7a34c3d602643f13d9ce884ecd2831847f6eab4961146b4a71491ad1", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "transfer": false, "callable": false, "call_date": 0, @@ -6705,41 +6927,13 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729875898, + "block_time": 1730115900, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" - }, - { - "tx_index": 42, - "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", - "msg_index": 0, - "block_index": 155, - "asset": "A95428958968845068", - "quantity": 0, - "divisible": true, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "", - "fee_paid": 0, - "status": "valid", - "asset_longname": "MYASSETA.SUBMYASSETA", - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": true, - "asset_events": "open_fairminter", - "confirmed": true, - "block_time": 1729875887, - "quantity_normalized": "0.00000000", - "fee_paid_normalized": "0.00000000" } ], - "next_cursor": 16, - "result_count": 21 + "next_cursor": 17, + "result_count": 22 } ``` @@ -6748,7 +6942,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The issuer or owner to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6767,12 +6961,29 @@ Returns the valid assets issued or owned by an address ``` { "result": [ + { + "asset": "MPMASSET", + "asset_id": "101158363923", + "asset_longname": null, + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset B", + "first_issuance_block_index": 201, + "last_issuance_block_index": 201, + "confirmed": true, + "first_issuance_block_time": 1730116077, + "last_issuance_block_time": 1730116077, + "supply_normalized": "1000.00000000" + }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false, "supply": 10000000000, @@ -6780,16 +6991,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729875898, - "last_issuance_block_time": 1729875905, + "first_issuance_block_time": 1730115900, + "last_issuance_block_time": 1730115918, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false, "supply": 100000000000, @@ -6797,16 +7008,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729875862, - "last_issuance_block_time": 1729875862, + "first_issuance_block_time": 1730115851, + "last_issuance_block_time": 1730115851, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false, "supply": 40, @@ -6814,16 +7025,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729875814, - "last_issuance_block_time": 1729875818, + "first_issuance_block_time": 1730115804, + "last_issuance_block_time": 1730115808, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false, "supply": 19, @@ -6831,30 +7042,13 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729875789, - "last_issuance_block_time": 1729875810, + "first_issuance_block_time": 1730115789, + "last_issuance_block_time": 1730115800, "supply_normalized": "0.00000019" - }, - { - "asset": "FAIRMINTB", - "asset_id": "1046814266083", - "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 0, - "description": "", - "first_issuance_block_index": 126, - "last_issuance_block_index": 130, - "confirmed": true, - "first_issuance_block_time": 1729875771, - "last_issuance_block_time": 1729875786, - "supply_normalized": "0.00000000" } ], - "next_cursor": 2, - "result_count": 6 + "next_cursor": 3, + "result_count": 7 } ``` @@ -6863,7 +7057,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The issuer to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The issuer to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6882,12 +7076,29 @@ Returns the valid assets issued by an address ``` { "result": [ + { + "asset": "MPMASSET", + "asset_id": "101158363923", + "asset_longname": null, + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset B", + "first_issuance_block_index": 201, + "last_issuance_block_index": 201, + "confirmed": true, + "first_issuance_block_time": 1730116077, + "last_issuance_block_time": 1730116077, + "supply_normalized": "1000.00000000" + }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false, "supply": 10000000000, @@ -6895,16 +7106,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729875898, - "last_issuance_block_time": 1729875905, + "first_issuance_block_time": 1730115900, + "last_issuance_block_time": 1730115918, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false, "supply": 100000000000, @@ -6912,16 +7123,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729875862, - "last_issuance_block_time": 1729875862, + "first_issuance_block_time": 1730115851, + "last_issuance_block_time": 1730115851, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false, "supply": 40, @@ -6929,16 +7140,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729875814, - "last_issuance_block_time": 1729875818, + "first_issuance_block_time": 1730115804, + "last_issuance_block_time": 1730115808, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false, "supply": 19, @@ -6946,30 +7157,13 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729875789, - "last_issuance_block_time": 1729875810, + "first_issuance_block_time": 1730115789, + "last_issuance_block_time": 1730115800, "supply_normalized": "0.00000019" - }, - { - "asset": "FAIRMINTB", - "asset_id": "1046814266083", - "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 0, - "description": "", - "first_issuance_block_index": 126, - "last_issuance_block_index": 130, - "confirmed": true, - "first_issuance_block_time": 1729875771, - "last_issuance_block_time": 1729875786, - "supply_normalized": "0.00000000" } ], - "next_cursor": 2, - "result_count": 6 + "next_cursor": 3, + "result_count": 7 } ``` @@ -6978,7 +7172,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The owner to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6997,12 +7191,29 @@ Returns the valid assets owned by an address ``` { "result": [ + { + "asset": "MPMASSET", + "asset_id": "101158363923", + "asset_longname": null, + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset B", + "first_issuance_block_index": 201, + "last_issuance_block_index": 201, + "confirmed": true, + "first_issuance_block_time": 1730116077, + "last_issuance_block_time": 1730116077, + "supply_normalized": "1000.00000000" + }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false, "supply": 10000000000, @@ -7010,16 +7221,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729875898, - "last_issuance_block_time": 1729875905, + "first_issuance_block_time": 1730115900, + "last_issuance_block_time": 1730115918, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false, "supply": 100000000000, @@ -7027,16 +7238,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729875862, - "last_issuance_block_time": 1729875862, + "first_issuance_block_time": 1730115851, + "last_issuance_block_time": 1730115851, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false, "supply": 40, @@ -7044,16 +7255,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1729875814, - "last_issuance_block_time": 1729875818, + "first_issuance_block_time": 1730115804, + "last_issuance_block_time": 1730115808, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false, "supply": 19, @@ -7061,30 +7272,13 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1729875789, - "last_issuance_block_time": 1729875810, + "first_issuance_block_time": 1730115789, + "last_issuance_block_time": 1730115800, "supply_normalized": "0.00000019" - }, - { - "asset": "FAIRMINTB", - "asset_id": "1046814266083", - "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 0, - "description": "", - "first_issuance_block_index": 126, - "last_issuance_block_index": 130, - "confirmed": true, - "first_issuance_block_time": 1729875771, - "last_issuance_block_time": 1729875786, - "supply_normalized": "0.00000000" } ], - "next_cursor": 2, - "result_count": 6 + "next_cursor": 3, + "result_count": 7 } ``` @@ -7093,145 +7287,36 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return - + cursor: `68` (str, optional) - The last transaction index to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + cursor: `75` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `10` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) + Default: `None` - + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. - + Default: `false` - + show_unconfirmed (bool, optional) - Include results from Mempool. - + Default: `false` - -+ Response 200 (application/json) - - ``` - { - "result": [ - { - "tx_index": 62, - "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", - "block_index": 196, - "block_hash": "6e3cb216f3145455efc27a2f6f579c4a01305a02305f48759144dabb73b27da3", - "block_time": 1729876044, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", - "supported": true, - "utxos_info": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f:1", - "confirmed": true, - "unpacked_data": { - "message_type": "dispenser", - "message_type_id": 12, - "message_data": { - "asset": "TESTLOCKDESC", - "give_quantity": 1, - "escrow_quantity": 10000, - "mainchainrate": 1, - "dispenser_status": 0, - "action_address": null, - "oracle_address": null, - "status": "valid", - "asset_info": { - "asset_longname": null, - "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "give_quantity_normalized": "0.00000001", - "escrow_quantity_normalized": "0.00010000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 59, - "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", - "block_index": 193, - "block_hash": "45f185041d0ca45bc37935f64eb5d323bdbf3867d26d00c4fe1ad1525a9812b6", - "block_time": 1729876032, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", - "supported": true, - "utxos_info": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff:1", - "confirmed": true, - "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } - }, - "btc_amount_normalized": "0.00000000" - }, - { - "tx_index": 58, - "tx_hash": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f", - "block_index": 192, - "block_hash": "6be48c382c9942ca735bebd63f6fd172f2370046494e2b051ab2230e49f7c8c4", - "block_time": 1729876028, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": null, - "btc_amount": 0, - "fee": 10000, - "data": "46f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "supported": true, - "utxos_info": "6e5994a49b95a9d34b6f4e68f6eb65886caabed3ac7e73da743efacf6f95c15f:1", - "confirmed": true, - "unpacked_data": { - "message_type": "cancel", - "message_type_id": 70, - "message_data": { - "offer_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "status": "valid" - } - }, - "btc_amount_normalized": "0.00000000" - }, + + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + + Default: `false` + + show_unconfirmed (bool, optional) - Include results from Mempool. + + Default: `false` + ++ Response 200 (application/json) + + ``` + { + "result": [ { - "tx_index": 57, - "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "block_index": 191, - "block_hash": "4003b7caf894823fd81bb6e27f945a17aad4e8674493d4cb6aeceb6233323e87", - "block_time": 1729876024, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx_index": 74, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_time": 1730116110, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703:1", + "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7266,33 +7351,33 @@ Returns the transactions of an address "btc_amount_normalized": "0.00000000" }, { - "tx_index": 56, - "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "block_index": 190, - "block_hash": "0c22d5f5069d1e48684934297db7b24cd14f263b972adee4e059a1b97f242b5a", - "block_time": 1729876020, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx_index": 71, + "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "block_index": 204, + "block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", + "block_time": 1730116099, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba8041bc73770b22d4ed185c6ac763c7d17e3a3272ce80ff7bfd93f2bf72a1088e1cdf07174f46f787c026400000060acdc5db9400000000000000290000000000000005200000000000000020000000000000001400", + "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65:0", + "utxos_info": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { - "asset": "MYASSETA", - "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "asset": "MPMASSET", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "quantity": 10, - "memo": null, - "memo_is_hex": null, + "memo": "memo2", + "memo_is_hex": false, "asset_info": { "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -7300,10 +7385,62 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "quantity": 10, - "memo": null, - "memo_is_hex": null, + "memo": "memo1", + "memo_is_hex": false, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 70, + "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "block_index": 203, + "block_hash": "37274251a093028e8065cbc9af85901d3961a9e5e04f4e726b13a0506a915652", + "block_time": 1730116095, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "supported": true, + "utxos_info": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354:0", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, "asset_info": { "divisible": true, "asset_longname": null, @@ -7316,10 +7453,79 @@ Returns the transactions of an address ] }, "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 69, + "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "block_index": 202, + "block_hash": "13a7856636590644ca049ed5074ccb96a6b9694cf0a3187ec4d3b50111b76353", + "block_time": 1730116081, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "02000000178d82231300000000000003e880a500a0204b6c11d32ab0bd14b78f9db630019898", + "supported": true, + "utxos_info": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02:1", + "confirmed": true, + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "MPMASSET", + "quantity": 1000, + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "memo": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00001000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 68, + "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "block_index": 201, + "block_hash": "31229cfb58723faf819c8772e47a52c5cc4c531fdef4370ba12b94679b292486", + "block_time": 1730116077, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", + "supported": true, + "utxos_info": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc:1", + "confirmed": true, + "unpacked_data": { + "message_type": "issuance", + "message_type_id": 22, + "message_data": { + "asset_id": 101158363923, + "asset": "MPMASSET", + "subasset_longname": null, + "quantity": 100000000000, + "divisible": true, + "lock": false, + "reset": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset B", + "status": "valid", + "quantity_normalized": "1000.00000000" + } + }, + "btc_amount_normalized": "0.00000000" } ], - "next_cursor": 51, - "result_count": 26 + "next_cursor": 62, + "result_count": 31 } ``` @@ -7328,7 +7534,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + cursor (str, optional) - The last index of the assets to return + Default: `None` + limit: `5` (int, optional) - The maximum number of assets to return @@ -7347,20 +7553,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", + "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", "block_index": 154, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729875884, + "block_time": 1730115885, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -7385,7 +7591,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7414,9 +7620,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", + "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", "block_index": 184, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7431,7 +7637,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729875934, + "block_time": 1730115936, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7457,9 +7663,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "block_index": 188, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "block_index": 207, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7472,9 +7678,9 @@ Returns the orders of an address "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "expired", "confirmed": true, - "block_time": 1729876012, + "block_time": 1730116110, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7500,9 +7706,9 @@ Returns the orders of an address }, { "tx_index": 57, - "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", + "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", "block_index": 192, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7517,7 +7723,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729876028, + "block_time": 1730116037, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7543,9 +7749,9 @@ Returns the orders of an address }, { "tx_index": 59, - "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", + "tx_hash": "9d6f69deab8decbb02e247c2a2e19611f0931fb91c9bd48d5dad2bfae5328ffe", "block_index": 193, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7560,7 +7766,50 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729876032, + "block_time": 1730116041, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 74, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 228, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "block_time": 1730116110, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7586,7 +7835,7 @@ Returns the orders of an address } ], "next_cursor": null, - "result_count": 4 + "result_count": 5 } ``` @@ -7595,7 +7844,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The source of the fairminter to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7620,10 +7869,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", + "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", "tx_index": 42, "block_index": 155, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7648,7 +7897,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729875887, + "block_time": 1730115889, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7657,10 +7906,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", + "tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", "tx_index": 22, "block_index": 135, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7685,7 +7934,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729875814, + "block_time": 1730115804, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7697,10 +7946,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", + "tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", "tx_index": 18, "block_index": 131, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7725,7 +7974,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729875789, + "block_time": 1730115789, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7737,10 +7986,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "5bbb7d89d98e4d3cea2e5bcb4f6438a19666ff81c76b02e70f1508276c81fcfe", + "tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", "tx_index": 14, "block_index": 130, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -7765,7 +8014,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729875786, + "block_time": 1730115785, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7777,10 +8026,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", + "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -7805,7 +8054,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729875767, + "block_time": 1730115766, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -7827,7 +8076,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - The address of the mints to return + + address: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -7845,22 +8094,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", + "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", "tx_index": 23, "block_index": 136, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729875818, + "block_time": 1730115808, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -7869,22 +8118,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "87884ac53a4aacf74156f175cb165810d1814f1f8055d20c774db5c03037d974", + "tx_hash": "5da24fdc5b0f42414404df0110e4a3cd79789b5706be7b301d976f9eef623346", "tx_index": 21, "block_index": 134, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729875810, + "block_time": 1730115800, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -7893,22 +8142,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "cac3154c795618e62f7795292f95404673f9cf0c3ec5d3b8569e7e54e56041b5", + "tx_hash": "98840296af69b519b38aaa9663baa393849683e67da07ce11e4aa21df9259e2f", "tx_index": 20, "block_index": 133, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729875796, + "block_time": 1730115797, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -7917,22 +8166,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9938a552fcf5b52aac1996f6ef4c65ef99ff68e50830c40666c0ae6a2a3a0ea8", + "tx_hash": "e26754ee3f011a743d3bd45d712d1fe4056c4b4f657f391b5d06c33191fe01d3", "tx_index": 19, "block_index": 132, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729875793, + "block_time": 1730115793, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -7941,22 +8190,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "35e610d6b6a17ffa96a45a34067de3837f4816e5de97bbaa1a4ba6c0e62aabd1", + "tx_hash": "def4759ea9104304f15b30965786c66cdc8cfb7a6029cdc08a336d6306c065ab", "tx_index": 15, "block_index": 127, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "5bbb7d89d98e4d3cea2e5bcb4f6438a19666ff81c76b02e70f1508276c81fcfe", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729875776, + "block_time": 1730115774, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -7965,22 +8214,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", + "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", "tx_index": 11, "block_index": 123, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729875760, + "block_time": 1730115757, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -7999,7 +8248,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - The address of the mints to return + + address: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address of the mints to return + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -8018,22 +8267,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", + "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", "tx_index": 11, "block_index": 123, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729875760, + "block_time": 1730115757, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -8075,8 +8324,8 @@ By default the default value of the `encoding` parameter detailed above is `auto Composes a transaction to issue a bet against a feed. + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will make the bet - + feed_address: `bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will make the bet + + feed_address: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address that hosts the feed to be bet on + bet_type: `2` (int, required) - Bet 0 for Bullish CFD (deprecated), 1 for Bearish CFD (deprecated), 2 for Equal, 3 for NotEqual + deadline: `3000000000` (int, required) - The time at which the bet should be decided/settled, in Unix time (seconds since epoch) + wager_quantity: `1000` (int, required) - The quantities of XCP to wager (in satoshis, hence integer) @@ -8144,7 +8393,7 @@ Composes a transaction to issue a bet against a feed. Composes a transaction to broadcast textual and numerical information to the network. + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + timestamp: `4003903985` (int, required) - The timestamp of the broadcast, in Unix time + value: `100` (float, required) - Numerical value of the broadcast + fee_fraction: `0.05` (float, required) - How much of every bet on this feed should go to its operator; a fraction of 1, (i.e. 0.05 is five percent) @@ -8200,7 +8449,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8210,9 +8459,9 @@ Composes a transaction to broadcast textual and numerical information to the net "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985110, - "btc_fee": 14890, - "rawtransaction": "02000000000101ba9f4524168be2765a45cc71adb2b22281788fd6a477ebf760ed1f395345bbcb00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff0200000000000000002b6a2924f04cf861aaab433b87d991283f4abe647b7b8e6bdddce649bd29af4473b032afe6299df3411027f4d6b7052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", + "btc_change": 4999985142, + "btc_fee": 14858, + "rawtransaction": "02000000000101d3e144ab2332715d931607f1ecb24833c4b9a45585fe12f43332f7c73a129bf60000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff0200000000000000002b6a291d58000c120f53e521b5b05fb0e87895087ccf3efe597674c5aa3f7ccf38911c75cc5b8d24700ddac0f6b7052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8234,8 +8483,8 @@ Composes a transaction to broadcast textual and numerical information to the net Composes a transaction to pay for a BTC order match. + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will be sending the payment - + order_match_id: `d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf` (str, required) - The ID of the order match to pay for + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be sending the payment + + order_match_id: `a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614` (str, required) - The ID of the order match to pay for + encoding (str, optional) - The encoding method to use + Default: `auto` + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis) @@ -8287,23 +8536,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf" + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614" }, "name": "btcpay", - "data": "434e5452505254590bd520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c19ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", + "data": "434e5452505254590ba70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b50903810560268783a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", "btc_in": 5000000000, "btc_out": 3000, - "btc_change": 4999978049, - "btc_fee": 18951, - "rawtransaction": "02000000000101be150b833f3b3d41e45aa03d1956746c24462d6ee5fa356310ae29f0fac3fdab00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff03b80b000000000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74800000000000000004b6a49c822823fcbefad04994d17ebc7cd5ac8aecd0288a5df471749e7634949cae075fc3c11394264e28ade6e0acb72a1cd42aa03094bf3bb3a54bdafd74d88414cb76cc29609c85e65b0ef419c052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", + "btc_change": 4999978090, + "btc_fee": 18910, + "rawtransaction": "02000000000101bd9316eab33fabb206193f04c3c50ab13a8abd6216de19a6c0961f00d3d615420000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff03b80b00000000000016001488638b12211ad2887d7013cdfa98b822eb7f220a00000000000000004b6a49f046fc5a1959206e926f59e82227fd923cabe7e968af1baad5abb587a412e4c8df215b2a2d9a5b3503ce52fdb5848339aa656b6f74c228373ce1809d813ad9cf4c41d5f20f2739395c6a9c052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", + "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", "status": "valid" } } @@ -8316,7 +8565,7 @@ Composes a transaction to pay for a BTC order match. Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, possible between blocks 278310 and 283810; on testnet it is still available). + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address with the BTC to burn + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address with the BTC to burn + quantity: `1000` (int, required) - The quantities of BTC to burn (in satoshis, hence integer) (1 BTC maximum burn per address) + overburn (bool, optional) - Whether to allow the burn to exceed 1 BTC for the address + Default: `False` @@ -8371,7 +8620,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "quantity": 1000, "overburn": false }, @@ -8379,9 +8628,9 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "data": null, "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999985156, - "btc_fee": 13844, - "rawtransaction": "0200000000010137ec33628fcdb1a9c50007c3a89a0e6bae5706b02951f6125718f6b4529e541600000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac04b8052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000" + "btc_change": 4999985186, + "btc_fee": 13814, + "rawtransaction": "02000000000101abf65b20ebfd1237da0f36f872c79db358b4cfbf1297b2ed7848fce5a7d985270000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac22b8052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000" } } ``` @@ -8391,8 +8640,8 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss Composes a transaction to cancel an open order or bet. + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8` (str, required) - The hash of the order/bet to be cancelled + encoding (str, optional) - The encoding method to use + Default: `auto` + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis) @@ -8444,21 +8693,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "offer_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff" + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "offer_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8" }, "name": "cancel", - "data": "434e5452505254594665c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", + "data": "434e545250525459465debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985110, - "btc_fee": 14890, - "rawtransaction": "020000000001017586b86bc163821cd6b659640efd899c63173e2317436686e63e8e3368fa8ec800000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff0200000000000000002b6a298361e9b61b93c70680ebfc9f5db9ec6456157f10da5722c9c577426d29610c2a694f715838bea74b93d6b7052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", + "btc_change": 4999985142, + "btc_fee": 14858, + "rawtransaction": "02000000000101ea75efdc042b5696d84822dc36cd87c7fd9a0b28512b49461245667b61127bfa0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff0200000000000000002b6a29a3e663a2f9bd00bb0c85b9c374325d5573e86694ddb726062f8c530213552021c46ead41917b6938b4f6b7052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", + "offer_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", "status": "valid" } } @@ -8471,7 +8720,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be sending the asset to be destroyed + asset: `XCP` (str, required) - The asset to be destroyed + quantity: `1000` (int, required) - The quantity of the asset to be destroyed (in satoshis, hence integer) + tag: `"bugs!"` (str, required) - A tag for the destruction @@ -8526,7 +8775,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8543,9 +8792,9 @@ Composes a transaction to destroy a quantity of an asset. "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985664, - "btc_fee": 14336, - "rawtransaction": "020000000001012e0e50c19f5074eea1d8c17cd6879adcb051c25abbe3e1a9328f06faf229116000000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000226a20c96ff42fd9bc9aecb9251b0a6417472b0690430266ca7cfe494b636da1f2197500ba052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", + "btc_change": 4999985695, + "btc_fee": 14305, + "rawtransaction": "02000000000101a452400ddde4da92b3635c69a88b5cd73e6f5351b1035de6c8acb68e8350e3540000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000226a204361a4695fd456d2d053a108447b7a62d60471b989b415d7824044331a550ada1fba052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8565,7 +8814,7 @@ Composes a transaction to destroy a quantity of an asset. Composes a transaction to opens or closes a dispenser for a given asset at a given rate of main chain asset (BTC). Escrowed quantity on open must be equal or greater than give_quantity. It is suggested that you escrow multiples of give_quantity to ease dispenser operation. + Parameters - + address: `bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + asset: `XCP` (str, required) - The asset or subasset to dispense + give_quantity: `1000` (int, required) - The quantity of the asset to dispense (in satoshis, hence integer) + escrow_quantity: `1000` (int, required) - The quantity of the asset to reserve for this dispenser (in satoshis, hence integer) @@ -8626,7 +8875,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8648,9 +8897,9 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", "btc_in": 4949934500, "btc_out": 0, - "btc_change": 4949919549, - "btc_fee": 14951, - "rawtransaction": "02000000000101e3f61985ad574271f36d9aa38a689b45a90eb31282c733525079b9be999e2f9c010000001600140e46f99c97e82da0b0b17c2eaf78f51070e611b4ffffffff0200000000000000002c6a2a4277113ca832cfadb6d4e12145ec87337a9894e147e80622109d08e3ed56eaef9652bd96b7ead91554df3dc70927010000001600140e46f99c97e82da0b0b17c2eaf78f51070e611b402000000000000", + "btc_change": 4949919581, + "btc_fee": 14919, + "rawtransaction": "020000000001016182673802383c3dfbeed7dd1749f3b498f8e584fcfd406a5aa17b002ee7904b01000000160014fbcc5565cd7f2a35258ef40d6637506f0ce99fdbffffffff0200000000000000002c6a2a8c143ec5258db11ef95b2578f1c394ce761046911caf5c5472be4f258d5a148a45eb9d2e0476dbc475545dc7092701000000160014fbcc5565cd7f2a35258ef40d6637506f0ce99fdb02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -8676,7 +8925,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv Composes a transaction to issue a dividend to holders of a given asset. + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + quantity_per_unit: `1` (int, required) - The amount of dividend_asset rewarded (in satoshis, hence integer) + asset: `FAIRMINTA` (str, required) - The asset or subasset that the dividends are being rewarded on + dividend_asset: `XCP` (str, required) - The asset or subasset that the dividends are paid in @@ -8731,14 +8980,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -8755,9 +9004,9 @@ Composes a transaction to issue a dividend to holders of a given asset. "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985602, - "btc_fee": 14398, - "rawtransaction": "0200000000010117d0c94606515db5d229f7068ab8f8b313ed418d31799d5245c932e70fe2a39700000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000236a217c09d61d451fcc78daa6dfaf67020c301b75fe683edb01d4f2fd53209555b2be5bc2b9052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", + "btc_change": 4999985634, + "btc_fee": 14366, + "rawtransaction": "02000000000101d735a5a97da67446f40bb375c7bacff7ae44897f7b357a5bcef9d70280dfc6110000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000236a21a03fcd9fc46bcb4f3bf7ff58bc4a0eb125a43d3a551f7e1ceb32b36b7143d5bd87e2b9052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -8778,10 +9027,10 @@ Composes a transaction to issue a dividend to holders of a given asset. Composes a transaction to Issue a new asset, issue more of an existing asset, lock an asset, reset existing supply, or transfer the ownership of an asset. + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be issuing or transfering the asset + asset: `XCPTEST` (str, required) - The assets to issue or transfer. This can also be a subasset longname for new subasset issuances + quantity: `1000` (int, required) - The quantity of the asset to issue (set to 0 if transferring an asset) (in satoshis, hence integer) - + transfer_destination: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, optional) - The address to receive the asset + Default: `None` + divisible (bool, optional) - Whether this asset is divisible or not (if a transfer, this value must match the value specified when the asset was originally issued) + Default: `True` @@ -8842,10 +9091,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "transfer_destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "lock": false, "reset": false, @@ -8856,9 +9105,9 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999982964, - "btc_fee": 16490, - "rawtransaction": "02000000000101327c00ce43ede25debe22ed780dac3ba76d392a9ba648307f515b626983b9be800000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff032202000000000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff7480000000000000000236a21e04797aade082d95379ff0cfde5da76db1a9aca46565564ebd5c7cc3b9711a964274af052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", + "btc_change": 4999983000, + "btc_fee": 16454, + "rawtransaction": "020000000001013eb5a26d5fe5337ccfca78b68a43f9933a7ad20e3127554d960f6ff708c487d60000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff03220200000000000016001488638b12211ad2887d7013cdfa98b822eb7f220a0000000000000000236a21d1ca33cf4433fd66e117d12625616dc906928c7356b7202b8c38c6ece5cbbbf61a98af052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -8882,18 +9131,22 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo } ``` -### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memo}{&memo_is_hex}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memos}{&memos_are_hex}{&memo}{&memo_is_hex}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] Composes a transaction to send multiple payments to multiple addresses. + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + assets: `XCP,MYASSETA` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva,bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - comma-separated list of addresses to send to + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send + + destinations: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr,bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) - + memo: `"Hello, world!"` (str, optional) - The Memo associated with this transaction + + memos (list, optional) - One `memos` argument by send, if any + + Default: `None` + + memos_are_hex (bool, optional) - Whether the memos are in hexadecimal format + + Default: `None` + + memo (str, optional) - The Memo associated with this transaction, used by default for all sends if no `memos` are specified + Default: `None` - + memo_is_hex: `False` (bool, optional) - Whether the memo field is a hexadecimal string + + memo_is_hex (bool, optional) - Whether the memo field is a hexadecimal string + Default: `False` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -8946,46 +9199,46 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", 1 ], [ - "MYASSETA", - "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "MPMASSET", + "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", 2 ] ], - "memo": "\"Hello, world!\"", + "memo": null, "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280aa5f1fcf04bccbd58dfaa75c74514113e56ff74880e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba8f2248656c6c6f2c20776f726c6421228000000c159b8bb72000000000000000480000000000000008000000000000000200", + "data": "434e5452505254590300028088638b12211ad2887d7013cdfa98b822eb7f220a80a500a0204b6c11d32ab0bd14b78f9db63001989840000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, - "btc_change": 19999942870, - "btc_fee": 55130, - "rawtransaction": "020000000001040dea2852b03c6db35c901546ffbbaebe82b32effb00adc6c763c9323ca41e24e00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffffd57a84ba84f216251a91df650d6b7116bf3b34922a157d82884f3d5c88678a0500000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff377647a5bd5470af2f29be5e89fbfe894378660e3eb587b09f3ce528215c9c0b00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff1f89794624b6dd4e5cdb4d3a46b6f08abc0f8c40cad8f8f03d83cb294ef2b5fe00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff03e8030000000000006951210359b1740fd686fce25029f048f4d762e7b9cfe85d1af814e08e031b6682763dcd21020336c3c2524555b015219669c830c4f6d6ae1751359a1b08bdc43930dd723abf210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51553aee8030000000000006951210356b1740fd686fce2500a8725061159d9544b5496c36075cc65574a27919352402103f47e0b2a91f4f85b701ef026d3692fdd02755da353c8a1879f8c5c5cb11d169d210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51553aed6e816a804000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000002000002000002000000000000", + "btc_change": 19999942989, + "btc_fee": 55011, + "rawtransaction": "02000000000104c60cba2e8009b89a27f98afd970336d060fb80cc1169f8a9f26dd7ac5b8a7dfd0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff5cb37ed728a1783f00f380c510ff2108bf6796927d3302395641738997881b710000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff9cc56b3a54bde5e0b7fb83800bc84036f16ee99aeac4491de704b7f8f794c1a10000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff0f4711f98d37387476a466b7bf6964c28d870c7e940e1b02fb5795820960299e0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff03e8030000000000006951210338a7e3de6a76681a888a478f9c669e7a9f638cd384e2edf836ebd2f34158440e2103693a6379fc9675f11c9f519d3a54269240404cbe3f914fe22bb420c10df54ded2103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553aee8030000000000006951210327a7e3de6a76681a8859478d1ceefdf18d6696010c9f9debfb154a4b63b33b5221034b30e2dcfc3655ba708e82b78ae93225cfddfa8e3e09d7a22bb425226d7d89f12103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553ae4de916a80400000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { - "asset": "MYASSETA", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "asset": "MPMASSET", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "quantity": 2, - "memo": "\"Hello, world!\"", - "memo_is_hex": false + "memo": null, + "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "quantity": 1, - "memo": "\"Hello, world!\"", - "memo_is_hex": false + "memo": null, + "memo_is_hex": null } ] } @@ -8998,7 +9251,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + give_asset: `XCP` (str, required) - The asset that will be given in the trade + give_quantity: `1000` (int, required) - The quantity of the asset that will be given (in satoshis, hence integer) + get_asset: `FAIRMINTA` (str, required) - The asset that will be received in the trade @@ -9056,7 +9309,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9073,7 +9326,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -9085,9 +9338,9 @@ Composes a transaction to place an order on the distributed exchange. "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999984495, - "btc_fee": 15505, - "rawtransaction": "02000000000101ee39364187a27e574280596410b70f4847254d3f3aff821fcd8a0f9829133b3100000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000356a3373690747fb312f865b7593ea2d05ea3fe290d77e97b1bc967973240e6d379222a28d90fd71664cd13dc8f4773ffbfd91df14f06fb5052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", + "btc_change": 4999984528, + "btc_fee": 15472, + "rawtransaction": "02000000000101cf575d97277fbc0b3f884b49e7c0b8287ba8e0b4e5f4dd7e2d6e426502f4452c0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000356a334de8b15032fed03ecbb040c19ca15f53586192377670b513f6408556e6dd4e76a713c1550120fe9b40cb4140fa22d0446a03d390b5052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9113,8 +9366,8 @@ Composes a transaction to place an order on the distributed exchange. Composes a transaction to send a quantity of an asset to another address. + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - The address that will be receiving the asset + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address that will be receiving the asset + asset: `XCP` (str, required) - The asset or subasset to send + quantity: `1000` (int, required) - The quantity of the asset to send (in satoshis, hence integer) + memo (str, optional) - The Memo associated with this transaction @@ -9174,8 +9427,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9191,19 +9444,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba", + "data": "434e54525052545902000000000000000100000000000003e880a500a0204b6c11d32ab0bd14b78f9db630019898", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999984803, - "btc_fee": 15197, - "rawtransaction": "020000000001015f572b10e82ae4e7245d3788318ec4699543a4e925fc2232a2de2c9271c49c8100000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000306a2ee796c2a399c14ecdd3bf731ace596700d4468848a6fdb759d1f64c8cfdb93a279ea80c4a861fba8a3e3f8c180e25a3b6052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", + "btc_change": 4999984835, + "btc_fee": 15165, + "rawtransaction": "020000000001019ed53bd0e7ff6981feb1b27c9556b9db3413d2a67ea7b8f2616a14fa73ed02d90000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000306a2ebe40c06091cfd95dd61d68e73ae5e96d8e96410698a8db380780e7d7268fe30fd5756bc9e8c2e4f3649989e08364c3b6052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "memo": null, "quantity_normalized": "0.00001000" } @@ -9217,8 +9470,8 @@ Composes a transaction to send a quantity of an asset to another address. Composes a transaction to Sends all assets and/or transfer ownerships to a destination address. + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will be sending - + destination: `bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be sending + + destination: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address to receive the assets and/or ownerships + flags: `7` (int, required) - An OR mask of flags indicating how the sweep should be processed. Possible flags are: - FLAG_BALANCES: (integer) 1, specifies that all balances should be transferred. - FLAG_OWNERSHIP: (integer) 2, specifies that all ownerships should be transferred. - FLAG_BINARY_MEMO: (integer) 4, specifies that the memo is in binary/hex form. + memo: `FFFF` (str, required) - The Memo associated with this transaction in hex format + encoding (str, optional) - The encoding method to use @@ -9272,23 +9525,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba07ffff", + "data": "434e5452505254590480a500a0204b6c11d32ab0bd14b78f9db63001989807ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985602, - "btc_fee": 14398, - "rawtransaction": "02000000000101f01cf8227b24abff6c956382c4b2ebbeba4380b6f6290d16d7f3d1888da0998b00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000236a21b8ac5ec1c7c141350f22bbc7877bfd56e15fe9314cfecc34c55bc586ce69dbc72ac2b9052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", + "btc_change": 4999985634, + "btc_fee": 14366, + "rawtransaction": "02000000000101c7c9854253dc41c3edd654589b82ee42a8a8d6a0c5a578062b89c4b876f2e14d0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000236a219323e5b3f1b8081e81abc14abc27d4b631b6398c37296f72874455fe3f7372918ae2b9052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "flags": 7, "memo": "ffff" } @@ -9302,8 +9555,8 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti Composes a transaction to send BTC to a dispenser. + Parameters - + address: `bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88` (str, required) - The dispenser that will be receiving the asset + quantity: `1000` (int, required) - The quantity of BTC to send (in satoshis, hence integer) + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9356,17 +9609,17 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "quantity": 1000 }, "name": "dispense", "data": "434e5452505254590d00", - "btc_in": 4949854000, + "btc_in": 4949828000, "btc_out": 1000, - "btc_change": 4949837926, - "btc_fee": 15074, - "rawtransaction": "02000000000101f2919794fe633be2cb9c213e5644ca18b8d5064da3a1134edd8704d776a21d1102000000160014e8c3b1adeb653f6e4f1b59eb2bd4db48f26652baffffffff03e803000000000000160014ff7bfd93f2bf72a1088e1cdf07174f46f787c02600000000000000000c6a0a1e1e622ba185e90744bf6688082701000000160014e8c3b1adeb653f6e4f1b59eb2bd4db48f26652ba02000000000000", + "btc_change": 4949811958, + "btc_fee": 15042, + "rawtransaction": "0200000000010157826d7417826b89717d2b03e0b6b7151d49cb2661b13212aa8064fe0194a77a03000000160014a500a0204b6c11d32ab0bd14b78f9db630019898ffffffff03e8030000000000001600142ae165e7b04a97caa52d91a46d89891d704370ff00000000000000000c6a0a24ebcd38485c9b2a0013f622082701000000160014a500a0204b6c11d32ab0bd14b78f9db63001989802000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9383,7 +9636,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will be issuing the asset + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be issuing the asset + asset: `MYASSET` (str, required) - The asset to issue + asset_parent (str, optional) - The parent asset of the asset to issue + Default: `` @@ -9468,7 +9721,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9497,9 +9750,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999984741, - "btc_fee": 15259, - "rawtransaction": "020000000001012a035812009894c8e7773b1d3a74269e92d17e91c4061aed16f13ca471a66f0500000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000316a2f04837b856423fea56cbc0aaccecd1342cc3751ec4c51b50e00cc5fc3939103c81dfe27dede267cf8fad823f319dd7a65b6052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", + "btc_change": 4999984774, + "btc_fee": 15226, + "rawtransaction": "02000000000101c79e70d7c5ad9665ae957326d1dc832f162bc8f91fc08508a7aefd8decaffd230000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000316a2fdfa88a71933c8839247123e96b0a8bdb6b9d82d36ae6ade916ef886e41d9c0ec79824a742e64b47c3d995a7267e06986b6052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9538,7 +9791,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. Composes a transaction to mint a quantity of an asset using the FairMinter protocol. + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address that will be minting the asset + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be minting the asset + asset: `FAIRMINTC` (str, required) - The asset to mint + quantity: `1` (int, optional) - The quantity of the asset to mint (in satoshis, hence integer) + Default: `0` @@ -9593,13 +9846,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -9609,9 +9862,9 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "data": "434e5452505254595b464149524d494e54437c31", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986402, - "btc_fee": 13598, - "rawtransaction": "02000000000101de0c787ae9cc816f11a997c834c15422b17f83ce29db74bc454956f6c4de267800000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff020000000000000000166a1474ca8fac46f44178e095034e94a2d1b7d50beb40e2bc052a01000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000000000000", + "btc_change": 4999986432, + "btc_fee": 13568, + "rawtransaction": "020000000001017c64134589fec8915924dac30e82978fbd8537ab6caac5007618953859f6d0be0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000166a14be1d5b0358bbdd865615c155e83dfbe0f763564000bd052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -9630,10 +9883,10 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address from which the assets are attached + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) - + destination: `6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f:1` (str, optional) - The utxo to attach the assets to + + destination: `5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9686,8 +9939,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f:1", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9700,12 +9953,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171346630336c6e6379686e39617472303635617738673532707a306a6b6c6136673435707a76617c366537343964363866663964393938633138313733363561363035373633323431363931633532383362363137366366636563303235396262306565326336663a317c5843507c31303030", + "data": "434e54525052545964626372743171337033636b79337072746667736c74737a30786c347839637974346837677332706674647a727c356465626162326539366432356635663532613662653066626366363533613038623338333239386236663135336332306237356164653432626135626261383a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, - "btc_change": 29999914612, - "btc_fee": 82388, - "rawtransaction": "0200000000010617008f4f372adb06a763d40a362f96e2e2740a0555de276dd5c8a1ff0650f2fa00000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748fffffffff528117da56199d9812d06e4ef27ed43620b916671babdd567a37a807614114700000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff76667f1d58f0b61461070d53d8bb7a55789c81b0a42ce2cad54bfe5d07b9832200000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff3a6e9e132bbe15f2b73d289f8abccc38b2894bfcb946091ed09d869a042b328200000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff54ee4eeab8d8a9eb4b8674287e88971334d615f78698f49de365af94e34114b600000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff0f821efaabb6e0e6971b5914b00bb4a770e9c495e67ed297762d8752328f8b0800000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff748ffffffff04e80300000000000069512102a750859296f9e5fa5855687c9443f3876369e4961a2d7e818363d1f300ab7b852103ed73bb9e8a0b92b1f28c4b0a44cc55a7eb92b65b6df3f77aad1d54c0a158297d210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51553aee80300000000000069512102a750859296f9e5fa58096c79df53fbcf6f6ce59d47742ecede6cdea241ee7d182103e874eed8845596e0b7c443534d9605a6bac5e54872e6a634ae410196a8597acb210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51553aee803000000000000695121028d50859296f9e5fa58036929800df38a0f4c84d947732dc8eb0de89274d94bb72103db46dae9b26ca78382f67b602fa034918ca6832b178596069b7863f4983c1f98210211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f51553ae745e22fc06000000160014aa5f1fcf04bccbd58dfaa75c74514113e56ff74802000002000002000002000002000002000000000000", + "btc_change": 29999914790, + "btc_fee": 82210, + "rawtransaction": "02000000000106ccc2aca722ded998449d59d7ed65df1ffc201fca9873209432c035e327dbbf980000000016001488638b12211ad2887d7013cdfa98b822eb7f220afffffffff14198fceb8a1347a752edee8a1477d3779c0bd7b03fc4bed4512f0223b17ee50000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff8c2cefa9f81e31d2f5260a72f968a6a38923fad3cdfd2ce15b00e722f5ea9d1a0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffffbee94a0365aaaba05f7f1e7cc8da517c430b3df96dc44a2e5148f46d0fc8c3920000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff1816fcbb08b784d42ce93b687fdc9248c0bb2c6319f18521b506ad7d4a98fd480000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff052b2b309bd984a5d88ce3c9f0e82c5513cfb0117d7fba088957e06d5136eb460000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff04e8030000000000006951210374b391adbe520df76abe10c17a35f73315c1bd9be2f07d7d6752ca726570ec6121037bc277b82f1a939ab105b243286840d4e72d3a04eccd75004f164e2b8767328d2103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553aee8030000000000006951210274b391adbe520df76abf4b946c73f32413d7bbcae8bf2c682540ce76702aad9e21033bd977f8211dd390e045fe1576391692e63e6e40ea80321d1e171f7b846435a12103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553aee803000000000000695121035eb391adbe520df76ab810c3307bf73e7ef2de84b8b97e3d1526ac15161c9826210208b847c0432eeba3d27cc677405f27a7d55d5c7088b7077c7a722b49e60500952103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553ae265f22fc0600000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9722,8 +9975,8 @@ Composes a transaction to attach assets from an address to UTXO. Composes a transaction to detach assets from UTXO to an address. + Parameters - + utxo: `a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to detach the assets to + + utxo: `790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to detach the assets to + asset: `XCP` (str, required) - The asset or subasset to detach + quantity: `1000` (int, required) - The quantity of the asset to detach (in satoshis, hence integer) + encoding (str, optional) - The encoding method to use @@ -9777,8 +10030,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9791,12 +10044,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964613763316533666335643338353462643362333135306632313531393432343436353236663538626530653331333837316261386530333337333131353938303a307c626372743171346630336c6e6379686e39617472303635617738673532707a306a6b6c6136673435707a76617c5843507c31303030", + "data": "434e54525052545964373930633033373533623864333063326634363431393835616637396538633566666135383431633834343761376463396566346333666132316634626166383a307c626372743171337033636b79337072746667736c74737a30786c347839637974346837677332706674647a727c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, - "btc_change": 4950028023, - "btc_fee": 48977, - "rawtransaction": "02000000000103add2da36e3c80ec048f687ac495f3292dcab0d29f5898eb447e64dbe5ef76f2a010000001600149f22482d5ab564881e7bf35d1fe53187f23d85b7ffffffff2809c45f929d5db89e3bd6e3b3557330c64ae9cc1e0a7c6dbbe4ce90596c62bb000000001600149f22482d5ab564881e7bf35d1fe53187f23d85b7ffffffffa1980cf0c44a39398be3125f10f7a8eccd9a915fe1c121ea9001b44c410dad1d010000001600149f22482d5ab564881e7bf35d1fe53187f23d85b7ffffffff04e8030000000000006951210273d9564b709bebfe06c33885d9490a4153d102da83c9e97be48ed4a6a53d893c21037ce4e1a59dca1a69f97747044000cc02a68b0132b17a0ef41a499688cc68024b2103dfe916dc86fb9eef3d273cb8dd60f9776dd6ab378df03396da81eef4b9137e5f53aee8030000000000006951210373d9564b709bebfe06c26981894f5c4304870e8680cbec33e48995b0a77d88b521032ab2e0f8c6985a35a57a12460702cc51f2c45b30b42d4dbf191bcad5cf3f5d062103dfe916dc86fb9eef3d273cb8dd60f9776dd6ab378df03396da81eef4b9137e5f53aee8030000000000006951210359d9564b709bebfe06936cc2c00e0e0e6df167c281c1ec7f86eae7c4960cbcb521034c82d394a8fb235dcb4373327532fa6493b36357811f3dc52971a1b9ae093a732103dfe916dc86fb9eef3d273cb8dd60f9776dd6ab378df03396da81eef4b9137e5f53aef76e0b27010000001600149f22482d5ab564881e7bf35d1fe53187f23d85b702000002000002000000000000", + "btc_change": 4950028128, + "btc_fee": 48872, + "rawtransaction": "02000000000103800dc6faffbce0f8de654c2c591a32293ab5d576ca6f5b9557fc8bf479baad0201000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e1ffffffff9334508606a39f9c29ed55dd1dd1289168342407aa97b6e5608c19377c1fee2000000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e1ffffffff7615312ced3fa25183d8cd654833e6e1d1595a0ebcdbe6957fa6a0449b57496201000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e1ffffffff04e803000000000000695121037535204461c50e0ec922545f777754f1e842928e3474efba5b213259f1e2643d2103b5bb5075cac0fc5ca4254da8744888c9eb70a87155638ae3cd8a0add587a64972103a5aa4d46065ce4a08c9ef90270ed78d57213c383f35d84424771c41fe83a132653aee803000000000000695121037535204461c50e0ec9255000262655a4eb15c08a342aecf65a702619f6a766da2102fcb0067fd5c4b54be8201fbd7e5dce8bef39a77d196edefb8eda01d35a6f62e72103a5aa4d46065ce4a08c9ef90270ed78d57213c383f35d84424771c41fe83a132653aee803000000000000695121035f35204461c50e0ec9360512236e16be8734f1903d20ecba3813546dc7d655b421028c836514acf7c5399c4678ce1229bdf1df41cb496157bd82faee69e43d1c50a82103a5aa4d46065ce4a08c9ef90270ed78d57213c383f35d84424771c41fe83a132653ae606f0b2701000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e102000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9861,12 +10114,29 @@ Returns the valid assets ``` { "result": [ + { + "asset": "MPMASSET", + "asset_id": "101158363923", + "asset_longname": null, + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset B", + "first_issuance_block_index": 201, + "last_issuance_block_index": 201, + "confirmed": true, + "first_issuance_block_time": 1730116077, + "last_issuance_block_time": 1730116077, + "supply_normalized": "1000.00000000" + }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "owner": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "issuer": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "owner": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", "divisible": true, "locked": false, "supply": 100000000000, @@ -9874,16 +10144,16 @@ Returns the valid assets "first_issuance_block_index": 198, "last_issuance_block_index": 198, "confirmed": true, - "first_issuance_block_time": 1729876053, - "last_issuance_block_time": 1729876053, + "first_issuance_block_time": 1730116060, + "last_issuance_block_time": 1730116060, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false, "supply": 10000000000, @@ -9891,16 +10161,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1729875898, - "last_issuance_block_time": 1729875905, + "first_issuance_block_time": 1730115900, + "last_issuance_block_time": 1730115918, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", - "owner": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "issuer": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "owner": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "divisible": true, "locked": false, "supply": 100000000000, @@ -9908,16 +10178,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1729875894, - "last_issuance_block_time": 1729875894, + "first_issuance_block_time": 1730115896, + "last_issuance_block_time": 1730115896, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false, "supply": 100000000000, @@ -9925,30 +10195,13 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1729875862, - "last_issuance_block_time": 1729875862, + "first_issuance_block_time": 1730115851, + "last_issuance_block_time": 1730115851, "supply_normalized": "1000.00000000" - }, - { - "asset": "FAIRMINTD", - "asset_id": "1046814266085", - "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 40, - "description": "", - "first_issuance_block_index": 135, - "last_issuance_block_index": 136, - "confirmed": true, - "first_issuance_block_time": 1729875814, - "last_issuance_block_time": 1729875818, - "supply_normalized": "0.00000040" } ], - "next_cursor": 4, - "result_count": 9 + "next_cursor": 5, + "result_count": 10 } ``` @@ -9971,8 +10224,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false, "supply": 10000000000, @@ -9980,8 +10233,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1729875755, - "last_issuance_block_time": 1729875767, + "first_issuance_block_time": 1730115754, + "last_issuance_block_time": 1730115766, "supply_normalized": "100.00000000" } } @@ -10012,7 +10265,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10020,14 +10273,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10035,7 +10288,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -10053,7 +10306,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -10065,9 +10318,9 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "XCP", - "quantity": 82699937196, + "quantity": 82649941196, "utxo": null, "utxo_address": null, "asset_info": { @@ -10077,7 +10330,7 @@ Returns the balances of an address and asset "locked": true, "issuer": null }, - "quantity_normalized": "826.99937000" + "quantity_normalized": "826.49941000" } ], "next_cursor": null, @@ -10119,9 +10372,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", + "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", "block_index": 184, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10136,7 +10389,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729875934, + "block_time": 1730115936, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10162,9 +10415,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "block_index": 188, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "block_index": 207, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10177,9 +10430,9 @@ Returns the orders of an asset "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "expired", "confirmed": true, - "block_time": 1729876012, + "block_time": 1730116110, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10205,9 +10458,9 @@ Returns the orders of an asset }, { "tx_index": 57, - "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", + "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", "block_index": 192, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10222,7 +10475,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1729876028, + "block_time": 1730116037, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10248,9 +10501,9 @@ Returns the orders of an asset }, { "tx_index": 59, - "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", + "tx_hash": "9d6f69deab8decbb02e247c2a2e19611f0931fb91c9bd48d5dad2bfae5328ffe", "block_index": 193, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10265,7 +10518,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729876032, + "block_time": 1730116041, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10290,51 +10543,51 @@ Returns the orders of an asset "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 52, - "tx_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "block_index": 187, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "give_asset": "BTC", - "give_quantity": 2000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 2000, - "get_remaining": 0, + "tx_index": 74, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, "expiration": 21, - "expire_index": 207, + "expire_index": 228, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "filled", + "status": "open", "confirmed": true, - "block_time": 1729876008, + "block_time": 1730116110, "give_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, + "description": "The Counterparty protocol native currency", + "locked": true, "issuer": null }, "get_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, + "description": "The Bitcoin cryptocurrency", + "locked": false, "issuer": null }, - "give_quantity_normalized": "0.00002000", - "get_quantity_normalized": "0.00002000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" } ], - "next_cursor": 54, - "result_count": 7 + "next_cursor": 52, + "result_count": 8 } ``` @@ -10370,13 +10623,13 @@ Returns the orders of an asset { "result": [ { - "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", + "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", "tx0_index": 51, - "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "tx1_index": 54, - "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "tx1_address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10390,7 +10643,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729876012, + "block_time": 1730116023, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10410,13 +10663,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", "tx0_index": 51, - "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "tx1_index": 52, - "tx1_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10430,7 +10683,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729876008, + "block_time": 1730116019, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10450,13 +10703,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b_a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", + "id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", "tx0_index": 49, - "tx0_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx0_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "tx1_index": 50, - "tx1_hash": "a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", - "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "tx1_hash": "6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10470,7 +10723,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729875934, + "block_time": 1730115936, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10550,20 +10803,20 @@ Returns the credits of an asset "result": [ { "block_index": 194, - "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", + "event": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729876037, + "block_time": 1730116045, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -10571,20 +10824,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "247a83049c76d2c8cce458965c61b55515a12725eee4559c2cbf08a90aa52cc1", + "event": "633a29ddd1d5f12a25cad17061eaf217c3d3255f32284361eec6745ecebb5d8b", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729875767, + "block_time": 1730115766, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -10592,20 +10845,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "fb7a4f0b452e71991d1e44f65ec7ff0767bd9988506e968fc5b0a67d4aa921a3", + "event": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729875763, + "block_time": 1730115762, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -10613,20 +10866,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", + "event": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729875763, + "block_time": 1730115762, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -10638,16 +10891,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "fb7a4f0b452e71991d1e44f65ec7ff0767bd9988506e968fc5b0a67d4aa921a3", + "event": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729875763, + "block_time": 1730115762, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -10702,17 +10955,17 @@ Returns the debits of an asset { "result": [ { - "block_index": 201, + "block_index": 208, "address": null, "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "utxo": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "utxo_address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "confirmed": true, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -10723,17 +10976,17 @@ Returns the debits of an asset "quantity_normalized": "15.00000000" }, { - "block_index": 198, - "address": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "block_index": 207, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "XCP", - "quantity": 50000000, - "action": "issuance fee", - "event": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", - "tx_index": 64, + "quantity": 1000, + "action": "open order", + "event": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729876053, + "block_time": 1730116110, "asset_info": { "divisible": true, "asset_longname": null, @@ -10741,20 +10994,20 @@ Returns the debits of an asset "locked": true, "issuer": null }, - "quantity_normalized": "0.50000000" + "quantity_normalized": "0.00001000" }, { - "block_index": 195, - "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "block_index": 206, + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "XCP", - "quantity": 1, - "action": "destroy", - "event": "d41b13b0b1a25e8e77dbd3c8caa5b91aff948a81618a598872934c4809d49e7e", - "tx_index": 61, + "quantity": 10, + "action": "mpma send", + "event": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729876041, + "block_time": 1730116106, "asset_info": { "divisible": true, "asset_longname": null, @@ -10762,20 +11015,20 @@ Returns the debits of an asset "locked": true, "issuer": null }, - "quantity_normalized": "0.00000001" + "quantity_normalized": "0.00000010" }, { - "block_index": 194, - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "block_index": 205, + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "XCP", - "quantity": 74499387833, - "action": "sweep", - "event": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", - "tx_index": 60, + "quantity": 10, + "action": "mpma send", + "event": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729876037, + "block_time": 1730116102, "asset_info": { "divisible": true, "asset_longname": null, @@ -10783,20 +11036,20 @@ Returns the debits of an asset "locked": true, "issuer": null }, - "quantity_normalized": "744.99388000" + "quantity_normalized": "0.00000010" }, { - "block_index": 194, - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "block_index": 204, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "XCP", - "quantity": 600000, - "action": "sweep fee", - "event": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", - "tx_index": 60, + "quantity": 10, + "action": "mpma send", + "event": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729876037, + "block_time": 1730116099, "asset_info": { "divisible": true, "asset_longname": null, @@ -10804,11 +11057,11 @@ Returns the debits of an asset "locked": true, "issuer": null }, - "quantity_normalized": "0.00600000" + "quantity_normalized": "0.00000010" } ], - "next_cursor": 49, - "result_count": 40 + "next_cursor": 63, + "result_count": 46 } ``` @@ -10817,55 +11070,25 @@ Returns the debits of an asset Returns the dividends of an asset + Parameters - + asset: `MYASSETA` (str, required) - The asset to return + + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the dividend to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dividend to return - + Default: `100` - + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` - + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. - + Default: `false` - + show_unconfirmed (bool, optional) - Include results from Mempool. - + Default: `false` - -+ Response 200 (application/json) - - ``` - { - "result": [ - { - "tx_index": 41, - "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", - "block_index": 154, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "asset": "MYASSETA", - "dividend_asset": "XCP", - "quantity_per_unit": 100000000, - "fee_paid": 40000, - "status": "valid", - "confirmed": true, - "block_time": 1729875884, - "asset_info": { - "asset_longname": null, - "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false - }, - "dividend_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_per_unit_normalized": "1.00000000", - "fee_paid_normalized": "0.00040000" - } - ], + + Default: `100` + + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) + + Default: `None` + + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + + Default: `false` + + show_unconfirmed (bool, optional) - Include results from Mempool. + + Default: `false` + ++ Response 200 (application/json) + + ``` + { + "result": [], "next_cursor": null, - "result_count": 1 + "result_count": 0 } ``` @@ -10906,14 +11129,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "247a83049c76d2c8cce458965c61b55515a12725eee4559c2cbf08a90aa52cc1", + "tx_hash": "633a29ddd1d5f12a25cad17061eaf217c3d3255f32284361eec6745ecebb5d8b", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "transfer": false, "callable": false, "call_date": 0, @@ -10928,20 +11151,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729875767, + "block_time": 1730115766, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "fb7a4f0b452e71991d1e44f65ec7ff0767bd9988506e968fc5b0a67d4aa921a3", + "tx_hash": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "transfer": false, "callable": false, "call_date": 0, @@ -10956,20 +11179,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729875763, + "block_time": 1730115762, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", + "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "transfer": false, "callable": false, "call_date": 0, @@ -10984,20 +11207,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1729875760, + "block_time": 1730115757, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", + "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "transfer": false, "callable": false, "call_date": 0, @@ -11012,7 +11235,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1729875755, + "block_time": 1730115754, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11045,11 +11268,11 @@ Returns the sends, include Enhanced and MPMA sends, of an asset { "result": [ { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11057,7 +11280,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -11069,19 +11292,19 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 56, - "tx_hash": "919449b62dbff81fcd96e48125e7189c2874935af0ab6e8ca4b4ce67bb2a1f65", - "block_index": 190, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "tx_index": 73, + "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "block_index": 206, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, - "memo": null, + "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1729876020, + "block_time": 1730116106, "asset_info": { "divisible": true, "asset_longname": null, @@ -11093,19 +11316,19 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "fee_paid_normalized": "0.00000000" }, { - "tx_index": 55, - "tx_hash": "dc24a98f4f65b086869c6350383240e014524d822aab2e2630ccaa222668e74a", - "block_index": 189, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "tx_index": 72, + "tx_hash": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "block_index": 205, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "XCP", - "quantity": 10000, + "quantity": 10, "status": "valid", - "msg_index": 0, - "memo": null, + "msg_index": 2, + "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1729876016, + "block_time": 1730116102, "asset_info": { "divisible": true, "asset_longname": null, @@ -11113,23 +11336,23 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "locked": true, "issuer": null }, - "quantity_normalized": "0.00010000", + "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 44, - "tx_hash": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62", - "block_index": 157, - "source": "1dad0d414cb40190ea21c1e15f919acdeca8f7105f12e38b39394ac4f00c98a1:0", - "destination": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", + "tx_index": 71, + "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "block_index": 204, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "XCP", - "quantity": 1500000000, + "quantity": 10, "status": "valid", - "msg_index": 1, - "memo": null, + "msg_index": 2, + "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1729875894, + "block_time": 1730116099, "asset_info": { "divisible": true, "asset_longname": null, @@ -11137,23 +11360,23 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000", + "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 43, - "tx_hash": "1dad0d414cb40190ea21c1e15f919acdeca8f7105f12e38b39394ac4f00c98a1", - "block_index": 156, - "source": "26c019805138e039c0857066de3fd5ddd731a7b626179059880fb0b5dc36471a:0", - "destination": "1dad0d414cb40190ea21c1e15f919acdeca8f7105f12e38b39394ac4f00c98a1:0", + "tx_index": 70, + "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "block_index": 203, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "XCP", - "quantity": 1500000000, + "quantity": 10, "status": "valid", - "msg_index": 1, - "memo": null, + "msg_index": 2, + "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1729875891, + "block_time": 1730116095, "asset_info": { "divisible": true, "asset_longname": null, @@ -11161,12 +11384,12 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "locked": true, "issuer": null }, - "quantity_normalized": "15.00000000", + "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" } ], - "next_cursor": null, - "result_count": 5 + "next_cursor": 14, + "result_count": 9 } ``` @@ -11204,9 +11427,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", + "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11215,7 +11438,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11225,7 +11448,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729875837, + "block_time": 1730115825, "asset_info": { "divisible": true, "asset_longname": null, @@ -11241,9 +11464,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "12f60c8df8cefdbdd94f3b60fb85a2a2b58f8970e8f67131e13d2a118ee446db", + "tx_hash": "ccb421515f869082058aa6d0f05423e1c6ce8751d4146c89dee14e26c1c3130b", "block_index": 142, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11252,7 +11475,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "origin": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11262,7 +11485,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729875840, + "block_time": 1730115828, "asset_info": { "divisible": true, "asset_longname": null, @@ -11278,9 +11501,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "8a0a52171c4efc276df87ce95bc204e13120c49d1702588067a90c1931a5de67", + "tx_hash": "a809a9c0b667c336b61ce3e892a7f2d80231121804f3f7db594da58d9ded5a52", "block_index": 150, - "source": "mymSDaJc8UDD3vXT5QFhccicJMeXuYM2hK", + "source": "mrTk1ThfTwE2f6PUY5vjkJvga5VgZXf4bk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11288,10 +11511,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "c91d1d242120d71e6248eab1da2513b751b655d271348c2ac27c5ac31c23beb3", - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "last_status_tx_hash": "73d6215c951c71f26d391d50b72497e72188efc109135e95b1f58a4374c30be0", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 0, - "last_status_tx_source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "last_status_tx_source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11299,7 +11522,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729875869, + "block_time": 1730115869, "asset_info": { "divisible": true, "asset_longname": null, @@ -11315,18 +11538,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "last_status_tx_hash": null, - "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11336,7 +11559,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -11361,7 +11584,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - The address to return + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -11374,9 +11597,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", + "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11385,7 +11608,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11395,7 +11618,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729875837, + "block_time": 1730115825, "asset_info": { "divisible": true, "asset_longname": null, @@ -11445,7 +11668,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -11453,7 +11676,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11462,7 +11685,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -11470,7 +11693,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11479,7 +11702,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -11487,7 +11710,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11496,7 +11719,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -11531,29 +11754,29 @@ Returns the dispenses of an asset { "result": [ { - "tx_index": 68, + "tx_index": 75, "dispense_index": 0, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "last_status_tx_hash": null, - "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11568,7 +11791,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -11582,27 +11805,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "bb626c5990cee4bb6d7c0a1ecce94ac6307355b3e3d63b9eb85d9d925fc40928", + "tx_hash": "20ee1f7c37198c60e5b697aa072434689128d11ddd55ed299c9fa30686503493", "block_index": 147, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "destination": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "destination": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "last_status_tx_hash": null, - "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11617,7 +11840,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729875858, + "block_time": 1730115848, "asset_info": { "divisible": true, "asset_longname": null, @@ -11631,19 +11854,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", + "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11651,7 +11874,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11666,7 +11889,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729875837, + "block_time": 1730115825, "asset_info": { "divisible": true, "asset_longname": null, @@ -11680,19 +11903,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", + "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", "block_index": 140, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11700,7 +11923,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11715,7 +11938,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729875832, + "block_time": 1730115821, "asset_info": { "divisible": true, "asset_longname": null, @@ -11737,7 +11960,7 @@ Returns the dispenses of an asset Returns asset subassets + Parameters - + asset: `TESTLOCKDESC` (str, required) - The name of the asset to return + + asset: `MYASSETB` (str, required) - The name of the asset to return + cursor (str, optional) - The last index of the assets to return + Default: `None` + limit: `5` (int, optional) - The maximum number of assets to return @@ -11753,27 +11976,9 @@ Returns asset subassets ``` { - "result": [ - { - "asset": "A95428959745315388", - "asset_id": "95428959745315388", - "asset_longname": "TESTLOCKDESC.MYSUBASSET", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "owner": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "divisible": true, - "locked": false, - "supply": 0, - "description": "Test Locking Description", - "first_issuance_block_index": 159, - "last_issuance_block_index": 159, - "confirmed": true, - "first_issuance_block_time": 1729875901, - "last_issuance_block_time": 1729875901, - "supply_normalized": "0.00000000" - } - ], + "result": [], "next_cursor": null, - "result_count": 1 + "result_count": 0 } ``` @@ -11807,10 +12012,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", + "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -11835,7 +12040,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729875767, + "block_time": 1730115766, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -11875,22 +12080,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "247a83049c76d2c8cce458965c61b55515a12725eee4559c2cbf08a90aa52cc1", + "tx_hash": "633a29ddd1d5f12a25cad17061eaf217c3d3255f32284361eec6745ecebb5d8b", "tx_index": 13, "block_index": 125, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729875767, + "block_time": 1730115766, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -11899,22 +12104,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "fb7a4f0b452e71991d1e44f65ec7ff0767bd9988506e968fc5b0a67d4aa921a3", + "tx_hash": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", "tx_index": 12, "block_index": 124, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", + "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729875763, + "block_time": 1730115762, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -11923,22 +12128,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", + "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", "tx_index": 11, "block_index": 123, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729875760, + "block_time": 1730115757, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -11957,7 +12162,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws` (str, required) - The address of the mints to return + + address: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address of the mints to return + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -11976,22 +12181,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "de184419a11537960bae99ccefa71431f36d0c43aa7748376b4cc904b81daed8", + "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", "tx_index": 11, "block_index": 123, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729875760, + "block_time": 1730115757, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -12044,9 +12249,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", + "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", "block_index": 184, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12061,7 +12266,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1729875934, + "block_time": 1730115936, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12087,9 +12292,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "tx_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", "block_index": 187, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12104,7 +12309,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1729876008, + "block_time": 1730116019, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12129,96 +12334,96 @@ Returns all the orders "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 51, - "tx_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", + "tx_index": 54, + "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", "block_index": 188, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "give_asset": "XCP", - "give_quantity": 10000, - "give_remaining": 5000, - "get_asset": "BTC", - "get_quantity": 10000, - "get_remaining": 5000, + "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "give_asset": "BTC", + "give_quantity": 3000, + "give_remaining": 0, + "get_asset": "XCP", + "get_quantity": 3000, + "get_remaining": 0, "expiration": 21, - "expire_index": 206, + "expire_index": 209, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729876012, + "block_time": 1730116023, "give_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, + "description": "The Bitcoin cryptocurrency", + "locked": false, "issuer": null }, "get_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, + "description": "The Counterparty protocol native currency", + "locked": true, "issuer": null }, - "give_quantity_normalized": "0.00010000", - "get_quantity_normalized": "0.00010000", - "get_remaining_normalized": "0.00005000", - "give_remaining_normalized": "0.00005000", + "give_quantity_normalized": "0.00003000", + "get_quantity_normalized": "0.00003000", + "get_remaining_normalized": "0.00000000", + "give_remaining_normalized": "0.00000000", "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 54, - "tx_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "block_index": 188, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "give_asset": "BTC", - "give_quantity": 3000, - "give_remaining": 0, - "get_asset": "XCP", - "get_quantity": 3000, - "get_remaining": 0, + "tx_index": 57, + "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "block_index": 192, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, "expiration": 21, - "expire_index": 209, + "expire_index": 212, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "cancelled", "confirmed": true, - "block_time": 1729876012, + "block_time": 1730116037, "give_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, + "description": "The Counterparty protocol native currency", + "locked": true, "issuer": null }, "get_asset_info": { "divisible": true, "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, + "description": "The Bitcoin cryptocurrency", + "locked": false, "issuer": null }, - "give_quantity_normalized": "0.00003000", - "get_quantity_normalized": "0.00003000", - "get_remaining_normalized": "0.00000000", - "give_remaining_normalized": "0.00000000", + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", "fee_provided_normalized": "0.00010000", "fee_required_normalized": "0.00000000", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, { - "tx_index": 57, - "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", - "block_index": 192, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx_index": 59, + "tx_hash": "9d6f69deab8decbb02e247c2a2e19611f0931fb91c9bd48d5dad2bfae5328ffe", + "block_index": 193, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12226,14 +12431,14 @@ Returns all the orders "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 212, + "expire_index": 214, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "cancelled", + "status": "open", "confirmed": true, - "block_time": 1729876028, + "block_time": 1730116041, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12258,8 +12463,8 @@ Returns all the orders "fee_provided_remaining_normalized": "0.00010000" } ], - "next_cursor": 59, - "result_count": 7 + "next_cursor": 51, + "result_count": 8 } ``` @@ -12268,7 +12473,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff` (str, required) - The hash of the transaction that created the order + + order_hash: `5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8` (str, required) - The hash of the transaction that created the order + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -12279,10 +12484,10 @@ Returns the information of an order ``` { "result": { - "tx_index": 59, - "tx_hash": "65c319684ebfbc3089092b88bccebca1161eaa146bea63118e9cffa5e182e1ff", - "block_index": 193, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx_index": 74, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12290,14 +12495,14 @@ Returns the information of an order "get_quantity": 1000, "get_remaining": 1000, "expiration": 21, - "expire_index": 214, + "expire_index": 228, "fee_required": 0, "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1729876032, + "block_time": 1730116110, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12329,7 +12534,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1` (str, required) - The hash of the transaction that created the order + + order_hash: `a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878` (str, required) - The hash of the transaction that created the order + status (enum[str], optional) - The status of the order matches to return + Default: `all` + Members @@ -12356,13 +12561,13 @@ Returns the order matches of an order { "result": [ { - "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", + "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", "tx0_index": 51, - "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "tx1_index": 54, - "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "tx1_address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12376,7 +12581,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729876012, + "block_time": 1730116023, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12396,13 +12601,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", "tx0_index": 51, - "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "tx1_index": 52, - "tx1_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12416,7 +12621,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729876008, + "block_time": 1730116019, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12446,7 +12651,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1` (str, required) - The hash of the transaction that created the order + + order_hash: `a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878` (str, required) - The hash of the transaction that created the order + cursor (str, optional) - The last index of the resolutions to return + Default: `None` + limit: `5` (int, optional) - The maximum number of resolutions to return @@ -12465,15 +12670,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "9ee9bd8d92a90b0b16898ec2694ab3634b8e067e8abb224eb1f5945f459ea82d", + "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", "block_index": 187, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "destination": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "btc_amount": 2000, - "order_match_id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", "status": "valid", "confirmed": true, - "block_time": 1729876008, + "block_time": 1730116019, "btc_amount_normalized": "0.00002000" } ], @@ -12517,9 +12722,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "tx_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", "block_index": 187, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12537,7 +12742,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729876008, + "block_time": 1730116019, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12563,9 +12768,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", + "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", "block_index": 188, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12583,7 +12788,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1729876012, + "block_time": 1730116023, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12609,9 +12814,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", + "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", "block_index": 184, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12629,7 +12834,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729875934, + "block_time": 1730115936, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12655,9 +12860,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "block_index": 188, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "block_index": 207, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12670,12 +12875,12 @@ Returns the orders to exchange two assets "fee_required_remaining": 0, "fee_provided": 10000, "fee_provided_remaining": 10000, - "status": "open", + "status": "expired", "confirmed": true, "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729876012, + "block_time": 1730116110, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12701,9 +12906,9 @@ Returns the orders to exchange two assets }, { "tx_index": 57, - "tx_hash": "f39acf57f70f323d391b87e019faff99be00cc841fb36ae75d86435e80171703", + "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", "block_index": 192, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12721,7 +12926,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729876028, + "block_time": 1730116037, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12747,7 +12952,7 @@ Returns the orders to exchange two assets } ], "next_cursor": 59, - "result_count": 7 + "result_count": 8 } ``` @@ -12784,13 +12989,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", + "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", "tx0_index": 51, - "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "tx1_index": 54, - "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "tx1_address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12807,7 +13012,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729876012, + "block_time": 1730116023, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12827,13 +13032,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", "tx0_index": 51, - "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "tx1_index": 52, - "tx1_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12850,7 +13055,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729876008, + "block_time": 1730116019, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12870,13 +13075,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b_a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", + "id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", "tx0_index": 49, - "tx0_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx0_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "tx1_index": 50, - "tx1_hash": "a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", - "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "tx1_hash": "6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12893,7 +13098,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1729875934, + "block_time": 1730115936, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12951,13 +13156,13 @@ Returns all the order matches { "result": [ { - "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", + "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", "tx0_index": 51, - "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "tx1_index": 54, - "tx1_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf", - "tx1_address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12971,7 +13176,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1729876012, + "block_time": 1730116023, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12991,13 +13196,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1_2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", + "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", "tx0_index": 51, - "tx0_hash": "d520c2aa18ab6f1e759f7092cd1deea4a8f20c5531a78f9ebb60ead76684c4c1", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "tx1_index": 52, - "tx1_hash": "2d3ed10288bef569d3dfc1e6e32be56a7e4cb31fbcf9b25b4c6fe09364867a21", - "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13011,7 +13216,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1729876008, + "block_time": 1730116019, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13031,13 +13236,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b_a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", + "id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", "tx0_index": 49, - "tx0_hash": "111cae1f148e5e4f64d102a7b4d610db135455bd946bb24c769e8de37ef9306b", - "tx0_address": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "tx0_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "tx1_index": 50, - "tx1_hash": "a8f1292c76427996585305824eba2290bcb249972fc3c2f705f73573e7589f04", - "tx1_address": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "tx1_hash": "6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13051,7 +13256,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1729875934, + "block_time": 1730115936, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13219,66 +13424,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "bffb2be5bdaa6276cca4057394e8a543c6324ecbc27920251c3eb7fd5e3ddc60", + "tx_hash": "40efc8e4de6bc24410016279eb759071c80e3ac3ee8fc7a52725555c3f89979e", "block_index": 121, - "source": "bcrt1qwv0kz40a9nmvlc7dgqqdmwky9e6gxn9ja9sksv", + "source": "bcrt1qrac7m6sqdzx9h798y52wk0qj5205d7vtqfjyds", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1729875752, + "block_time": 1730115749, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "1175633d80e0c71fc0a539ed361665eb4eb52ab3acbfd25433e460029e7be56f", + "tx_hash": "b3899728f4fbe6971190ca0558018b101f89d77a0a686dc9b3ccc415ca018e8b", "block_index": 120, - "source": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1729875747, + "block_time": 1730115746, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "a832284ce8b0d7a599d29aa9371faa4f6b7b73dc93a91b3c852cddfda619d104", + "tx_hash": "3a7a3f1159a9cfa190b40ae0aeea74f6e7bb59e77c72bf9dfcd020f2cf08b918", "block_index": 119, - "source": "bcrt1qu3xm5xg3tj9sv3ns4qdxgmk0n06h4w48udmzju", + "source": "bcrt1qlzwnh8crxz0ezlqgv69hf4g482dp7lmzd8rrxl", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1729875744, + "block_time": 1730115741, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "4f1c28ff39c8e163c217e59ec95dcb92c47282cf100fe2b69444e221bee48965", + "tx_hash": "6315228e07c37718a4a5b514e8966e340617b45669cadb46b87c79fde9c61081", "block_index": 118, - "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1729875741, + "block_time": 1730115738, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "b863e0316b321904eb30a9f46b5013d3b7ddbc0243ab9641b9ab3ee262c15708", + "tx_hash": "62015459a282a1c5ce61590bf6a13d1cc03908e59d02d09d8bb4327c8e8349f9", "block_index": 117, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1729875737, + "block_time": 1730115735, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13323,9 +13528,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", + "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13334,7 +13539,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13344,7 +13549,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729875837, + "block_time": 1730115825, "asset_info": { "divisible": true, "asset_longname": null, @@ -13360,9 +13565,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "12f60c8df8cefdbdd94f3b60fb85a2a2b58f8970e8f67131e13d2a118ee446db", + "tx_hash": "ccb421515f869082058aa6d0f05423e1c6ce8751d4146c89dee14e26c1c3130b", "block_index": 142, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13371,7 +13576,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "origin": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13381,7 +13586,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729875840, + "block_time": 1730115828, "asset_info": { "divisible": true, "asset_longname": null, @@ -13397,9 +13602,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "8a0a52171c4efc276df87ce95bc204e13120c49d1702588067a90c1931a5de67", + "tx_hash": "a809a9c0b667c336b61ce3e892a7f2d80231121804f3f7db594da58d9ded5a52", "block_index": 150, - "source": "mymSDaJc8UDD3vXT5QFhccicJMeXuYM2hK", + "source": "mrTk1ThfTwE2f6PUY5vjkJvga5VgZXf4bk", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13407,10 +13612,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "c91d1d242120d71e6248eab1da2513b751b655d271348c2ac27c5ac31c23beb3", - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "last_status_tx_hash": "73d6215c951c71f26d391d50b72497e72188efc109135e95b1f58a4374c30be0", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 0, - "last_status_tx_source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "last_status_tx_source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13418,7 +13623,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729875869, + "block_time": 1730115869, "asset_info": { "divisible": true, "asset_longname": null, @@ -13434,9 +13639,9 @@ Returns all dispensers }, { "tx_index": 62, - "tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", + "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", "block_index": 197, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13445,7 +13650,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13455,11 +13660,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729876048, + "block_time": 1730116055, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -13471,18 +13676,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "last_status_tx_hash": null, - "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13492,7 +13697,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -13517,7 +13722,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52` (str, required) - The hash of the dispenser to return + + dispenser_hash: `d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2` (str, required) - The hash of the dispenser to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -13529,9 +13734,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", + "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13540,7 +13745,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13550,7 +13755,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1729875837, + "block_time": 1730115825, "asset_info": { "divisible": true, "asset_longname": null, @@ -13572,7 +13777,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52` (str, required) - The hash of the dispenser to return + + dispenser_hash: `d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2` (str, required) - The hash of the dispenser to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -13592,19 +13797,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", + "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13612,7 +13817,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13627,7 +13832,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729875837, + "block_time": 1730115825, "asset_info": { "divisible": true, "asset_longname": null, @@ -13641,19 +13846,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", + "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", "block_index": 140, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13661,7 +13866,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13676,7 +13881,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729875832, + "block_time": 1730115821, "asset_info": { "divisible": true, "asset_longname": null, @@ -13718,20 +13923,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", + "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", "block_index": 154, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729875884, + "block_time": 1730115885, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -13756,7 +13961,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938` (str, required) - The hash of the dividend to return + + dividend_hash: `62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a` (str, required) - The hash of the dividend to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -13768,20 +13973,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", + "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", "block_index": 154, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1729875884, + "block_time": 1730115885, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -13803,7 +14008,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a` (str, required) - The hash of the dividend distribution to return + cursor (str, optional) - The last index of the credit to return + Default: `None` + limit: `5` (int, optional) - The maximum number of credit to return @@ -13826,12 +14031,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", + "event": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", "tx_index": 41, - "utxo": "26c019805138e039c0857066de3fd5ddd731a7b626179059880fb0b5dc36471a:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "utxo": "98dc74f499bab33d7568cbb80cf2844a2c7c56b8c2f77d240c55b6583f71505a:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "confirmed": true, - "block_time": 1729875884, + "block_time": 1730115885, "asset_info": { "divisible": true, "asset_longname": null, @@ -13843,16 +14048,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qlnehx4acfdgpf3cz4hqtgdgf5wejvwhpr9x5kq", + "address": "bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "6a9e8d85dff00cad75497c9d493b1ae63a575a6431e10264a90c8debe24c9938", + "event": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1729875884, + "block_time": 1730115885, "asset_info": { "divisible": true, "asset_longname": null, @@ -13877,7 +14082,7 @@ Returns all events + Parameters + event_name (str, optional) - Comma separated list of events to return + Default: `None` - + cursor: `603` (str, optional) - The last event index to return + + cursor: `675` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -13894,47 +14099,47 @@ Returns all events { "result": [ { - "event_index": 603, + "event_index": 675, "event": "BLOCK_PARSED", "params": { - "block_index": 201, - "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", - "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", + "block_index": 208, + "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", + "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", "transaction_count": 1, - "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", - "block_time": 1729876074 + "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", + "block_time": 1730116123 }, "tx_hash": null, - "block_index": 201, - "block_time": 1729876074 + "block_index": 208, + "block_time": 1730116123 }, { - "event_index": 602, + "event_index": 674, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75 }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 }, { - "event_index": 601, + "event_index": 673, "event": "DISPENSE", "params": { "asset": "XCP", - "block_index": 201, + "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "tx_index": 68, - "block_time": 1729876074, + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -13945,20 +14150,20 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 }, { - "event_index": 600, + "event_index": 672, "event": "DISPENSER_UPDATE", "params": { "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "status": 0, - "tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", + "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", "asset_info": { "divisible": true, "asset_longname": null, @@ -13968,24 +14173,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 }, { - "event_index": 599, + "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "asset": "XCP", - "block_index": 201, + "block_index": 208, "calling_function": "dispense", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", "quantity": 66, - "tx_index": 68, + "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -13995,13 +14200,13 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 } ], - "next_cursor": 598, - "result_count": 604 + "next_cursor": 670, + "result_count": 676 } ``` @@ -14010,7 +14215,7 @@ Returns all events Returns the event of an index + Parameters - + event_index: `603` (int, required) - The index of the event to return + + event_index: `675` (int, required) - The index of the event to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -14021,19 +14226,19 @@ Returns the event of an index ``` { "result": { - "event_index": 603, + "event_index": 675, "event": "BLOCK_PARSED", "params": { - "block_index": 201, - "ledger_hash": "1bf24c7d510c9bdddbfcc1a2bb4253dad844fcf1f918c2fd3ac2eb53548b7b66", - "messages_hash": "555be690592ed6a56bf164f3e17847a40ebcb9a1618754bef2d173445baadc45", + "block_index": 208, + "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", + "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", "transaction_count": 1, - "txlist_hash": "fe395baf6721b16cf3318c38c00e055f0e29be4a82dd5dc162f4703950ff3714", - "block_time": 1729876074 + "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", + "block_time": 1730116123 }, "tx_hash": null, - "block_index": 201, - "block_time": 1729876074 + "block_index": 208, + "block_time": 1730116123 } } ``` @@ -14065,7 +14270,7 @@ Returns the event counts of all blocks }, { "event": "TRANSACTION_PARSED", - "event_count": 54 + "event_count": 61 }, { "event": "SWEEP", @@ -14077,7 +14282,7 @@ Returns the event counts of all blocks }, { "event": "ORDER_UPDATE", - "event_count": 11 + "event_count": 12 } ], "next_cursor": "ORDER_MATCH_UPDATE", @@ -14091,7 +14296,7 @@ Returns the events filtered by event name + Parameters + event: `CREDIT` (str, required) - The event to return - + cursor: `603` (str, optional) - The last event index to return + + cursor: `675` (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` @@ -14108,19 +14313,19 @@ Returns the events filtered by event name { "result": [ { - "event_index": 599, + "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "asset": "XCP", - "block_index": 201, + "block_index": 208, "calling_function": "dispense", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", "quantity": 66, - "tx_index": 68, + "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -14130,24 +14335,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 }, { - "event_index": 597, + "event_index": 669, "event": "CREDIT", "params": { "address": null, "asset": "XCP", - "block_index": 201, + "block_index": 208, "calling_function": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", "quantity": 1500000000, - "tx_index": 68, - "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "block_time": 1729876074, + "tx_index": 75, + "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -14157,94 +14362,94 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 }, { - "event_index": 594, + "event_index": 666, "event": "CREDIT", "params": { "address": null, "asset": "MYASSETA", - "block_index": 201, + "block_index": 208, "calling_function": "utxo move", - "event": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", "quantity": 1500000000, - "tx_index": 68, - "utxo": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", - "utxo_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "block_time": 1729876074, + "tx_index": 75, + "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_time": 1730116123, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "block_time": 1729876074 + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 }, { - "event_index": 587, + "event_index": 656, "event": "CREDIT", "params": { - "address": null, - "asset": "UTXOASSET", - "block_index": 200, - "calling_function": "utxo move", - "event": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98", - "quantity": 1000000000, - "tx_index": 67, - "utxo": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98:0", - "utxo_address": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "block_time": 1729876064, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "block_index": 207, + "calling_function": "cancel order", + "event": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "quantity": 5000, + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "block_time": 1730116110, "asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "divisible": true, - "locked": false + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null }, - "quantity_normalized": "10.00000000" + "quantity_normalized": "0.00005000" }, - "tx_hash": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98", - "block_index": 200, - "block_time": 1729876064 + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_time": 1730116110 }, { - "event_index": 584, + "event_index": 645, "event": "CREDIT", "params": { - "address": null, - "asset": "UTXOASSET", - "block_index": 200, - "calling_function": "utxo move", - "event": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3", - "quantity": 1000000000, - "tx_index": 66, - "utxo": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3:0", - "utxo_address": "bcrt1qu3xm5xg3tj9sv3ns4qdxgmk0n06h4w48udmzju", - "block_time": 1729876064, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "block_index": 206, + "calling_function": "mpma send", + "event": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "quantity": 10, + "tx_index": 73, + "utxo": null, + "utxo_address": null, + "block_time": 1730116106, "asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "divisible": true, - "locked": false + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null }, - "quantity_normalized": "10.00000000" + "quantity_normalized": "0.00000010" }, - "tx_hash": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3", - "block_index": 200, - "block_time": 1729876064 + "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "block_index": 206, + "block_time": 1730116106 } ], - "next_cursor": 575, - "result_count": 76 + "next_cursor": 644, + "result_count": 91 } ``` @@ -14265,7 +14470,7 @@ Returns the number of events { "result": { "event": "CREDIT", - "event_count": 76 + "event_count": 91 } } ``` @@ -14294,29 +14499,29 @@ Returns all the dispenses { "result": [ { - "tx_index": 68, + "tx_index": 75, "dispense_index": 0, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "destination": "bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw", + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "last_status_tx_hash": null, - "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14331,7 +14536,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -14345,19 +14550,19 @@ Returns all the dispenses { "tx_index": 63, "dispense_index": 0, - "tx_hash": "111da276d70487dd4e13a1a34d06d5b818ca44563e219ccbe23b63fe949791f2", + "tx_hash": "6afc6887d0234625af2de1aad7aa4588fb3aa054b9f1df4e9de8cd43df5794ae", "block_index": 197, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "6e749d68ff9d998c1817365a605763241691c5283b6176cfcec0259bb0ee2c6f", + "dispenser_tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14365,7 +14570,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14380,11 +14585,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729876048, + "block_time": 1730116055, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -14394,27 +14599,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "bb626c5990cee4bb6d7c0a1ecce94ac6307355b3e3d63b9eb85d9d925fc40928", + "tx_hash": "20ee1f7c37198c60e5b697aa072434689128d11ddd55ed299c9fa30686503493", "block_index": 147, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", - "destination": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "destination": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "2a6ff75ebe4de647b48e89f5290dabdc92325f49ac87f648c00ec8e336dad2ad", + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, - "block_index": 201, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "last_status_tx_hash": null, - "origin": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14429,7 +14634,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1729875858, + "block_time": 1730115848, "asset_info": { "divisible": true, "asset_longname": null, @@ -14443,19 +14648,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "895ffd0096fc74da46fae8991008d7b96917b3d7af4052139abd8ca5243c7d6f", + "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14463,7 +14668,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14478,7 +14683,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729875837, + "block_time": 1730115825, "asset_info": { "divisible": true, "asset_longname": null, @@ -14492,19 +14697,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "25170fc51b03a3d18f94ff7d53767773e1a9a2ef3e46d71c32b0431533374742", + "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", "block_index": 140, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "destination": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "2a52b7fd4f499f184c7e2ff320327898de5c7d3afd9e8f717268697a8c24df52", + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14512,7 +14717,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14527,7 +14732,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1729875832, + "block_time": 1730115821, "asset_info": { "divisible": true, "asset_longname": null, @@ -14568,11 +14773,11 @@ Returns all the sends include Enhanced and MPMA sends { "result": [ { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -14580,7 +14785,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -14592,11 +14797,11 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 68, - "tx_hash": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980", - "block_index": 201, - "source": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62:1", - "destination": "a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980:0", + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -14604,11 +14809,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -14616,80 +14821,80 @@ Returns all the sends include Enhanced and MPMA sends "fee_paid_normalized": "0.00000000" }, { - "tx_index": 67, - "tx_hash": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98", - "block_index": 200, - "source": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3:0", - "destination": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98:0", - "asset": "UTXOASSET", - "quantity": 1000000000, + "tx_index": 73, + "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "block_index": 206, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "quantity": 10, "status": "valid", - "msg_index": 0, - "memo": null, + "msg_index": 2, + "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1729876064, + "block_time": 1730116106, "asset_info": { - "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", "divisible": true, - "locked": false + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null }, - "quantity_normalized": "10.00000000", + "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 66, - "tx_hash": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3", - "block_index": 200, - "source": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320:1", - "destination": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3:0", - "asset": "UTXOASSET", - "quantity": 1000000000, + "tx_index": 73, + "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "block_index": 206, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "asset": "MPMASSET", + "quantity": 10, "status": "valid", - "msg_index": 0, - "memo": null, + "msg_index": 1, + "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1729876064, + "block_time": 1730116106, "asset_info": { "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, - "quantity_normalized": "10.00000000", + "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" }, { - "tx_index": 65, - "tx_hash": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320", - "block_index": 199, - "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "destination": "8f4a21628ca29d1bea08cb89d21471e891436a32de8d929d8de16f5de07f6320:1", - "asset": "UTXOASSET", - "quantity": 1000000000, + "tx_index": 73, + "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "block_index": 206, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "asset": "MPMASSET", + "quantity": 10, "status": "valid", "msg_index": 0, - "memo": null, + "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1729876056, + "block_time": 1730116106, "asset_info": { "asset_longname": null, - "description": "My super asset", - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, - "quantity_normalized": "10.00000000", + "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" } ], - "next_cursor": 14, - "result_count": 19 + "next_cursor": 27, + "result_count": 32 } ``` @@ -14729,16 +14934,44 @@ Returns all the issuances ``` { "result": [ + { + "tx_index": 68, + "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "msg_index": 0, + "block_index": 201, + "asset": "MPMASSET", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset B", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730116077, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" + }, { "tx_index": 64, - "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", + "tx_hash": "c915023b8b26fc3eb938d496087a062745ad462fccab637368bddfd4fb29c4ba", "msg_index": 0, "block_index": 198, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "issuer": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", "transfer": false, "callable": false, "call_date": 0, @@ -14753,20 +14986,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729876053, + "block_time": 1730116060, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "92b8cfc3dc569089881dfa46bd7aded69c484e727c25ac8c0d98ea48d182e205", + "tx_hash": "92d810aacd89aaed4756618250d3df3739516fda551847d01a705a57cf250e1c", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "transfer": false, "callable": false, "call_date": 0, @@ -14781,20 +15014,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729875920, + "block_time": 1730115921, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "be598808b3f486e15e9e7267071c662fd87779a774a700271319f7ac59268ea9", + "tx_hash": "652fa348e445bedc79af7c8da7e9edd116fc6586bb2896968234ade2b0de91c4", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "transfer": false, "callable": false, "call_date": 0, @@ -14809,20 +15042,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1729875905, + "block_time": 1730115918, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "d356791a0df1d37ddaf36b4b2a55eccaeda19adbaf8e099acda84fe9f8d43bb2", + "tx_hash": "a9640b7ef998e1287a94371074ed8dd399613638ecb6a9c1a406fd5ce29727e0", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "transfer": false, "callable": false, "call_date": 0, @@ -14837,41 +15070,13 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729875901, + "block_time": 1730115914, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" - }, - { - "tx_index": 45, - "tx_hash": "d679c8a07c7838453357da218c63bf8e7fb7b0efdf968013a632b9f14d728268", - "msg_index": 0, - "block_index": 158, - "asset": "TESTLOCKDESC", - "quantity": 10000000000, - "divisible": true, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", - "transfer": false, - "callable": false, - "call_date": 0, - "call_price": 0.0, - "description": "Test Locking Description", - "fee_paid": 50000000, - "status": "valid", - "asset_longname": null, - "locked": false, - "reset": false, - "description_locked": false, - "fair_minting": false, - "asset_events": "creation", - "confirmed": true, - "block_time": 1729875898, - "quantity_normalized": "100.00000000", - "fee_paid_normalized": "0.50000000" } ], - "next_cursor": 18, - "result_count": 23 + "next_cursor": 19, + "result_count": 24 } ``` @@ -14880,7 +15085,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5` (str, required) - The hash of the transaction to return + + tx_hash: `69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -14891,20 +15096,20 @@ Returns the issuances of a block ``` { "result": { - "tx_index": 64, - "tx_hash": "f3a8ec3efb4bec820d9096bd166a892a84a722f07fdd33ea1a39e8a5a5a01dc5", + "tx_index": 68, + "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", "msg_index": 0, - "block_index": 198, - "asset": "UTXOASSET", + "block_index": 201, + "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", - "issuer": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "transfer": false, "callable": false, "call_date": 0, "call_price": 0.0, - "description": "My super asset", + "description": "My super asset B", "fee_paid": 50000000, "status": "valid", "asset_longname": null, @@ -14914,7 +15119,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1729876053, + "block_time": 1730116077, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -14946,16 +15151,16 @@ Returns all sweeps "result": [ { "tx_index": 60, - "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", + "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", "block_index": 194, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729876037, + "block_time": 1730116045, "fee_paid_normalized": "0.00600000" } ], @@ -14969,7 +15174,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14` (str, required) - The hash of the transaction to return + + tx_hash: `0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -14982,16 +15187,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 60, - "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14", + "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", "block_index": 194, - "source": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", - "destination": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1729876037, + "block_time": 1730116045, "fee_paid_normalized": "0.00600000" } ], @@ -15025,9 +15230,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa", + "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", "block_index": 138, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15035,14 +15240,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729875826, + "block_time": 1730115814, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "782e54445dc6f9962386534b10d6a8aaf57293a2b3496497dfb06449c9a278c5", + "tx_hash": "261b5785cc07a1f7000bee3be198f5d90393f35ed50ad3c8656eafadf5e468dc", "block_index": 137, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15050,7 +15255,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729875823, + "block_time": 1730115811, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15064,7 +15269,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa` (str, required) - The hash of the transaction to return + + tx_hash: `74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15076,9 +15281,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "d0bcadf4061f5cc9dd2021552cedac29e6d9d4cf7d8d36630832ec154f123cfa", + "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", "block_index": 138, - "source": "bcrt1qnu3yst26k4jgs8nm7dw3lef3slermpdhxrtvyg", + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15086,7 +15291,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1729875826, + "block_time": 1730115814, "fee_fraction_int_normalized": "0.00000000" } } @@ -15123,10 +15328,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "772d960e551d4fc5c1336a1240f36767f99bf76fc41c0822689601aebf475857", + "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", "tx_index": 42, "block_index": 155, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15151,7 +15356,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1729875887, + "block_time": 1730115889, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15160,10 +15365,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", + "tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", "tx_index": 22, "block_index": 135, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15188,7 +15393,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1729875814, + "block_time": 1730115804, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15200,10 +15405,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", + "tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", "tx_index": 18, "block_index": 131, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15228,7 +15433,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1729875789, + "block_time": 1730115789, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15240,10 +15445,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "5bbb7d89d98e4d3cea2e5bcb4f6438a19666ff81c76b02e70f1508276c81fcfe", + "tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", "tx_index": 14, "block_index": 130, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15268,7 +15473,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1729875786, + "block_time": 1730115785, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15280,10 +15485,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "e5fbab5552d39b8da2835a6510f0a5df1ca29f754c9cffa94cc56e5acb501dba", + "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", "tx_index": 10, "block_index": 125, - "source": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15308,7 +15513,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1729875767, + "block_time": 1730115766, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15377,22 +15582,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", + "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", "tx_index": 23, "block_index": 136, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729875818, + "block_time": 1730115808, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -15401,22 +15606,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "87884ac53a4aacf74156f175cb165810d1814f1f8055d20c774db5c03037d974", + "tx_hash": "5da24fdc5b0f42414404df0110e4a3cd79789b5706be7b301d976f9eef623346", "tx_index": 21, "block_index": 134, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729875810, + "block_time": 1730115800, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -15425,22 +15630,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "cac3154c795618e62f7795292f95404673f9cf0c3ec5d3b8569e7e54e56041b5", + "tx_hash": "98840296af69b519b38aaa9663baa393849683e67da07ce11e4aa21df9259e2f", "tx_index": 20, "block_index": 133, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729875796, + "block_time": 1730115797, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -15449,22 +15654,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9938a552fcf5b52aac1996f6ef4c65ef99ff68e50830c40666c0ae6a2a3a0ea8", + "tx_hash": "e26754ee3f011a743d3bd45d712d1fe4056c4b4f657f391b5d06c33191fe01d3", "tx_index": 19, "block_index": 132, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "ef080661adc888d76e84e31b7fac496b24e1f17a36ceb0636ff5a0e378d127f5", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729875793, + "block_time": 1730115793, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -15473,22 +15678,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "37e5f57c83e48468fde220893ad85c68bc067778a970ccc71ebcf96555186026", + "tx_hash": "c2ff22176088f20d29376840755983b7b85d64f16b7c262e35059b6ee5a80208", "tx_index": 17, "block_index": 129, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "fairminter_tx_hash": "5bbb7d89d98e4d3cea2e5bcb4f6438a19666ff81c76b02e70f1508276c81fcfe", + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "fairminter_tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729875782, + "block_time": 1730115781, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -15507,7 +15712,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4` (str, required) - The hash of the fairmint to return + + tx_hash: `aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15518,22 +15723,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "ecec50cf753443c475ce9f73a76cedc25f382d25cefaa00d66706cdd544af1e4", + "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", "tx_index": 23, "block_index": 136, - "source": "bcrt1qarpmrt0tv5lkuncmt84jh4xmfrexv54640pyws", - "fairminter_tx_hash": "5361559a88d02eae2c794d10d512f6a0cd9edcf9100e94befc4a514df243e1b5", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1729875818, + "block_time": 1730115808, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", "divisible": true, "locked": false }, @@ -15551,7 +15756,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8,bcrt1qu3xm5xg3tj9sv3ns4qdxgmk0n06h4w48udmzju` (str, required) - The addresses to search for + + addresses: `bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg,bcrt1qlzwnh8crxz0ezlqgv69hf4g482dp7lmzd8rrxl` (str, required) - The addresses to search for + unconfirmed (bool, optional) - Include unconfirmed transactions + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -15568,28 +15773,28 @@ Returns a list of unspent outputs for a list of addresses "vout": 0, "height": 200, "value": 5460, - "confirmations": 2, + "confirmations": 9, "amount": 5.46e-05, - "txid": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98", - "address": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8" + "txid": "260f8515d5cf01148f41d85cf4e21251e532277b3c37ba22a3c72be4cd065b05", + "address": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg" }, { "vout": 1, "height": 200, "value": 4949934500, - "confirmations": 2, + "confirmations": 9, "amount": 49.499345, - "txid": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3", - "address": "bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8" + "txid": "4b90e72e007ba15a6a40fdfc84e5f898b4f34917ddd7eefb3d3c380238678261", + "address": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg" }, { "vout": 2, "height": 157, "value": 100000, - "confirmations": 45, + "confirmations": 52, "amount": 0.001, - "txid": "5872f2218f1423cb8455452e5837353ab173d47c46800cb93d0b0b372c49dd62", - "address": "bcrt1qu3xm5xg3tj9sv3ns4qdxgmk0n06h4w48udmzju" + "txid": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e", + "address": "bcrt1qlzwnh8crxz0ezlqgv69hf4g482dp7lmzd8rrxl" } ], "next_cursor": null, @@ -15602,7 +15807,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l` (str, required) - The address to search for + + address: `bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu` (str, required) - The address to search for + unconfirmed: `True` (bool, optional) - Include unconfirmed transactions + Default: `True` + only_tx_hashes: `True` (bool, optional) - Return only the tx hashes @@ -15618,28 +15823,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "1d031b9b6673ffa862e5c7d317e913556ea7cdd6a6bc1f5f92953c4c751f3c14" + "tx_hash": "46275b59a76a524ece7bbe93bdce57ca07ca43cb22ad6592ae00e7f1ab310111" }, { - "tx_hash": "d04cbc4143bd475740dfb3d02bfdaaa23e40fc357c9e9475d29ecc97b6a5851a" + "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614" }, { - "tx_hash": "dc24a98f4f65b086869c6350383240e014524d822aab2e2630ccaa222668e74a" + "tx_hash": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28" }, { - "tx_hash": "4441e31fc17357751ecc85a725105ff847a383cda23c8d9519c93ab66c150276" + "tx_hash": "befc407b97cc222e3e9fadff546d543c02db387adea45dd405c48f173c37b6ba" }, { - "tx_hash": "03cae60632c738d12c7ac2243ef952bbe11e47c70391ef56c5a8012cf1c8ca86" + "tx_hash": "5d1e44b8239fc1804e1dfb41c0ff24d1b9fe50fdd26c0a080ddcc73e152633bd" }, { - "tx_hash": "2459771d0358a9f4e4944129a25f7bd6d7cb7779fcdef57cff34ff7a6d6e7fa0" + "tx_hash": "ebdd9911ac289e537ed7c712b293decfb0d690c1b2390873d53383b30979e9c8" }, { - "tx_hash": "fb7a4f0b452e71991d1e44f65ec7ff0767bd9988506e968fc5b0a67d4aa921a3" + "tx_hash": "54cb02f91cc1d54472f02930f57a18f5e5c9fbd699b1c40339fa0b223b3c2af1" }, { - "tx_hash": "9ddc9005da276a24214c6bc21ab5432a41fdebd774b4360b50cf3bfd14f9c8cf" + "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4" } ], "next_cursor": null, @@ -15652,7 +15857,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qw3ttmzt6xvrkeerx0vqhjuufng2mualkxfplkw` (str, required) - The address to search for. + + address: `bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh` (str, required) - The address to search for. + block_index (int, optional) - The block index to search from. + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -15665,8 +15870,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 9, - "tx_hash": "837ad3733d118b7dbd9efcc3cb8e2d4689b54ab79ef5b521696406c4020a5752" + "block_index": 3, + "tx_hash": "538e56b094f8dbba32f0ec9a3e237582b618490767ec074bc8a822c4657988a8" } } ``` @@ -15676,7 +15881,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qper0n8yhaqk6pv930sh27784zpcwvyd593fuq8` (str, required) - The address to search for + + address: `bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg` (str, required) - The address to search for + unconfirmed (bool, optional) - Include unconfirmed transactions + Default: `False` + unspent_tx_hash (str, optional) - Filter by unspent_tx_hash @@ -15695,17 +15900,17 @@ Returns a list of unspent outputs for a specific address "vout": 0, "height": 200, "value": 5460, - "confirmations": 2, + "confirmations": 9, "amount": 5.46e-05, - "txid": "69c82666bed1f4cb98b3c9af4a8ae1face1cde752ff77c6db647b839b4630d98" + "txid": "260f8515d5cf01148f41d85cf4e21251e532277b3c37ba22a3c72be4cd065b05" }, { "vout": 1, "height": 200, "value": 4949934500, - "confirmations": 2, + "confirmations": 9, "amount": 49.499345, - "txid": "9c2f9e99beb979505233c78212b30ea9459b688aa39a6df3714257ad8519f6e3" + "txid": "4b90e72e007ba15a6a40fdfc84e5f898b4f34917ddd7eefb3d3c380238678261" } ], "next_cursor": null, @@ -15718,7 +15923,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q4f03lncyhn9atr065aw8g52pz0jkla6g45pzva` (str, required) - Address to get pubkey for. + + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - Address to get pubkey for. + provided_pubkeys (str, optional) - Comma separated list of provided pubkeys. + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -15730,7 +15935,7 @@ Get pubkey for an address. ``` { - "result": "0211fc3ee26c9dc627b64802ffd7b0b6e4b6b7457ab997983e0a3b366bc6f2f515" + "result": "03998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f5" } ``` @@ -15739,7 +15944,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `a7c1e3fc5d3854bd3b3150f2151942446526f58be0e313871ba8e03373115980` (str, required) - The transaction hash + + tx_hash: `790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8` (str, required) - The transaction hash + format: `hex` (str, optional) - Whether to return JSON output or raw hex + Default: `json` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -15751,7 +15956,7 @@ Get a transaction from the blockchain ``` { - "result": "0200000000010162dd492c370b0b3db90c80467cd473b13a3537582e455584cb23148f21f272580100000000ffffffff03e8030000000000001600149f22482d5ab564881e7bf35d1fe53187f23d85b700000000000000000c6a0a96667af1a04c6c644af8dced0827010000001600147456bd897a33076ce4667b017973899a15be77f60247304402205e33ab76c1c59b0f64afdae48c481b7782b32af7f3344bee338d76268a780b70022049e84e2831027ef76f8fba8f9a2799169ee928de4e38db4372a56702b9a83ab0012102d7f4ece0006152226d7ed234de9a4ead39071a2074bf0931525a3471a13b1d6d00000000" + "result": "020000000001016e888e762a5bf751913b28c9af990e94615e21052e49580e84f3926bebd9fca50100000000ffffffff03e803000000000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e100000000000000000c6a0aa390177068284096dde5dced082701000000160014d950bc5f9180ecff106845a230a250af93710c9a02473044022075c5b31202028752fbe4fef802a6100e72659ca2b61b87ead38c4cd1b7a3951102203037bfa13cc2fc1f3130ab74ee5aedde6649fb33ec0c628e7e9afba8fc8010c00121029bf65cc180612a741a06643bfa5b68c3dce8915d289aea03ca0bdbaa4d03e70700000000" } ``` @@ -15773,7 +15978,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc ``` { - "result": 61530 + "result": 61397 } ``` @@ -15846,28 +16051,28 @@ Returns all mempool events { "result": [ { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "tx_index": 69 + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_index": 76 }, - "timestamp": 1729876077.4463573 + "timestamp": 1730116127.587877 }, { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "memo": null, "quantity": 10000, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "status": "valid", - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "tx_index": 69, + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_index": 76, "asset_info": { "divisible": true, "asset_longname": null, @@ -15877,22 +16082,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729876077.4463573 + "timestamp": 1730116127.587877 }, { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "event": "CREDIT", "params": { - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "asset": "XCP", - "block_index": 201, + "block_index": 208, "calling_function": "send", - "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "quantity": 10000, - "tx_index": 69, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -15902,22 +16107,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729876077.4463573 + "timestamp": 1730116127.587877 }, { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "asset": "XCP", - "block_index": 201, - "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "block_index": 208, + "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "quantity": 10000, - "tx_index": 69, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -15927,30 +16132,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729876077.4463573 + "timestamp": 1730116127.587877 }, { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729876077.4463573, + "block_time": 1730116127.587877, "btc_amount": 0, - "data": "02000000000000000100000000000027108041bc73770b22d4ed185c6ac763c7d17e3a3272ce", + "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", "destination": "", "fee": 10000, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "tx_index": 69, - "utxos_info": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515:1", + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_index": 76, + "utxos_info": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "memo": null, "asset_info": { "divisible": true, @@ -15964,7 +16169,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729876077.4463573 + "timestamp": 1730116127.587877 } ], "next_cursor": null, @@ -15995,19 +16200,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "event": "CREDIT", "params": { - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "asset": "XCP", - "block_index": 201, + "block_index": 208, "calling_function": "send", - "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "quantity": 10000, - "tx_index": 69, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -16017,7 +16222,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729876077.4463573 + "timestamp": 1730116127.587877 } ], "next_cursor": null, @@ -16030,7 +16235,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515` (str, required) - The hash of the transaction to return + + tx_hash: `de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor (str, optional) - The last event index to return @@ -16050,28 +16255,28 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "tx_index": 69 + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_index": 76 }, - "timestamp": 1729876077.4463573 + "timestamp": 1730116127.587877 }, { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "memo": null, "quantity": 10000, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "status": "valid", - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "tx_index": 69, + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_index": 76, "asset_info": { "divisible": true, "asset_longname": null, @@ -16081,22 +16286,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729876077.4463573 + "timestamp": 1730116127.587877 }, { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "event": "CREDIT", "params": { - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "asset": "XCP", - "block_index": 201, + "block_index": 208, "calling_function": "send", - "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "quantity": 10000, - "tx_index": 69, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -16106,22 +16311,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729876077.4463573 + "timestamp": 1730116127.587877 }, { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", + "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", "asset": "XCP", - "block_index": 201, - "event": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "block_index": 208, + "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "quantity": 10000, - "tx_index": 69, + "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1729876074, + "block_time": 1730116123, "asset_info": { "divisible": true, "asset_longname": null, @@ -16131,30 +16336,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1729876077.4463573 + "timestamp": 1730116127.587877 }, { - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1729876077.4463573, + "block_time": 1730116127.587877, "btc_amount": 0, - "data": "02000000000000000100000000000027108041bc73770b22d4ed185c6ac763c7d17e3a3272ce", + "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", "destination": "", "fee": 10000, - "source": "bcrt1qlaalmyljhae2zzywrn0sw960gmmc0spxvpjqdj", - "tx_hash": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515", - "tx_index": 69, - "utxos_info": "4651c67a048a2edade78728ea7a8ec971902e40c4dd8a648f4adfec4928b0515:1", + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_index": 76, + "utxos_info": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qgx78xactyt2w6xzudtrk83730caryukw22u84l", + "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", "memo": null, "asset_info": { "divisible": true, @@ -16168,7 +16373,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1729876077.4463573 + "timestamp": 1730116127.587877 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 46719c4a6b..918414244e 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -12568,19 +12568,33 @@ "type": "str", "description": "comma-separated list of quantities to send (in satoshis, hence integer) (e.g. 1,2)" }, + { + "name": "memos", + "default": null, + "required": false, + "type": "list", + "description": "One `memos` argument by send, if any" + }, + { + "name": "memos_are_hex", + "default": null, + "required": false, + "type": "bool", + "description": "Whether the memos are in hexadecimal format" + }, { "name": "memo", "default": null, "required": false, "type": "str", - "description": "The Memo associated with this transaction (e.g. \"Hello, world!\")" + "description": "The Memo associated with this transaction, used by default for all sends if no `memos` are specified" }, { "name": "memo_is_hex", "default": false, "required": false, "type": "bool", - "description": "Whether the memo field is a hexadecimal string (e.g. False)" + "description": "Whether the memo field is a hexadecimal string" }, { "name": "encoding", diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json new file mode 100644 index 0000000000..5edc7b3ab9 --- /dev/null +++ b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json @@ -0,0 +1,11211 @@ +{ + "/v2/blocks": { + "result": [ + { + "block_index": 208, + "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_time": 1730116123, + "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "difficulty": 545259519, + "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", + "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", + "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "transaction_count": 1, + "confirmed": true + }, + { + "block_index": 207, + "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_time": 1730116110, + "previous_block_hash": "43e679712b4649bc798af14df94c86578f3b408d04178a5c2fc175d41a020122", + "difficulty": 545259519, + "ledger_hash": "ba02d6708a382d3713cfcfcccac729b1e7e29a6a2aa1c7d19685ccc856890da8", + "txlist_hash": "790b35ebd56c4d625af0345f72bd428d1cb0c0318f9935ae19163367f47cbd3a", + "messages_hash": "1933b8e86c5aad6c5816ac34109db0a5f96f3f784097419eaa5909389373eb47", + "transaction_count": 1, + "confirmed": true + }, + { + "block_index": 206, + "block_hash": "43e679712b4649bc798af14df94c86578f3b408d04178a5c2fc175d41a020122", + "block_time": 1730116106, + "previous_block_hash": "4a895299665e1f654c5117e9c4b133cbccccd6db23134dca896fa8a620b81d38", + "difficulty": 545259519, + "ledger_hash": "5191f4352b18e0244b417732e8ca9a2f4099e82fe6378941d597a9d0f44a35eb", + "txlist_hash": "11ed68e7e561ca9c47bd5e3b49cb3a916edd7b0565c99186172ce08b245266b6", + "messages_hash": "6d6616e6036b35108a1433422b6728e8e7184fe366730d6c4167cf4f128f3957", + "transaction_count": 1, + "confirmed": true + }, + { + "block_index": 205, + "block_hash": "4a895299665e1f654c5117e9c4b133cbccccd6db23134dca896fa8a620b81d38", + "block_time": 1730116102, + "previous_block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", + "difficulty": 545259519, + "ledger_hash": "9bc1700e61ef5a091713fdba122f7f916443a27ccc0f6f8962ebd916f77b09fe", + "txlist_hash": "447c3368dca8d934fd7757b6f897b5f6060d596592dc32123ae0664d1286d758", + "messages_hash": "933776eb7aae2e8246e02f0527252645708affea8a2cfcee96ed6a4022a47ab8", + "transaction_count": 1, + "confirmed": true + }, + { + "block_index": 204, + "block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", + "block_time": 1730116099, + "previous_block_hash": "37274251a093028e8065cbc9af85901d3961a9e5e04f4e726b13a0506a915652", + "difficulty": 545259519, + "ledger_hash": "aa1ba152bb405e250dbe4f7276f155e4c10345fbf42243536809bc9a0ca0307a", + "txlist_hash": "757b7ab2907208b3a7d0202f310e15a22fd7dd5205a5acef4262a2c013a56c84", + "messages_hash": "f866e444026dcc12e65fad983a1b2435470977f04f7668204304a707a604c729", + "transaction_count": 1, + "confirmed": true + } + ], + "next_cursor": 203, + "result_count": 108 + }, + "/v2/blocks/": { + "result": { + "block_index": 208, + "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_time": 1730116123, + "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "difficulty": 545259519, + "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", + "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", + "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "transaction_count": 1, + "confirmed": true + } + }, + "/v2/blocks/": { + "result": { + "block_index": 208, + "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_time": 1730116123, + "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "difficulty": 545259519, + "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", + "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", + "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "transaction_count": 1, + "confirmed": true + } + }, + "/v2/blocks//transactions": { + "result": [ + { + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_time": 1730116123, + "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "btc_amount": 1000, + "fee": 0, + "data": "0d00", + "supported": true, + "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "confirmed": true, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00001000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//events": { + "result": [ + { + "event_index": 675, + "event": "BLOCK_PARSED", + "params": { + "block_index": 208, + "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", + "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "transaction_count": 1, + "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", + "block_time": 1730116123 + }, + "tx_hash": null + }, + { + "event_index": 674, + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75 + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + }, + { + "event_index": 673, + "event": "DISPENSE", + "params": { + "asset": "XCP", + "block_index": 208, + "btc_amount": 1000, + "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "dispense_index": 0, + "dispense_quantity": 66, + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + }, + { + "event_index": 672, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "XCP", + "dispense_count": 2, + "give_remaining": 9268, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "status": 0, + "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_remaining_normalized": "0.00009268" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + }, + { + "event_index": 671, + "event": "CREDIT", + "params": { + "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "asset": "XCP", + "block_index": 208, + "calling_function": "dispense", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "quantity": 66, + "tx_index": 75, + "utxo": null, + "utxo_address": null, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + } + ], + "next_cursor": 670, + "result_count": 14 + }, + "/v2/blocks//events/counts": { + "result": [ + { + "event": "UTXO_MOVE", + "event_count": 2 + }, + { + "event": "TRANSACTION_PARSED", + "event_count": 1 + }, + { + "event": "NEW_TRANSACTION_OUTPUT", + "event_count": 1 + }, + { + "event": "NEW_TRANSACTION", + "event_count": 1 + }, + { + "event": "NEW_BLOCK", + "event_count": 1 + } + ], + "next_cursor": "DISPENSER_UPDATE", + "result_count": 10 + }, + "/v2/blocks//events/": { + "result": [ + { + "event_index": 671, + "event": "CREDIT", + "params": { + "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "asset": "XCP", + "block_index": 208, + "calling_function": "dispense", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "quantity": 66, + "tx_index": 75, + "utxo": null, + "utxo_address": null, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + }, + { + "event_index": 669, + "event": "CREDIT", + "params": { + "address": null, + "asset": "XCP", + "block_index": 208, + "calling_function": "utxo move", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "quantity": 1500000000, + "tx_index": 75, + "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + }, + { + "event_index": 666, + "event": "CREDIT", + "params": { + "address": null, + "asset": "MYASSETA", + "block_index": 208, + "calling_function": "utxo move", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "quantity": 1500000000, + "tx_index": 75, + "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_time": 1730116123, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/blocks//credits": { + "result": [ + { + "block_index": 208, + "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "asset": "XCP", + "quantity": 66, + "calling_function": "dispense", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + { + "block_index": 208, + "address": null, + "asset": "XCP", + "quantity": 1500000000, + "calling_function": "utxo move", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "confirmed": true, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + { + "block_index": 208, + "address": null, + "asset": "MYASSETA", + "quantity": 1500000000, + "calling_function": "utxo move", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "confirmed": true, + "block_time": 1730116123, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "15.00000000" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/blocks//debits": { + "result": [ + { + "block_index": 208, + "address": null, + "asset": "XCP", + "quantity": 1500000000, + "action": "utxo move", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "confirmed": true, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + { + "block_index": 208, + "address": null, + "asset": "MYASSETA", + "quantity": 1500000000, + "action": "utxo move", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "confirmed": true, + "block_time": 1730116123, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "15.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/blocks//expirations": { + "result": [ + { + "type": "order", + "object_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "block_index": 207, + "confirmed": true, + "block_time": 1730116110 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//cancels": { + "result": [ + { + "tx_index": 58, + "tx_hash": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603", + "block_index": 192, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "offer_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "status": "valid", + "confirmed": true, + "block_time": 1730116037 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//destructions": { + "result": [ + { + "tx_index": 61, + "tx_hash": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c", + "block_index": 195, + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "asset": "XCP", + "quantity": 1, + "tag": "64657374726f79", + "status": "valid", + "confirmed": true, + "block_time": 1730116049, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000001" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//issuances": { + "result": [ + { + "tx_index": 68, + "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "msg_index": 0, + "block_index": 201, + "asset": "MPMASSET", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset B", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730116077, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//sends": { + "result": [ + { + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "asset": "XCP", + "quantity": 1500000000, + "status": "valid", + "msg_index": 1, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "asset": "MYASSETA", + "quantity": 1500000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116123, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "15.00000000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/blocks//dispenses": { + "result": [ + { + "tx_index": 75, + "dispense_index": 0, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "asset": "XCP", + "dispense_quantity": 66, + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "btc_amount": 1000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "last_status_tx_hash": null, + "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//sweeps": { + "result": [ + { + "tx_index": 60, + "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "block_index": 194, + "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "flags": 1, + "status": "valid", + "memo": "sweep my assets", + "fee_paid": 600000, + "confirmed": true, + "block_time": 1730116045, + "fee_paid_normalized": "0.00600000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//fairminters": { + "result": [ + { + "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_index": 42, + "block_index": 155, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "A95428958968845068", + "asset_parent": "MYASSETA", + "asset_longname": "MYASSETA.SUBMYASSETA", + "description": "", + "price": 1, + "quantity_by_price": 5, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, + "confirmed": true, + "block_time": 1730115889, + "price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/blocks//fairmints": { + "result": [ + { + "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_index": 23, + "block_index": 136, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730115808, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/transactions": { + "result": [ + { + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_time": 1730116123, + "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "btc_amount": 1000, + "fee": 0, + "data": "0d00", + "supported": true, + "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "confirmed": true, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00001000" + }, + { + "tx_index": 74, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_time": 1730116110, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "supported": true, + "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "confirmed": true, + "unpacked_data": { + "message_type": "order", + "message_type_id": 10, + "message_data": { + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "expiration": 21, + "fee_required": 0, + "status": "open", + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000000" + } + }, + "btc_amount_normalized": "0.00000000" + } + ], + "next_cursor": 73, + "result_count": 76 + }, + "/v2/transactions/info": { + "result": { + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "decoded_tx": { + "version": 2, + "segwit": true, + "coinbase": false, + "vin": [ + { + "hash": "22235f2d650a226bf825e40c3473b0e86f83f9343173f94cbc4a32f87c65de5a", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + } + ], + "vout": [ + { + "value": 0, + "script_pub_key": "6a33092deefc89a2a67b64e4c655a20092a63cf5fe4084982c805fb233a2bc65b00a4ef01528b34993cb1af6dde83d6b01746fbf64" + }, + { + "value": 4999990000, + "script_pub_key": "001488638b12211ad2887d7013cdfa98b822eb7f220a" + } + ], + "vtxinwit": [ + "3044022021eba1988ce97e426258deed9b863cd2f5e51abed055fc30eafdd9d5673ebbca022035367d00fdbc15592a449b1d3aceb36faeb59a30b022c4120fe5ae511cdf3b4401", + "03998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f5" + ], + "lock_time": 0, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_id": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8" + }, + "unpacked_data": { + "message_type": "order", + "message_type_id": 10, + "message_data": { + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "expiration": 21, + "fee_required": 0, + "status": "open", + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000000" + } + }, + "btc_amount_normalized": "0.00000000" + } + }, + "/v2/transactions//info": { + "result": { + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", + "decoded_tx": { + "version": 2, + "segwit": true, + "coinbase": false, + "vin": [ + { + "hash": "5a50713f58b6550c247df7c2b8567c2c4a84f20cb8cb68753db3ba99f474dc98", + "n": 1, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + } + ], + "vout": [ + { + "value": 0, + "script_pub_key": "6a2eb84b152a827bd18cceeba1308198de9799d937904e165fafd90b85dbc93bc1a08b3043d21b9b815079166ecce04f" + }, + { + "value": 4999970000, + "script_pub_key": "00142ae165e7b04a97caa52d91a46d89891d704370ff" + } + ], + "vtxinwit": [ + "3044022041d4d57109cb06f7743adf5e31ff61ae4d4d8e4b0aa597e866693a4ec0db1e4b022068a38087d86e8473a3601cb134cb4a9cdee4c11ec669e3e4c9f0234ab4f7a9c101", + "02d9ed6b0141de6dd60aa82fcd650f0ea18a84a8c9069b9ff072e09c8174a59ea3" + ], + "lock_time": 0, + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_id": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f" + }, + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 10000, + "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "memo": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + } + }, + "/v2/transactions/unpack": { + "result": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "error": "memo too long" + } + } + }, + "/v2/transactions/": { + "result": { + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_time": 1730116123, + "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "btc_amount": 1000, + "fee": 0, + "data": "0d00", + "supported": true, + "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "confirmed": true, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00001000" + } + }, + "/v2/transactions/": { + "result": { + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_time": 1730116123, + "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "btc_amount": 1000, + "fee": 0, + "data": "0d00", + "supported": true, + "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "confirmed": true, + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00001000" + } + }, + "/v2/transactions//events": { + "result": [ + { + "event_index": 674, + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75 + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + }, + { + "event_index": 673, + "event": "DISPENSE", + "params": { + "asset": "XCP", + "block_index": 208, + "btc_amount": 1000, + "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "dispense_index": 0, + "dispense_quantity": 66, + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + }, + { + "event_index": 672, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "XCP", + "dispense_count": 2, + "give_remaining": 9268, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "status": 0, + "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_remaining_normalized": "0.00009268" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + }, + { + "event_index": 671, + "event": "CREDIT", + "params": { + "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "asset": "XCP", + "block_index": 208, + "calling_function": "dispense", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "quantity": 66, + "tx_index": 75, + "utxo": null, + "utxo_address": null, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + }, + { + "event_index": 670, + "event": "UTXO_MOVE", + "params": { + "asset": "XCP", + "block_index": 208, + "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "msg_index": 1, + "quantity": 1500000000, + "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "status": "valid", + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + } + ], + "next_cursor": 669, + "result_count": 12 + }, + "/v2/transactions//events": { + "result": [ + { + "event_index": 674, + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75 + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + }, + { + "event_index": 673, + "event": "DISPENSE", + "params": { + "asset": "XCP", + "block_index": 208, + "btc_amount": 1000, + "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "dispense_index": 0, + "dispense_quantity": 66, + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + }, + { + "event_index": 672, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "XCP", + "dispense_count": 2, + "give_remaining": 9268, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "status": 0, + "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_remaining_normalized": "0.00009268" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + }, + { + "event_index": 671, + "event": "CREDIT", + "params": { + "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "asset": "XCP", + "block_index": 208, + "calling_function": "dispense", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "quantity": 66, + "tx_index": 75, + "utxo": null, + "utxo_address": null, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + }, + { + "event_index": 670, + "event": "UTXO_MOVE", + "params": { + "asset": "XCP", + "block_index": 208, + "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "msg_index": 1, + "quantity": 1500000000, + "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "status": "valid", + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + } + ], + "next_cursor": 669, + "result_count": 12 + }, + "/v2/transactions//sends": { + "result": [ + { + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "asset": "XCP", + "quantity": 1500000000, + "status": "valid", + "msg_index": 1, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "asset": "MYASSETA", + "quantity": 1500000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116123, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "15.00000000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/transactions//dispenses": { + "result": [ + { + "tx_index": 75, + "dispense_index": 0, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "asset": "XCP", + "dispense_quantity": 66, + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "btc_amount": 1000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "last_status_tx_hash": null, + "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/transactions//events/": { + "result": [ + { + "event_index": 671, + "event": "CREDIT", + "params": { + "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "asset": "XCP", + "block_index": 208, + "calling_function": "dispense", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "quantity": 66, + "tx_index": 75, + "utxo": null, + "utxo_address": null, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + }, + { + "event_index": 669, + "event": "CREDIT", + "params": { + "address": null, + "asset": "XCP", + "block_index": 208, + "calling_function": "utxo move", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "quantity": 1500000000, + "tx_index": 75, + "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + }, + { + "event_index": 666, + "event": "CREDIT", + "params": { + "address": null, + "asset": "MYASSETA", + "block_index": 208, + "calling_function": "utxo move", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "quantity": 1500000000, + "tx_index": 75, + "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_time": 1730116123, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/transactions//events/": { + "result": [ + { + "event_index": 671, + "event": "CREDIT", + "params": { + "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "asset": "XCP", + "block_index": 208, + "calling_function": "dispense", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "quantity": 66, + "tx_index": 75, + "utxo": null, + "utxo_address": null, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + }, + { + "event_index": 669, + "event": "CREDIT", + "params": { + "address": null, + "asset": "XCP", + "block_index": 208, + "calling_function": "utxo move", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "quantity": 1500000000, + "tx_index": 75, + "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + }, + { + "event_index": 666, + "event": "CREDIT", + "params": { + "address": null, + "asset": "MYASSETA", + "block_index": 208, + "calling_function": "utxo move", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "quantity": 1500000000, + "tx_index": 75, + "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_time": 1730116123, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/addresses/balances": { + "result": [ + { + "asset": "A95428956980101314", + "total": 100000000000, + "addresses": [ + { + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "utxo": null, + "utxo_address": null, + "quantity": 100000000000, + "quantity_normalized": "1000.00000000" + } + ], + "asset_info": { + "asset_longname": "A95428959745315388.SUBNUMERIC", + "description": "A subnumeric asset", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "total_normalized": "1000.00000000" + }, + { + "asset": "MPMASSET", + "total": 99999998960, + "addresses": [ + { + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "utxo": null, + "utxo_address": null, + "quantity": 99999998960, + "quantity_normalized": "999.99999000" + } + ], + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "total_normalized": "999.99999000" + }, + { + "asset": "FAIRMINTA", + "total": 500000000, + "addresses": [ + { + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "utxo": null, + "utxo_address": null, + "quantity": 500000000, + "quantity_normalized": "5.00000000" + } + ], + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "total_normalized": "5.00000000" + }, + { + "asset": "MPMASSET", + "total": 960, + "addresses": [ + { + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "utxo": null, + "utxo_address": null, + "quantity": 960, + "quantity_normalized": "0.00000960" + } + ], + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "total_normalized": "0.00000960" + }, + { + "asset": "FAIRMINTD", + "total": 40, + "addresses": [ + { + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "utxo": null, + "utxo_address": null, + "quantity": 40, + "quantity_normalized": "0.00000040" + } + ], + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "total_normalized": "0.00000040" + }, + { + "asset": "FAIRMINTC", + "total": 19, + "addresses": [ + { + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "utxo": null, + "utxo_address": null, + "quantity": 19, + "quantity_normalized": "0.00000019" + } + ], + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "total_normalized": "0.00000019" + } + ], + "next_cursor": "MYASSETA", + "result_count": 8 + }, + "/v2/addresses/transactions": { + "result": [ + { + "tx_index": 74, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_time": 1730116110, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "supported": true, + "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "confirmed": true, + "unpacked_data": { + "message_type": "order", + "message_type_id": 10, + "message_data": { + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "expiration": 21, + "fee_required": 0, + "status": "open", + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 73, + "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "block_index": 206, + "block_hash": "43e679712b4649bc798af14df94c86578f3b408d04178a5c2fc175d41a020122", + "block_time": 1730116106, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0300038088638b12211ad2887d7013cdfa98b822eb7f220a802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "supported": true, + "utxos_info": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257:0", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "quantity": 10, + "memo": "memo1", + "memo_is_hex": false, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 72, + "tx_hash": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "block_index": 205, + "block_hash": "4a895299665e1f654c5117e9c4b133cbccccd6db23134dca896fa8a620b81d38", + "block_time": 1730116102, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0300038088638b12211ad2887d7013cdfa98b822eb7f220a802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ffc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "supported": true, + "utxos_info": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0:0", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "quantity": 10, + "memo": "746865206d656d6f", + "memo_is_hex": true, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "quantity": 10, + "memo": "746865206d656d6f", + "memo_is_hex": true, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 71, + "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "block_index": 204, + "block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", + "block_time": 1730116099, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "supported": true, + "utxos_info": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5:0", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "quantity": 10, + "memo": "memo2", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "quantity": 10, + "memo": "memo1", + "memo_is_hex": false, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 70, + "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "block_index": 203, + "block_hash": "37274251a093028e8065cbc9af85901d3961a9e5e04f4e726b13a0506a915652", + "block_time": 1730116095, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "supported": true, + "utxos_info": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354:0", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + } + ], + "next_cursor": 69, + "result_count": 46 + }, + "/v2/addresses/events": { + "result": [ + { + "event_index": 659, + "event": "OPEN_ORDER", + "params": { + "block_index": 207, + "expiration": 21, + "expire_index": 228, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "fee_required": 0, + "fee_required_remaining": 0, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "status": "open", + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_index": 74, + "block_time": 1730116110, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_time": 1730116110 + }, + { + "event_index": 658, + "event": "DEBIT", + "params": { + "action": "open order", + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "block_index": 207, + "event": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "quantity": 1000, + "tx_index": 74, + "utxo": null, + "utxo_address": null, + "block_time": 1730116110, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00001000" + }, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_time": 1730116110 + }, + { + "event_index": 657, + "event": "ORDER_EXPIRATION", + "params": { + "block_index": 207, + "order_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_time": 1730116110 + }, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_time": 1730116110 + }, + { + "event_index": 656, + "event": "CREDIT", + "params": { + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "block_index": 207, + "calling_function": "cancel order", + "event": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "quantity": 5000, + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "block_time": 1730116110, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00005000" + }, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_time": 1730116110 + }, + { + "event_index": 654, + "event": "NEW_TRANSACTION", + "params": { + "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_index": 207, + "block_time": 1730116110, + "btc_amount": 0, + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "destination": "", + "fee": 10000, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_index": 74, + "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "unpacked_data": { + "message_type": "order", + "message_type_id": 10, + "message_data": { + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "expiration": 21, + "fee_required": 0, + "status": "open", + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_time": 1730116110 + } + ], + "next_cursor": 650, + "result_count": 236 + }, + "/v2/addresses/mempool": { + "result": [ + { + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "ENHANCED_SEND", + "params": { + "asset": "XCP", + "block_index": 9999999, + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "memo": null, + "quantity": 10000, + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "status": "valid", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_index": 76, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1730116127.587877 + }, + { + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "CREDIT", + "params": { + "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "asset": "XCP", + "block_index": 208, + "calling_function": "send", + "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "quantity": 10000, + "tx_index": 76, + "utxo": null, + "utxo_address": null, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1730116127.587877 + }, + { + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "DEBIT", + "params": { + "action": "send", + "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "asset": "XCP", + "block_index": 208, + "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "quantity": 10000, + "tx_index": 76, + "utxo": null, + "utxo_address": null, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1730116127.587877 + }, + { + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "NEW_TRANSACTION", + "params": { + "block_hash": "mempool", + "block_index": 9999999, + "block_time": 1730116127.587877, + "btc_amount": 0, + "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", + "destination": "", + "fee": 10000, + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_index": 76, + "utxos_info": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f:1", + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 10000, + "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "memo": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + "timestamp": 1730116127.587877 + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/addresses/
/balances": { + "result": [ + { + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "A95428956980101314", + "quantity": 100000000000, + "utxo": null, + "utxo_address": null, + "asset_info": { + "asset_longname": "A95428959745315388.SUBNUMERIC", + "description": "A subnumeric asset", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "1000.00000000" + }, + { + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "MPMASSET", + "quantity": 99999998960, + "utxo": null, + "utxo_address": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "999.99999000" + }, + { + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "MYASSETA", + "quantity": 97999999980, + "utxo": null, + "utxo_address": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "980.00000000" + }, + { + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "quantity": 82649941196, + "utxo": null, + "utxo_address": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "826.49941000" + }, + { + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "TESTLOCKDESC", + "quantity": 9999990000, + "utxo": null, + "utxo_address": null, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "99.99990000" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/addresses/
/balances/": { + "result": [ + { + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "quantity": 82649941196, + "utxo": null, + "utxo_address": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "826.49941000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/credits": { + "result": [ + { + "block_index": 207, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "quantity": 5000, + "calling_function": "cancel order", + "event": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730116110, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00005000" + }, + { + "block_index": 206, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "quantity": 10, + "calling_function": "mpma send", + "event": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_index": 73, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730116106, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + }, + { + "block_index": 205, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "quantity": 10, + "calling_function": "mpma send", + "event": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "tx_index": 72, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730116102, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + }, + { + "block_index": 201, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "MPMASSET", + "quantity": 100000000000, + "calling_function": "issuance", + "event": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_index": 68, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730116077, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "1000.00000000" + }, + { + "block_index": 192, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "quantity": 1000, + "calling_function": "cancel order", + "event": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "tx_index": 58, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730116037, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00001000" + } + ], + "next_cursor": 59, + "result_count": 19 + }, + "/v2/addresses/
/debits": { + "result": [ + { + "block_index": 207, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "quantity": 1000, + "action": "open order", + "event": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_index": 74, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730116110, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00001000" + }, + { + "block_index": 204, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "quantity": 10, + "action": "mpma send", + "event": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_index": 71, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730116099, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + }, + { + "block_index": 204, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "MPMASSET", + "quantity": 20, + "action": "mpma send", + "event": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_index": 71, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730116099, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000020" + }, + { + "block_index": 203, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "quantity": 10, + "action": "mpma send", + "event": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_index": 70, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730116095, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + }, + { + "block_index": 203, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "MPMASSET", + "quantity": 20, + "action": "mpma send", + "event": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_index": 70, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730116095, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000020" + } + ], + "next_cursor": 61, + "result_count": 28 + }, + "/v2/addresses/
/bets": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/addresses/
/broadcasts": { + "result": [ + { + "tx_index": 24, + "tx_hash": "261b5785cc07a1f7000bee3be198f5d90393f35ed50ad3c8656eafadf5e468dc", + "block_index": 137, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "timestamp": 4003903983, + "value": 999.0, + "fee_fraction_int": 0, + "text": "Hello, world!", + "locked": false, + "status": "valid", + "confirmed": true, + "block_time": 1730115811, + "fee_fraction_int_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/burns": { + "result": [ + { + "tx_index": 0, + "tx_hash": "4e51590e06d15e411d148775427a365b6d8b79fe62e2bddbc21caf33d13f1998", + "block_index": 112, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "burned": 50000000, + "earned": 74999998167, + "status": "valid", + "confirmed": true, + "block_time": 1730115719, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99998000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/sends": { + "result": [ + { + "tx_index": 71, + "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "block_index": 204, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": "memo1", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116099, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 71, + "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "block_index": 204, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 1, + "memo": "memo3", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116099, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 71, + "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "block_index": 204, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 0, + "memo": "memo2", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116099, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 70, + "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "block_index": 203, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": "the memo", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116095, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 70, + "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "block_index": 203, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 1, + "memo": "the memo", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116095, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": 19, + "result_count": 12 + }, + "/v2/addresses/
/receives": { + "result": [ + { + "tx_index": 38, + "tx_hash": "16c2e31138126762962006973bfedc1ced24b4fc3d41616f4ea36346add19de5", + "block_index": 151, + "source": "ebdd9911ac289e537ed7c712b293decfb0d690c1b2390873d53383b30979e9c8:0", + "destination": "bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz", + "asset": "MYASSETA", + "quantity": 500000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1730115873, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/sends/": { + "result": [ + { + "tx_index": 71, + "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "block_index": 204, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 1, + "memo": "memo3", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116099, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 71, + "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "block_index": 204, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 0, + "memo": "memo2", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116099, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 70, + "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "block_index": 203, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 1, + "memo": "the memo", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116095, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 70, + "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "block_index": 203, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 0, + "memo": "the memo", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116095, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 69, + "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "block_index": 202, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "MPMASSET", + "quantity": 1000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116081, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/addresses/
/receives/": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/addresses/
/dispensers": { + "result": [ + { + "tx_index": 26, + "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1730115825, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 62, + "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "block_index": 197, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1730116055, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/addresses/
/dispensers/": { + "result": { + "tx_index": 26, + "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1730115825, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + } + }, + "/v2/addresses/
/dispenses/sends": { + "result": [ + { + "tx_index": 63, + "dispense_index": 0, + "tx_hash": "6afc6887d0234625af2de1aad7aa4588fb3aa054b9f1df4e9de8cd43df5794ae", + "block_index": 197, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "TESTLOCKDESC", + "dispense_quantity": 4000, + "dispenser_tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 62, + "block_index": 197, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730116055, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730115825, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "block_index": 140, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730115821, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/addresses/
/dispenses/receives": { + "result": [ + { + "tx_index": 63, + "dispense_index": 0, + "tx_hash": "6afc6887d0234625af2de1aad7aa4588fb3aa054b9f1df4e9de8cd43df5794ae", + "block_index": 197, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "TESTLOCKDESC", + "dispense_quantity": 4000, + "dispenser_tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 62, + "block_index": 197, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730116055, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730115825, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "block_index": 140, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730115821, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/addresses/
/dispenses/sends/": { + "result": [ + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730115825, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "block_index": 140, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730115821, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/addresses/
/dispenses/receives/": { + "result": [ + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730115825, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "block_index": 140, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730115821, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/addresses/
/sweeps": { + "result": [ + { + "tx_index": 60, + "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "block_index": 194, + "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "flags": 1, + "status": "valid", + "memo": "sweep my assets", + "fee_paid": 600000, + "confirmed": true, + "block_time": 1730116045, + "fee_paid_normalized": "0.00600000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/issuances": { + "result": [ + { + "tx_index": 68, + "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "msg_index": 0, + "block_index": 201, + "asset": "MPMASSET", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset B", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730116077, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" + }, + { + "tx_index": 48, + "tx_hash": "92d810aacd89aaed4756618250d3df3739516fda551847d01a705a57cf250e1c", + "msg_index": 0, + "block_index": 161, + "asset": "A95428956980101314", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "A subnumeric asset", + "fee_paid": 0, + "status": "valid", + "asset_longname": "A95428959745315388.SUBNUMERIC", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730115921, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 47, + "tx_hash": "652fa348e445bedc79af7c8da7e9edd116fc6586bb2896968234ade2b0de91c4", + "msg_index": 0, + "block_index": 160, + "asset": "TESTLOCKDESC", + "quantity": 0, + "divisible": true, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "Test Locking Description", + "fee_paid": 0, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": true, + "fair_minting": false, + "asset_events": "lock_description", + "confirmed": true, + "block_time": 1730115918, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 46, + "tx_hash": "a9640b7ef998e1287a94371074ed8dd399613638ecb6a9c1a406fd5ce29727e0", + "msg_index": 0, + "block_index": 159, + "asset": "A95428959745315388", + "quantity": 0, + "divisible": true, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "Test Locking Description", + "fee_paid": 0, + "status": "valid", + "asset_longname": "TESTLOCKDESC.MYSUBASSET", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730115914, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 45, + "tx_hash": "3b8ccc6e7a34c3d602643f13d9ce884ecd2831847f6eab4961146b4a71491ad1", + "msg_index": 0, + "block_index": 158, + "asset": "TESTLOCKDESC", + "quantity": 10000000000, + "divisible": true, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "Test Locking Description", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730115900, + "quantity_normalized": "100.00000000", + "fee_paid_normalized": "0.50000000" + } + ], + "next_cursor": 17, + "result_count": 22 + }, + "/v2/addresses/
/assets": { + "result": [ + { + "asset": "MPMASSET", + "asset_id": "101158363923", + "asset_longname": null, + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset B", + "first_issuance_block_index": 201, + "last_issuance_block_index": 201, + "confirmed": true, + "first_issuance_block_time": 1730116077, + "last_issuance_block_time": 1730116077, + "supply_normalized": "1000.00000000" + }, + { + "asset": "TESTLOCKDESC", + "asset_id": "70403005118950974", + "asset_longname": null, + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 10000000000, + "description": "Test Locking Description", + "first_issuance_block_index": 158, + "last_issuance_block_index": 160, + "confirmed": true, + "first_issuance_block_time": 1730115900, + "last_issuance_block_time": 1730115918, + "supply_normalized": "100.00000000" + }, + { + "asset": "MYASSETA", + "asset_id": "103804245870", + "asset_longname": null, + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset A", + "first_issuance_block_index": 148, + "last_issuance_block_index": 148, + "confirmed": true, + "first_issuance_block_time": 1730115851, + "last_issuance_block_time": 1730115851, + "supply_normalized": "1000.00000000" + }, + { + "asset": "FAIRMINTD", + "asset_id": "1046814266085", + "asset_longname": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 40, + "description": "", + "first_issuance_block_index": 135, + "last_issuance_block_index": 136, + "confirmed": true, + "first_issuance_block_time": 1730115804, + "last_issuance_block_time": 1730115808, + "supply_normalized": "0.00000040" + }, + { + "asset": "FAIRMINTC", + "asset_id": "1046814266084", + "asset_longname": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 19, + "description": "", + "first_issuance_block_index": 131, + "last_issuance_block_index": 134, + "confirmed": true, + "first_issuance_block_time": 1730115789, + "last_issuance_block_time": 1730115800, + "supply_normalized": "0.00000019" + } + ], + "next_cursor": 3, + "result_count": 7 + }, + "/v2/addresses/
/assets/issued": { + "result": [ + { + "asset": "MPMASSET", + "asset_id": "101158363923", + "asset_longname": null, + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset B", + "first_issuance_block_index": 201, + "last_issuance_block_index": 201, + "confirmed": true, + "first_issuance_block_time": 1730116077, + "last_issuance_block_time": 1730116077, + "supply_normalized": "1000.00000000" + }, + { + "asset": "TESTLOCKDESC", + "asset_id": "70403005118950974", + "asset_longname": null, + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 10000000000, + "description": "Test Locking Description", + "first_issuance_block_index": 158, + "last_issuance_block_index": 160, + "confirmed": true, + "first_issuance_block_time": 1730115900, + "last_issuance_block_time": 1730115918, + "supply_normalized": "100.00000000" + }, + { + "asset": "MYASSETA", + "asset_id": "103804245870", + "asset_longname": null, + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset A", + "first_issuance_block_index": 148, + "last_issuance_block_index": 148, + "confirmed": true, + "first_issuance_block_time": 1730115851, + "last_issuance_block_time": 1730115851, + "supply_normalized": "1000.00000000" + }, + { + "asset": "FAIRMINTD", + "asset_id": "1046814266085", + "asset_longname": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 40, + "description": "", + "first_issuance_block_index": 135, + "last_issuance_block_index": 136, + "confirmed": true, + "first_issuance_block_time": 1730115804, + "last_issuance_block_time": 1730115808, + "supply_normalized": "0.00000040" + }, + { + "asset": "FAIRMINTC", + "asset_id": "1046814266084", + "asset_longname": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 19, + "description": "", + "first_issuance_block_index": 131, + "last_issuance_block_index": 134, + "confirmed": true, + "first_issuance_block_time": 1730115789, + "last_issuance_block_time": 1730115800, + "supply_normalized": "0.00000019" + } + ], + "next_cursor": 3, + "result_count": 7 + }, + "/v2/addresses/
/assets/owned": { + "result": [ + { + "asset": "MPMASSET", + "asset_id": "101158363923", + "asset_longname": null, + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset B", + "first_issuance_block_index": 201, + "last_issuance_block_index": 201, + "confirmed": true, + "first_issuance_block_time": 1730116077, + "last_issuance_block_time": 1730116077, + "supply_normalized": "1000.00000000" + }, + { + "asset": "TESTLOCKDESC", + "asset_id": "70403005118950974", + "asset_longname": null, + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 10000000000, + "description": "Test Locking Description", + "first_issuance_block_index": 158, + "last_issuance_block_index": 160, + "confirmed": true, + "first_issuance_block_time": 1730115900, + "last_issuance_block_time": 1730115918, + "supply_normalized": "100.00000000" + }, + { + "asset": "MYASSETA", + "asset_id": "103804245870", + "asset_longname": null, + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset A", + "first_issuance_block_index": 148, + "last_issuance_block_index": 148, + "confirmed": true, + "first_issuance_block_time": 1730115851, + "last_issuance_block_time": 1730115851, + "supply_normalized": "1000.00000000" + }, + { + "asset": "FAIRMINTD", + "asset_id": "1046814266085", + "asset_longname": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 40, + "description": "", + "first_issuance_block_index": 135, + "last_issuance_block_index": 136, + "confirmed": true, + "first_issuance_block_time": 1730115804, + "last_issuance_block_time": 1730115808, + "supply_normalized": "0.00000040" + }, + { + "asset": "FAIRMINTC", + "asset_id": "1046814266084", + "asset_longname": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 19, + "description": "", + "first_issuance_block_index": 131, + "last_issuance_block_index": 134, + "confirmed": true, + "first_issuance_block_time": 1730115789, + "last_issuance_block_time": 1730115800, + "supply_normalized": "0.00000019" + } + ], + "next_cursor": 3, + "result_count": 7 + }, + "/v2/addresses/
/transactions": { + "result": [ + { + "tx_index": 74, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_time": 1730116110, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "supported": true, + "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "confirmed": true, + "unpacked_data": { + "message_type": "order", + "message_type_id": 10, + "message_data": { + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "expiration": 21, + "fee_required": 0, + "status": "open", + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 71, + "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "block_index": 204, + "block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", + "block_time": 1730116099, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "supported": true, + "utxos_info": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5:0", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "quantity": 10, + "memo": "memo2", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "quantity": 10, + "memo": "memo1", + "memo_is_hex": false, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 70, + "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "block_index": 203, + "block_hash": "37274251a093028e8065cbc9af85901d3961a9e5e04f4e726b13a0506a915652", + "block_time": 1730116095, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "supported": true, + "utxos_info": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354:0", + "confirmed": true, + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" + }, + { + "asset": "XCP", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "quantity": 10, + "memo": "the memo", + "memo_is_hex": false, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 69, + "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "block_index": 202, + "block_hash": "13a7856636590644ca049ed5074ccb96a6b9694cf0a3187ec4d3b50111b76353", + "block_time": 1730116081, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "02000000178d82231300000000000003e880a500a0204b6c11d32ab0bd14b78f9db630019898", + "supported": true, + "utxos_info": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02:1", + "confirmed": true, + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "MPMASSET", + "quantity": 1000, + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "memo": null, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00001000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + { + "tx_index": 68, + "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "block_index": 201, + "block_hash": "31229cfb58723faf819c8772e47a52c5cc4c531fdef4370ba12b94679b292486", + "block_time": 1730116077, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": null, + "btc_amount": 0, + "fee": 10000, + "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", + "supported": true, + "utxos_info": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc:1", + "confirmed": true, + "unpacked_data": { + "message_type": "issuance", + "message_type_id": 22, + "message_data": { + "asset_id": 101158363923, + "asset": "MPMASSET", + "subasset_longname": null, + "quantity": 100000000000, + "divisible": true, + "lock": false, + "reset": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset B", + "status": "valid", + "quantity_normalized": "1000.00000000" + } + }, + "btc_amount_normalized": "0.00000000" + } + ], + "next_cursor": 62, + "result_count": 31 + }, + "/v2/addresses/
/dividends": { + "result": [ + { + "tx_index": 41, + "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "block_index": 154, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "MYASSETA", + "dividend_asset": "XCP", + "quantity_per_unit": 100000000, + "fee_paid": 40000, + "status": "valid", + "confirmed": true, + "block_time": 1730115885, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "dividend_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_per_unit_normalized": "1.00000000", + "fee_paid_normalized": "0.00040000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/orders": { + "result": [ + { + "tx_index": 49, + "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "block_index": 184, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 183, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "block_time": 1730115936, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 51, + "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "block_index": 207, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_asset": "XCP", + "give_quantity": 10000, + "give_remaining": 5000, + "get_asset": "BTC", + "get_quantity": 10000, + "get_remaining": 5000, + "expiration": 21, + "expire_index": 206, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "block_time": 1730116110, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00010000", + "get_quantity_normalized": "0.00010000", + "get_remaining_normalized": "0.00005000", + "give_remaining_normalized": "0.00005000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 57, + "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "block_index": 192, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 212, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "cancelled", + "confirmed": true, + "block_time": 1730116037, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 59, + "tx_hash": "9d6f69deab8decbb02e247c2a2e19611f0931fb91c9bd48d5dad2bfae5328ffe", + "block_index": 193, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 214, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "block_time": 1730116041, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 74, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 228, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "block_time": 1730116110, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/addresses/
/fairminters": { + "result": [ + { + "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_index": 42, + "block_index": 155, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "A95428958968845068", + "asset_parent": "MYASSETA", + "asset_longname": "MYASSETA.SUBMYASSETA", + "description": "", + "price": 1, + "quantity_by_price": 5, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, + "confirmed": true, + "block_time": 1730115889, + "price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "tx_index": 22, + "block_index": 135, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "FAIRMINTD", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 50, + "quantity_by_price": 60, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": 40, + "commission": 0, + "paid_quantity": 34, + "confirmed": true, + "block_time": 1730115804, + "price_normalized": "0.00000050", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000060", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + }, + { + "tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "tx_index": 18, + "block_index": 131, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "FAIRMINTC", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 5, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": 19, + "commission": 0, + "paid_quantity": 5, + "confirmed": true, + "block_time": 1730115789, + "price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.00000019", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000005" + }, + { + "tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", + "tx_index": 14, + "block_index": 130, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "FAIRMINTB", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 10000000000, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 1000000000, + "soft_cap_deadline_block": 130, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 300000000, + "commission": 0, + "paid_quantity": 300000000, + "confirmed": true, + "block_time": 1730115785, + "price_normalized": "0.00000001", + "hard_cap_normalized": "100.00000000", + "soft_cap_normalized": "10.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "3.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "3.00000000" + }, + { + "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "tx_index": 10, + "block_index": 125, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "FAIRMINTA", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 10000000000, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 1000000000, + "soft_cap_deadline_block": 124, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 10000000000, + "commission": 0, + "paid_quantity": 10000000000, + "confirmed": true, + "block_time": 1730115766, + "price_normalized": "0.00000001", + "hard_cap_normalized": "100.00000000", + "soft_cap_normalized": "10.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "100.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "100.00000000" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/addresses/
/fairmints": { + "result": [ + { + "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_index": 23, + "block_index": 136, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730115808, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + }, + { + "tx_hash": "5da24fdc5b0f42414404df0110e4a3cd79789b5706be7b301d976f9eef623346", + "tx_index": 21, + "block_index": 134, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "asset": "FAIRMINTC", + "earn_quantity": 11, + "paid_quantity": 3, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730115800, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000011", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000003" + }, + { + "tx_hash": "98840296af69b519b38aaa9663baa393849683e67da07ce11e4aa21df9259e2f", + "tx_index": 20, + "block_index": 133, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "asset": "FAIRMINTC", + "earn_quantity": 3, + "paid_quantity": 1, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730115797, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000003", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000001" + }, + { + "tx_hash": "e26754ee3f011a743d3bd45d712d1fe4056c4b4f657f391b5d06c33191fe01d3", + "tx_index": 19, + "block_index": 132, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "asset": "FAIRMINTC", + "earn_quantity": 5, + "paid_quantity": 1, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730115793, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000005", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000001" + }, + { + "tx_hash": "def4759ea9104304f15b30965786c66cdc8cfb7a6029cdc08a336d6306c065ab", + "tx_index": 15, + "block_index": 127, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", + "asset": "FAIRMINTB", + "earn_quantity": 100000000, + "paid_quantity": 100000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730115774, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "1.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "1.00000000" + }, + { + "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_index": 11, + "block_index": 123, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "asset": "FAIRMINTA", + "earn_quantity": 500000000, + "paid_quantity": 500000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730115757, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "5.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "5.00000000" + } + ], + "next_cursor": null, + "result_count": 6 + }, + "/v2/addresses/
/fairmints/": { + "result": [ + { + "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_index": 11, + "block_index": 123, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "asset": "FAIRMINTA", + "earn_quantity": 500000000, + "paid_quantity": 500000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730115757, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "5.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "5.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/addresses/
/compose/bet": { + "error": "['feed doesn\u2019t exist']" + }, + "/v2/addresses/
/compose/broadcast": { + "result": { + "params": { + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "timestamp": 4003903985, + "value": 100.0, + "fee_fraction": 0.05, + "text": "\"Hello, world!\"" + }, + "name": "broadcast", + "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999985142, + "btc_fee": 14858, + "rawtransaction": "02000000000101d3e144ab2332715d931607f1ecb24833c4b9a45585fe12f43332f7c73a129bf60000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff0200000000000000002b6a291d58000c120f53e521b5b05fb0e87895087ccf3efe597674c5aa3f7ccf38911c75cc5b8d24700ddac0f6b7052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "unpacked_data": { + "message_type": "broadcast", + "message_type_id": 30, + "message_data": { + "timestamp": 4003903985, + "value": 100.0, + "fee_fraction_int": 5000000, + "text": "\"Hello, world!\"", + "status": "valid", + "fee_fraction_int_normalized": "0.05000000" + } + } + } + }, + "/v2/addresses/
/compose/btcpay": { + "result": { + "params": { + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614" + }, + "name": "btcpay", + "data": "434e5452505254590ba70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b50903810560268783a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "btc_in": 5000000000, + "btc_out": 3000, + "btc_change": 4999978090, + "btc_fee": 18910, + "rawtransaction": "02000000000101bd9316eab33fabb206193f04c3c50ab13a8abd6216de19a6c0961f00d3d615420000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff03b80b00000000000016001488638b12211ad2887d7013cdfa98b822eb7f220a00000000000000004b6a49f046fc5a1959206e926f59e82227fd923cabe7e968af1baad5abb587a412e4c8df215b2a2d9a5b3503ce52fdb5848339aa656b6f74c228373ce1809d813ad9cf4c41d5f20f2739395c6a9c052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "unpacked_data": { + "message_type": "btcpay", + "message_type_id": 11, + "message_data": { + "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "status": "valid" + } + } + } + }, + "/v2/addresses/
/compose/burn": { + "result": { + "params": { + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "quantity": 1000, + "overburn": false + }, + "name": "burn", + "data": null, + "btc_in": 5000000000, + "btc_out": 1000, + "btc_change": 4999985186, + "btc_fee": 13814, + "rawtransaction": "02000000000101abf65b20ebfd1237da0f36f872c79db358b4cfbf1297b2ed7848fce5a7d985270000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac22b8052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000" + } + }, + "/v2/addresses/
/compose/cancel": { + "result": { + "params": { + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "offer_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8" + }, + "name": "cancel", + "data": "434e545250525459465debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999985142, + "btc_fee": 14858, + "rawtransaction": "02000000000101ea75efdc042b5696d84822dc36cd87c7fd9a0b28512b49461245667b61127bfa0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff0200000000000000002b6a29a3e663a2f9bd00bb0c85b9c374325d5573e86694ddb726062f8c530213552021c46ead41917b6938b4f6b7052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "unpacked_data": { + "message_type": "cancel", + "message_type_id": 70, + "message_data": { + "offer_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "status": "valid" + } + } + } + }, + "/v2/addresses/
/compose/destroy": { + "result": { + "params": { + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "quantity": 1000, + "tag": "\"bugs!\"", + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00001000" + }, + "name": "destroy", + "data": "434e5452505254596e000000000000000100000000000003e822627567732122", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999985695, + "btc_fee": 14305, + "rawtransaction": "02000000000101a452400ddde4da92b3635c69a88b5cd73e6f5351b1035de6c8acb68e8350e3540000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000226a204361a4695fd456d2d053a108447b7a62d60471b989b415d7824044331a550ada1fba052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "unpacked_data": { + "message_type": "destroy", + "message_type_id": 110, + "message_data": { + "asset": "XCP", + "quantity": 1000, + "tag": "22627567732122", + "quantity_normalized": "0.00001000" + } + } + } + }, + "/v2/addresses/
/compose/dispenser": { + "result": { + "params": { + "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "asset": "XCP", + "give_quantity": 1000, + "escrow_quantity": 1000, + "mainchainrate": 100, + "status": 0, + "open_address": null, + "oracle_address": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "escrow_quantity_normalized": "0.00001000" + }, + "name": "dispenser", + "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", + "btc_in": 4949934500, + "btc_out": 0, + "btc_change": 4949919581, + "btc_fee": 14919, + "rawtransaction": "020000000001016182673802383c3dfbeed7dd1749f3b498f8e584fcfd406a5aa17b002ee7904b01000000160014fbcc5565cd7f2a35258ef40d6637506f0ce99fdbffffffff0200000000000000002c6a2a8c143ec5258db11ef95b2578f1c394ce761046911caf5c5472be4f258d5a148a45eb9d2e0476dbc475545dc7092701000000160014fbcc5565cd7f2a35258ef40d6637506f0ce99fdb02000000000000", + "unpacked_data": { + "message_type": "dispenser", + "message_type_id": 12, + "message_data": { + "asset": "XCP", + "give_quantity": 1000, + "escrow_quantity": 1000, + "mainchainrate": 100, + "dispenser_status": 0, + "action_address": null, + "oracle_address": null, + "status": "valid", + "give_quantity_normalized": "0.00001000", + "escrow_quantity_normalized": "0.00001000" + } + } + } + }, + "/v2/addresses/
/compose/dividend": { + "result": { + "params": { + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "quantity_per_unit": 1, + "asset": "FAIRMINTA", + "dividend_asset": "XCP", + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "dividend_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_per_unit_normalized": "0.00000001" + }, + "name": "dividend", + "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999985634, + "btc_fee": 14366, + "rawtransaction": "02000000000101d735a5a97da67446f40bb375c7bacff7ae44897f7b357a5bcef9d70280dfc6110000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000236a21a03fcd9fc46bcb4f3bf7ff58bc4a0eb125a43d3a551f7e1ceb32b36b7143d5bd87e2b9052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "unpacked_data": { + "message_type": "dividend", + "message_type_id": 50, + "message_data": { + "asset": "FAIRMINTA", + "quantity_per_unit": 1, + "dividend_asset": "XCP", + "status": "valid", + "quantity_per_unit_normalized": "0.00000001" + } + } + } + }, + "/v2/addresses/
/compose/issuance": { + "result": { + "params": { + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCPTEST", + "quantity": 1000, + "transfer_destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "lock": false, + "reset": false, + "description": null, + "quantity_normalized": "0.00001000" + }, + "name": "issuance", + "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", + "btc_in": 5000000000, + "btc_out": 546, + "btc_change": 4999983000, + "btc_fee": 16454, + "rawtransaction": "020000000001013eb5a26d5fe5337ccfca78b68a43f9933a7ad20e3127554d960f6ff708c487d60000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff03220200000000000016001488638b12211ad2887d7013cdfa98b822eb7f220a0000000000000000236a21d1ca33cf4433fd66e117d12625616dc906928c7356b7202b8c38c6ece5cbbbf61a98af052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "unpacked_data": { + "message_type": "issuance", + "message_type_id": 22, + "message_data": { + "asset_id": 7136017375, + "asset": "XCPTEST", + "subasset_longname": null, + "quantity": 1000, + "divisible": true, + "lock": false, + "reset": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "", + "status": "valid", + "quantity_normalized": "0.00001000" + } + } + } + }, + "/v2/addresses/
/compose/mpma": { + "result": { + "params": { + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset_dest_quant_list": [ + [ + "XCP", + "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + 1 + ], + [ + "MPMASSET", + "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + 2 + ] + ], + "memo": null, + "memo_is_hex": false + }, + "name": "mpma", + "data": "434e5452505254590300028088638b12211ad2887d7013cdfa98b822eb7f220a80a500a0204b6c11d32ab0bd14b78f9db63001989840000005e36088c4d000000000000000240000000000000004000000000000000100", + "btc_in": 20000000000, + "btc_out": 2000, + "btc_change": 19999942989, + "btc_fee": 55011, + "rawtransaction": "02000000000104c60cba2e8009b89a27f98afd970336d060fb80cc1169f8a9f26dd7ac5b8a7dfd0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff5cb37ed728a1783f00f380c510ff2108bf6796927d3302395641738997881b710000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff9cc56b3a54bde5e0b7fb83800bc84036f16ee99aeac4491de704b7f8f794c1a10000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff0f4711f98d37387476a466b7bf6964c28d870c7e940e1b02fb5795820960299e0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff03e8030000000000006951210338a7e3de6a76681a888a478f9c669e7a9f638cd384e2edf836ebd2f34158440e2103693a6379fc9675f11c9f519d3a54269240404cbe3f914fe22bb420c10df54ded2103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553aee8030000000000006951210327a7e3de6a76681a8859478d1ceefdf18d6696010c9f9debfb154a4b63b33b5221034b30e2dcfc3655ba708e82b78ae93225cfddfa8e3e09d7a22bb425226d7d89f12103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553ae4de916a80400000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000002000002000002000000000000", + "unpacked_data": { + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "quantity": 2, + "memo": null, + "memo_is_hex": null + }, + { + "asset": "XCP", + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "quantity": 1, + "memo": null, + "memo_is_hex": null + } + ] + } + } + }, + "/v2/addresses/
/compose/order": { + "result": { + "params": { + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "FAIRMINTA", + "get_quantity": 1000, + "expiration": 100, + "fee_required": 100, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000100" + }, + "name": "order", + "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999984528, + "btc_fee": 15472, + "rawtransaction": "02000000000101cf575d97277fbc0b3f884b49e7c0b8287ba8e0b4e5f4dd7e2d6e426502f4452c0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000356a334de8b15032fed03ecbb040c19ca15f53586192377670b513f6408556e6dd4e76a713c1550120fe9b40cb4140fa22d0446a03d390b5052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "unpacked_data": { + "message_type": "order", + "message_type_id": 10, + "message_data": { + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "FAIRMINTA", + "get_quantity": 1000, + "expiration": 100, + "fee_required": 100, + "status": "open", + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000100" + } + } + } + }, + "/v2/addresses/
/compose/send": { + "result": { + "params": { + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "quantity": 1000, + "memo": null, + "memo_is_hex": false, + "use_enhanced_send": true, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00001000" + }, + "name": "send", + "data": "434e54525052545902000000000000000100000000000003e880a500a0204b6c11d32ab0bd14b78f9db630019898", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999984835, + "btc_fee": 15165, + "rawtransaction": "020000000001019ed53bd0e7ff6981feb1b27c9556b9db3413d2a67ea7b8f2616a14fa73ed02d90000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000306a2ebe40c06091cfd95dd61d68e73ae5e96d8e96410698a8db380780e7d7268fe30fd5756bc9e8c2e4f3649989e08364c3b6052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 1000, + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "memo": null, + "quantity_normalized": "0.00001000" + } + } + } + }, + "/v2/addresses/
/compose/sweep": { + "result": { + "params": { + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "flags": 7, + "memo": "FFFF" + }, + "name": "sweep", + "data": "434e5452505254590480a500a0204b6c11d32ab0bd14b78f9db63001989807ffff", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999985634, + "btc_fee": 14366, + "rawtransaction": "02000000000101c7c9854253dc41c3edd654589b82ee42a8a8d6a0c5a578062b89c4b876f2e14d0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000236a219323e5b3f1b8081e81abc14abc27d4b631b6398c37296f72874455fe3f7372918ae2b9052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "unpacked_data": { + "message_type": "sweep", + "message_type_id": 4, + "message_data": { + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "flags": 7, + "memo": "ffff" + } + } + } + }, + "/v2/addresses/
/compose/dispense": { + "result": { + "params": { + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "quantity": 1000 + }, + "name": "dispense", + "data": "434e5452505254590d00", + "btc_in": 4949828000, + "btc_out": 1000, + "btc_change": 4949811958, + "btc_fee": 15042, + "rawtransaction": "0200000000010157826d7417826b89717d2b03e0b6b7151d49cb2661b13212aa8064fe0194a77a03000000160014a500a0204b6c11d32ab0bd14b78f9db630019898ffffffff03e8030000000000001600142ae165e7b04a97caa52d91a46d89891d704370ff00000000000000000c6a0a24ebcd38485c9b2a0013f622082701000000160014a500a0204b6c11d32ab0bd14b78f9db63001989802000000000000", + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + } + } + }, + "/v2/addresses/
/compose/fairminter": { + "result": { + "params": { + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "MYASSET", + "asset_parent": "", + "price": 10, + "quantity_by_price": 1, + "max_mint_per_tx": 0, + "hard_cap": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "minted_asset_commission": 0.0, + "burn_payment": false, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "description": "", + "price_normalized": "0.00000010", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + }, + "name": "fairminter", + "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999984774, + "btc_fee": 15226, + "rawtransaction": "02000000000101c79e70d7c5ad9665ae957326d1dc832f162bc8f91fc08508a7aefd8decaffd230000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000316a2fdfa88a71933c8839247123e96b0a8bdb6b9d82d36ae6ade916ef886e41d9c0ec79824a742e64b47c3d995a7267e06986b6052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "unpacked_data": { + "message_type": "fairminter", + "message_type_id": 90, + "message_data": { + "asset": "MYASSET", + "asset_parent": "", + "price": 10, + "quantity_by_price": 1, + "max_mint_per_tx": 0, + "hard_cap": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "minted_asset_commission": "0.00000000", + "burn_payment": false, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "description": "", + "price_normalized": "0.00000010", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + } + } + } + }, + "/v2/addresses/
/compose/fairmint": { + "result": { + "params": { + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "FAIRMINTC", + "quantity": 1, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000001" + }, + "name": "fairmint", + "data": "434e5452505254595b464149524d494e54437c31", + "btc_in": 5000000000, + "btc_out": 0, + "btc_change": 4999986432, + "btc_fee": 13568, + "rawtransaction": "020000000001017c64134589fec8915924dac30e82978fbd8537ab6caac5007618953859f6d0be0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000166a14be1d5b0358bbdd865615c155e83dfbe0f763564000bd052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "unpacked_data": { + "message_type": "fairmint", + "message_type_id": 91, + "message_data": { + "asset": "FAIRMINTC", + "quantity": 1, + "quantity_normalized": "0.00000001" + } + } + } + }, + "/v2/addresses/
/compose/attach": { + "result": { + "params": { + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "asset": "XCP", + "quantity": 1000, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00001000" + }, + "name": "utxo", + "data": "434e54525052545964626372743171337033636b79337072746667736c74737a30786c347839637974346837677332706674647a727c356465626162326539366432356635663532613662653066626366363533613038623338333239386236663135336332306237356164653432626135626261383a317c5843507c31303030", + "btc_in": 30000000000, + "btc_out": 3000, + "btc_change": 29999914790, + "btc_fee": 82210, + "rawtransaction": "02000000000106ccc2aca722ded998449d59d7ed65df1ffc201fca9873209432c035e327dbbf980000000016001488638b12211ad2887d7013cdfa98b822eb7f220afffffffff14198fceb8a1347a752edee8a1477d3779c0bd7b03fc4bed4512f0223b17ee50000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff8c2cefa9f81e31d2f5260a72f968a6a38923fad3cdfd2ce15b00e722f5ea9d1a0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffffbee94a0365aaaba05f7f1e7cc8da517c430b3df96dc44a2e5148f46d0fc8c3920000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff1816fcbb08b784d42ce93b687fdc9248c0bb2c6319f18521b506ad7d4a98fd480000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff052b2b309bd984a5d88ce3c9f0e82c5513cfb0117d7fba088957e06d5136eb460000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff04e8030000000000006951210374b391adbe520df76abe10c17a35f73315c1bd9be2f07d7d6752ca726570ec6121037bc277b82f1a939ab105b243286840d4e72d3a04eccd75004f164e2b8767328d2103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553aee8030000000000006951210274b391adbe520df76abf4b946c73f32413d7bbcae8bf2c682540ce76702aad9e21033bd977f8211dd390e045fe1576391692e63e6e40ea80321d1e171f7b846435a12103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553aee803000000000000695121035eb391adbe520df76ab810c3307bf73e7ef2de84b8b97e3d1526ac15161c9826210208b847c0432eeba3d27cc677405f27a7d55d5c7088b7077c7a722b49e60500952103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553ae265f22fc0600000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000002000002000002000002000002000000000000", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 100, + "message_data": { + "error": "Unknown message type" + } + } + } + }, + "/v2/utxos//compose/detach": { + "result": { + "params": { + "source": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "quantity": 1000, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00001000" + }, + "name": "utxo", + "data": "434e54525052545964373930633033373533623864333063326634363431393835616637396538633566666135383431633834343761376463396566346333666132316634626166383a307c626372743171337033636b79337072746667736c74737a30786c347839637974346837677332706674647a727c5843507c31303030", + "btc_in": 4950080000, + "btc_out": 3000, + "btc_change": 4950028128, + "btc_fee": 48872, + "rawtransaction": "02000000000103800dc6faffbce0f8de654c2c591a32293ab5d576ca6f5b9557fc8bf479baad0201000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e1ffffffff9334508606a39f9c29ed55dd1dd1289168342407aa97b6e5608c19377c1fee2000000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e1ffffffff7615312ced3fa25183d8cd654833e6e1d1595a0ebcdbe6957fa6a0449b57496201000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e1ffffffff04e803000000000000695121037535204461c50e0ec922545f777754f1e842928e3474efba5b213259f1e2643d2103b5bb5075cac0fc5ca4254da8744888c9eb70a87155638ae3cd8a0add587a64972103a5aa4d46065ce4a08c9ef90270ed78d57213c383f35d84424771c41fe83a132653aee803000000000000695121037535204461c50e0ec9255000262655a4eb15c08a342aecf65a702619f6a766da2102fcb0067fd5c4b54be8201fbd7e5dce8bef39a77d196edefb8eda01d35a6f62e72103a5aa4d46065ce4a08c9ef90270ed78d57213c383f35d84424771c41fe83a132653aee803000000000000695121035f35204461c50e0ec9360512236e16be8734f1903d20ecba3813546dc7d655b421028c836514acf7c5399c4678ce1229bdf1df41cb496157bd82faee69e43d1c50a82103a5aa4d46065ce4a08c9ef90270ed78d57213c383f35d84424771c41fe83a132653ae606f0b2701000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e102000002000002000000000000", + "unpacked_data": { + "message_type": "unknown", + "message_type_id": 100, + "message_data": { + "error": "Unknown message type" + } + } + } + }, + "/v2/assets": { + "result": [ + { + "asset": "MPMASSET", + "asset_id": "101158363923", + "asset_longname": null, + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset B", + "first_issuance_block_index": 201, + "last_issuance_block_index": 201, + "confirmed": true, + "first_issuance_block_time": 1730116077, + "last_issuance_block_time": 1730116077, + "supply_normalized": "1000.00000000" + }, + { + "asset": "UTXOASSET", + "asset_id": "4336417415635", + "asset_longname": null, + "issuer": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "owner": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset", + "first_issuance_block_index": 198, + "last_issuance_block_index": 198, + "confirmed": true, + "first_issuance_block_time": 1730116060, + "last_issuance_block_time": 1730116060, + "supply_normalized": "1000.00000000" + }, + { + "asset": "TESTLOCKDESC", + "asset_id": "70403005118950974", + "asset_longname": null, + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 10000000000, + "description": "Test Locking Description", + "first_issuance_block_index": 158, + "last_issuance_block_index": 160, + "confirmed": true, + "first_issuance_block_time": 1730115900, + "last_issuance_block_time": 1730115918, + "supply_normalized": "100.00000000" + }, + { + "asset": "MYASSETB", + "asset_id": "103804245871", + "asset_longname": null, + "issuer": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "owner": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset B", + "first_issuance_block_index": 157, + "last_issuance_block_index": 157, + "confirmed": true, + "first_issuance_block_time": 1730115896, + "last_issuance_block_time": 1730115896, + "supply_normalized": "1000.00000000" + }, + { + "asset": "MYASSETA", + "asset_id": "103804245870", + "asset_longname": null, + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 100000000000, + "description": "My super asset A", + "first_issuance_block_index": 148, + "last_issuance_block_index": 148, + "confirmed": true, + "first_issuance_block_time": 1730115851, + "last_issuance_block_time": 1730115851, + "supply_normalized": "1000.00000000" + } + ], + "next_cursor": 5, + "result_count": 10 + }, + "/v2/assets/": { + "result": { + "asset": "FAIRMINTA", + "asset_id": "1046814266082", + "asset_longname": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false, + "supply": 10000000000, + "description": "", + "first_issuance_block_index": 122, + "last_issuance_block_index": 125, + "confirmed": true, + "first_issuance_block_time": 1730115754, + "last_issuance_block_time": 1730115766, + "supply_normalized": "100.00000000" + } + }, + "/v2/assets//balances": { + "result": [ + { + "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "utxo": null, + "utxo_address": null, + "asset": "FAIRMINTA", + "quantity": 9500000000, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "95.00000000" + }, + { + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "utxo": null, + "utxo_address": null, + "asset": "FAIRMINTA", + "quantity": 500000000, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/assets//balances/
": { + "result": [ + { + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "quantity": 82649941196, + "utxo": null, + "utxo_address": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "826.49941000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/assets//orders": { + "result": [ + { + "tx_index": 49, + "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "block_index": 184, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 183, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "block_time": 1730115936, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 51, + "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "block_index": 207, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_asset": "XCP", + "give_quantity": 10000, + "give_remaining": 5000, + "get_asset": "BTC", + "get_quantity": 10000, + "get_remaining": 5000, + "expiration": 21, + "expire_index": 206, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "block_time": 1730116110, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00010000", + "get_quantity_normalized": "0.00010000", + "get_remaining_normalized": "0.00005000", + "give_remaining_normalized": "0.00005000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 57, + "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "block_index": 192, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 212, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "cancelled", + "confirmed": true, + "block_time": 1730116037, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 59, + "tx_hash": "9d6f69deab8decbb02e247c2a2e19611f0931fb91c9bd48d5dad2bfae5328ffe", + "block_index": 193, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 214, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "block_time": 1730116041, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 74, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 228, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "block_time": 1730116110, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + } + ], + "next_cursor": 52, + "result_count": 8 + }, + "/v2/assets//matches": { + "result": [ + { + "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx0_index": 51, + "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx1_index": 54, + "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "forward_asset": "XCP", + "forward_quantity": 3000, + "backward_asset": "BTC", + "backward_quantity": 3000, + "tx0_block_index": 186, + "tx1_block_index": 188, + "block_index": 188, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 208, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1730116023, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00003000", + "backward_quantity_normalized": "0.00003000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx0_index": 51, + "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx1_index": 52, + "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "forward_asset": "XCP", + "forward_quantity": 2000, + "backward_asset": "BTC", + "backward_quantity": 2000, + "tx0_block_index": 185, + "tx1_block_index": 186, + "block_index": 187, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 206, + "fee_paid": 0, + "status": "completed", + "confirmed": true, + "block_time": 1730116019, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00002000", + "backward_quantity_normalized": "0.00002000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "tx0_index": 49, + "tx0_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx1_index": 50, + "tx1_hash": "6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 162, + "tx1_block_index": 163, + "block_index": 184, + "tx0_expiration": 21, + "tx1_expiration": 20, + "match_expire_index": 183, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "block_time": 1730115936, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/assets//credits": { + "result": [ + { + "block_index": 194, + "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "asset": "FAIRMINTA", + "quantity": 500000000, + "calling_function": "sweep", + "event": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_index": 60, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730116045, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000" + }, + { + "block_index": 125, + "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "asset": "FAIRMINTA", + "quantity": 9000000000, + "calling_function": "fairmint", + "event": "633a29ddd1d5f12a25cad17061eaf217c3d3255f32284361eec6745ecebb5d8b", + "tx_index": 13, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730115766, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "90.00000000" + }, + { + "block_index": 124, + "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "asset": "FAIRMINTA", + "quantity": 500000000, + "calling_function": "unescrowed fairmint", + "event": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", + "tx_index": 12, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730115762, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000" + }, + { + "block_index": 124, + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "FAIRMINTA", + "quantity": 500000000, + "calling_function": "unescrowed fairmint", + "event": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_index": 11, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730115762, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000" + }, + { + "block_index": 124, + "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", + "asset": "FAIRMINTA", + "quantity": 500000000, + "calling_function": "escrowed fairmint", + "event": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", + "tx_index": 12, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730115762, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000" + } + ], + "next_cursor": 12, + "result_count": 6 + }, + "/v2/assets//debits": { + "result": [ + { + "block_index": 208, + "address": null, + "asset": "XCP", + "quantity": 1500000000, + "action": "utxo move", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "confirmed": true, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + { + "block_index": 207, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "quantity": 1000, + "action": "open order", + "event": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_index": 74, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730116110, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00001000" + }, + { + "block_index": 206, + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "quantity": 10, + "action": "mpma send", + "event": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_index": 73, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730116106, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + }, + { + "block_index": 205, + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "quantity": 10, + "action": "mpma send", + "event": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "tx_index": 72, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730116102, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + }, + { + "block_index": 204, + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "quantity": 10, + "action": "mpma send", + "event": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_index": 71, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730116099, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ], + "next_cursor": 63, + "result_count": 46 + }, + "/v2/assets//dividends": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/assets//issuances": { + "result": [ + { + "tx_index": 13, + "tx_hash": "633a29ddd1d5f12a25cad17061eaf217c3d3255f32284361eec6745ecebb5d8b", + "msg_index": 0, + "block_index": 125, + "asset": "FAIRMINTA", + "quantity": 9000000000, + "divisible": true, + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "", + "fee_paid": 0, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "fairmint", + "confirmed": true, + "block_time": 1730115766, + "quantity_normalized": "90.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 12, + "tx_hash": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", + "msg_index": 0, + "block_index": 124, + "asset": "FAIRMINTA", + "quantity": 500000000, + "divisible": true, + "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "", + "fee_paid": 0, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": true, + "asset_events": "fairmint", + "confirmed": true, + "block_time": 1730115762, + "quantity_normalized": "5.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 11, + "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "msg_index": 0, + "block_index": 123, + "asset": "FAIRMINTA", + "quantity": 500000000, + "divisible": true, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "", + "fee_paid": 0, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": true, + "asset_events": "fairmint", + "confirmed": true, + "block_time": 1730115757, + "quantity_normalized": "5.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 10, + "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "msg_index": 0, + "block_index": 122, + "asset": "FAIRMINTA", + "quantity": 0, + "divisible": true, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": "", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": true, + "asset_events": "open_fairminter", + "confirmed": true, + "block_time": 1730115754, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.50000000" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/assets//sends": { + "result": [ + { + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "asset": "XCP", + "quantity": 1500000000, + "status": "valid", + "msg_index": 1, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 73, + "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "block_index": 206, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": "memo1", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116106, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 72, + "tx_hash": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "block_index": 205, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": "746865206d656d6f", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116102, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 71, + "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "block_index": 204, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": "memo1", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116099, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 70, + "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "block_index": 203, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": "the memo", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116095, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": 14, + "result_count": 9 + }, + "/v2/assets//dispensers": { + "result": [ + { + "tx_index": 26, + "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1730115825, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 29, + "tx_hash": "ccb421515f869082058aa6d0f05423e1c6ce8751d4146c89dee14e26c1c3130b", + "block_index": 142, + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 10000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "dispense_count": 0, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1730115828, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00010000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 30, + "tx_hash": "a809a9c0b667c336b61ce3e892a7f2d80231121804f3f7db594da58d9ded5a52", + "block_index": 150, + "source": "mrTk1ThfTwE2f6PUY5vjkJvga5VgZXf4bk", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": "73d6215c951c71f26d391d50b72497e72188efc109135e95b1f58a4374c30be0", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 0, + "last_status_tx_source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "close_block_index": 150, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1730115869, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00000010", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 33, + "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "last_status_tx_hash": null, + "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/assets//dispensers/
": { + "result": { + "tx_index": 26, + "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1730115825, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + } + }, + "/v2/assets//holders": { + "result": [ + { + "asset": "FAIRMINTA", + "address": "mvCounterpartyXXXXXXXXXXXXXXW24Hef", + "quantity": 0, + "escrow": null, + "cursor_id": "balances_12", + "holding_type": "balances", + "status": null, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000000" + }, + { + "asset": "FAIRMINTA", + "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "quantity": 500000000, + "escrow": null, + "cursor_id": "balances_13", + "holding_type": "balances", + "status": null, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000" + }, + { + "asset": "FAIRMINTA", + "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "quantity": 0, + "escrow": null, + "cursor_id": "balances_14", + "holding_type": "balances", + "status": null, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000000" + }, + { + "asset": "FAIRMINTA", + "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "quantity": 9500000000, + "escrow": null, + "cursor_id": "balances_15", + "holding_type": "balances", + "status": null, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "95.00000000" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/assets//dispenses": { + "result": [ + { + "tx_index": 75, + "dispense_index": 0, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "asset": "XCP", + "dispense_quantity": 66, + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "btc_amount": 1000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "last_status_tx_hash": null, + "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + { + "tx_index": 34, + "dispense_index": 0, + "tx_hash": "20ee1f7c37198c60e5b697aa072434689128d11ddd55ed299c9fa30686503493", + "block_index": 147, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "destination": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "asset": "XCP", + "dispense_quantity": 666, + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "btc_amount": 10000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "last_status_tx_hash": null, + "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1730115848, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000666", + "btc_amount_normalized": "0.00010000" + }, + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730115825, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "block_index": 140, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730115821, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 4 + }, + "/v2/assets//subassets": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/assets//fairminters": { + "result": [ + { + "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "tx_index": 10, + "block_index": 125, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "FAIRMINTA", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 10000000000, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 1000000000, + "soft_cap_deadline_block": 124, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 10000000000, + "commission": 0, + "paid_quantity": 10000000000, + "confirmed": true, + "block_time": 1730115766, + "price_normalized": "0.00000001", + "hard_cap_normalized": "100.00000000", + "soft_cap_normalized": "10.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "100.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "100.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/assets//fairmints": { + "result": [ + { + "tx_hash": "633a29ddd1d5f12a25cad17061eaf217c3d3255f32284361eec6745ecebb5d8b", + "tx_index": 13, + "block_index": 125, + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "asset": "FAIRMINTA", + "earn_quantity": 9000000000, + "paid_quantity": 9000000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730115766, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "90.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "90.00000000" + }, + { + "tx_hash": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", + "tx_index": 12, + "block_index": 124, + "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "asset": "FAIRMINTA", + "earn_quantity": 500000000, + "paid_quantity": 500000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730115762, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "5.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "5.00000000" + }, + { + "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_index": 11, + "block_index": 123, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "asset": "FAIRMINTA", + "earn_quantity": 500000000, + "paid_quantity": 500000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730115757, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "5.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "5.00000000" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/assets//fairmints/
": { + "result": [ + { + "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_index": 11, + "block_index": 123, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "asset": "FAIRMINTA", + "earn_quantity": 500000000, + "paid_quantity": 500000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730115757, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "5.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "5.00000000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/orders": { + "result": [ + { + "tx_index": 49, + "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "block_index": 184, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 183, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "block_time": 1730115936, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 52, + "tx_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "block_index": 187, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "give_asset": "BTC", + "give_quantity": 2000, + "give_remaining": 0, + "get_asset": "XCP", + "get_quantity": 2000, + "get_remaining": 0, + "expiration": 21, + "expire_index": 207, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "filled", + "confirmed": true, + "block_time": 1730116019, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00002000", + "get_quantity_normalized": "0.00002000", + "get_remaining_normalized": "0.00000000", + "give_remaining_normalized": "0.00000000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 54, + "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "block_index": 188, + "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "give_asset": "BTC", + "give_quantity": 3000, + "give_remaining": 0, + "get_asset": "XCP", + "get_quantity": 3000, + "get_remaining": 0, + "expiration": 21, + "expire_index": 209, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "block_time": 1730116023, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00003000", + "get_quantity_normalized": "0.00003000", + "get_remaining_normalized": "0.00000000", + "give_remaining_normalized": "0.00000000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 57, + "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "block_index": 192, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 212, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "cancelled", + "confirmed": true, + "block_time": 1730116037, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 59, + "tx_hash": "9d6f69deab8decbb02e247c2a2e19611f0931fb91c9bd48d5dad2bfae5328ffe", + "block_index": 193, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 214, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "block_time": 1730116041, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + } + ], + "next_cursor": 51, + "result_count": 8 + }, + "/v2/orders/": { + "result": { + "tx_index": 74, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 228, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "block_time": 1730116110, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + } + }, + "/v2/orders//matches": { + "result": [ + { + "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx0_index": 51, + "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx1_index": 54, + "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "forward_asset": "XCP", + "forward_quantity": 3000, + "backward_asset": "BTC", + "backward_quantity": 3000, + "tx0_block_index": 186, + "tx1_block_index": 188, + "block_index": 188, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 208, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1730116023, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00003000", + "backward_quantity_normalized": "0.00003000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx0_index": 51, + "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx1_index": 52, + "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "forward_asset": "XCP", + "forward_quantity": 2000, + "backward_asset": "BTC", + "backward_quantity": 2000, + "tx0_block_index": 185, + "tx1_block_index": 186, + "block_index": 187, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 206, + "fee_paid": 0, + "status": "completed", + "confirmed": true, + "block_time": 1730116019, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00002000", + "backward_quantity_normalized": "0.00002000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/orders//btcpays": { + "result": [ + { + "tx_index": 53, + "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "block_index": 187, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "btc_amount": 2000, + "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "status": "valid", + "confirmed": true, + "block_time": 1730116019, + "btc_amount_normalized": "0.00002000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/orders//": { + "result": [ + { + "tx_index": 52, + "tx_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "block_index": 187, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "give_asset": "BTC", + "give_quantity": 2000, + "give_remaining": 0, + "get_asset": "XCP", + "get_quantity": 2000, + "get_remaining": 0, + "expiration": 21, + "expire_index": 207, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "filled", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "SELL", + "market_price": "1.00000000", + "block_time": 1730116019, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00002000", + "get_quantity_normalized": "0.00002000", + "get_remaining_normalized": "0.00000000", + "give_remaining_normalized": "0.00000000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 54, + "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "block_index": 188, + "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "give_asset": "BTC", + "give_quantity": 3000, + "give_remaining": 0, + "get_asset": "XCP", + "get_quantity": 3000, + "get_remaining": 0, + "expiration": 21, + "expire_index": 209, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "open", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "SELL", + "market_price": "1.00000000", + "block_time": 1730116023, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00003000", + "get_quantity_normalized": "0.00003000", + "get_remaining_normalized": "0.00000000", + "give_remaining_normalized": "0.00000000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 49, + "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "block_index": 184, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 183, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1730115936, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 51, + "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "block_index": 207, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_asset": "XCP", + "give_quantity": 10000, + "give_remaining": 5000, + "get_asset": "BTC", + "get_quantity": 10000, + "get_remaining": 5000, + "expiration": 21, + "expire_index": 206, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "expired", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1730116110, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00010000", + "get_quantity_normalized": "0.00010000", + "get_remaining_normalized": "0.00005000", + "give_remaining_normalized": "0.00005000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + { + "tx_index": 57, + "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "block_index": 192, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "expiration": 21, + "expire_index": 212, + "fee_required": 0, + "fee_required_remaining": 0, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "status": "cancelled", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1730116037, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + } + ], + "next_cursor": 59, + "result_count": 8 + }, + "/v2/orders///matches": { + "result": [ + { + "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx0_index": 51, + "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx1_index": 54, + "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "forward_asset": "XCP", + "forward_quantity": 3000, + "backward_asset": "BTC", + "backward_quantity": 3000, + "tx0_block_index": 186, + "tx1_block_index": 188, + "block_index": 188, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 208, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1730116023, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00003000", + "backward_quantity_normalized": "0.00003000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx0_index": 51, + "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx1_index": 52, + "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "forward_asset": "XCP", + "forward_quantity": 2000, + "backward_asset": "BTC", + "backward_quantity": 2000, + "tx0_block_index": 185, + "tx1_block_index": 186, + "block_index": 187, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 206, + "fee_paid": 0, + "status": "completed", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1730116019, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00002000", + "backward_quantity_normalized": "0.00002000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "tx0_index": 49, + "tx0_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx1_index": 50, + "tx1_hash": "6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 162, + "tx1_block_index": 163, + "block_index": 184, + "tx0_expiration": 21, + "tx1_expiration": 20, + "match_expire_index": 183, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "market_pair": "BTC/XCP", + "market_dir": "BUY", + "market_price": "1.00000000", + "block_time": 1730115936, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/order_matches": { + "result": [ + { + "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx0_index": 51, + "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx1_index": 54, + "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "forward_asset": "XCP", + "forward_quantity": 3000, + "backward_asset": "BTC", + "backward_quantity": 3000, + "tx0_block_index": 186, + "tx1_block_index": 188, + "block_index": 188, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 208, + "fee_paid": 0, + "status": "pending", + "confirmed": true, + "block_time": 1730116023, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00003000", + "backward_quantity_normalized": "0.00003000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx0_index": 51, + "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx1_index": 52, + "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "forward_asset": "XCP", + "forward_quantity": 2000, + "backward_asset": "BTC", + "backward_quantity": 2000, + "tx0_block_index": 185, + "tx1_block_index": 186, + "block_index": 187, + "tx0_expiration": 21, + "tx1_expiration": 21, + "match_expire_index": 206, + "fee_paid": 0, + "status": "completed", + "confirmed": true, + "block_time": 1730116019, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00002000", + "backward_quantity_normalized": "0.00002000", + "fee_paid_normalized": "0.00000000" + }, + { + "id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "tx0_index": 49, + "tx0_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx1_index": 50, + "tx1_hash": "6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "forward_asset": "XCP", + "forward_quantity": 1000, + "backward_asset": "BTC", + "backward_quantity": 1000, + "tx0_block_index": 162, + "tx1_block_index": 163, + "block_index": 184, + "tx0_expiration": 21, + "tx1_expiration": 20, + "match_expire_index": 183, + "fee_paid": 0, + "status": "expired", + "confirmed": true, + "block_time": 1730115936, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00001000", + "backward_quantity_normalized": "0.00001000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 3 + }, + "/v2/bets": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/bets/": { + "error": "Not found" + }, + "/v2/bets//matches": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/bets//resolutions": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/burns": { + "result": [ + { + "tx_index": 9, + "tx_hash": "40efc8e4de6bc24410016279eb759071c80e3ac3ee8fc7a52725555c3f89979e", + "block_index": 121, + "source": "bcrt1qrac7m6sqdzx9h798y52wk0qj5205d7vtqfjyds", + "burned": 50000000, + "earned": 74999996667, + "status": "valid", + "confirmed": true, + "block_time": 1730115749, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99997000" + }, + { + "tx_index": 8, + "tx_hash": "b3899728f4fbe6971190ca0558018b101f89d77a0a686dc9b3ccc415ca018e8b", + "block_index": 120, + "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "burned": 50000000, + "earned": 74999996833, + "status": "valid", + "confirmed": true, + "block_time": 1730115746, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99997000" + }, + { + "tx_index": 7, + "tx_hash": "3a7a3f1159a9cfa190b40ae0aeea74f6e7bb59e77c72bf9dfcd020f2cf08b918", + "block_index": 119, + "source": "bcrt1qlzwnh8crxz0ezlqgv69hf4g482dp7lmzd8rrxl", + "burned": 50000000, + "earned": 74999997000, + "status": "valid", + "confirmed": true, + "block_time": 1730115741, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99997000" + }, + { + "tx_index": 6, + "tx_hash": "6315228e07c37718a4a5b514e8966e340617b45669cadb46b87c79fde9c61081", + "block_index": 118, + "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "burned": 50000000, + "earned": 74999997167, + "status": "valid", + "confirmed": true, + "block_time": 1730115738, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99997000" + }, + { + "tx_index": 5, + "tx_hash": "62015459a282a1c5ce61590bf6a13d1cc03908e59d02d09d8bb4327c8e8349f9", + "block_index": 117, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "burned": 50000000, + "earned": 74999997333, + "status": "valid", + "confirmed": true, + "block_time": 1730115735, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99997000" + } + ], + "next_cursor": 4, + "result_count": 10 + }, + "/v2/dispensers": { + "result": [ + { + "tx_index": 26, + "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1730115825, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 29, + "tx_hash": "ccb421515f869082058aa6d0f05423e1c6ce8751d4146c89dee14e26c1c3130b", + "block_index": 142, + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 10000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "dispense_count": 0, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1730115828, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00010000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 30, + "tx_hash": "a809a9c0b667c336b61ce3e892a7f2d80231121804f3f7db594da58d9ded5a52", + "block_index": 150, + "source": "mrTk1ThfTwE2f6PUY5vjkJvga5VgZXf4bk", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": "73d6215c951c71f26d391d50b72497e72188efc109135e95b1f58a4374c30be0", + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 0, + "last_status_tx_source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "close_block_index": 150, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1730115869, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00000010", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 62, + "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "block_index": 197, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "TESTLOCKDESC", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1730116055, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + { + "tx_index": 33, + "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "last_status_tx_hash": null, + "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/dispensers/": { + "result": { + "tx_index": 26, + "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "confirmed": true, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "block_time": 1730115825, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + } + }, + "/v2/dispensers//dispenses": { + "result": [ + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730115825, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "block_index": 140, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730115821, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/dividends": { + "result": [ + { + "tx_index": 41, + "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "block_index": 154, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "MYASSETA", + "dividend_asset": "XCP", + "quantity_per_unit": 100000000, + "fee_paid": 40000, + "status": "valid", + "confirmed": true, + "block_time": 1730115885, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "dividend_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_per_unit_normalized": "1.00000000", + "fee_paid_normalized": "0.00040000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/dividends/": { + "result": { + "tx_index": 41, + "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "block_index": 154, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "MYASSETA", + "dividend_asset": "XCP", + "quantity_per_unit": 100000000, + "fee_paid": 40000, + "status": "valid", + "confirmed": true, + "block_time": 1730115885, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "dividend_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_per_unit_normalized": "1.00000000", + "fee_paid_normalized": "0.00040000" + } + }, + "/v2/dividends//credits": { + "result": [ + { + "block_index": 154, + "address": null, + "asset": "XCP", + "quantity": 1500000000, + "calling_function": "dividend", + "event": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_index": 41, + "utxo": "98dc74f499bab33d7568cbb80cf2844a2c7c56b8c2f77d240c55b6583f71505a:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "confirmed": true, + "block_time": 1730115885, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + { + "block_index": 154, + "address": "bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz", + "asset": "XCP", + "quantity": 500000000, + "calling_function": "dividend", + "event": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_index": 41, + "utxo": null, + "utxo_address": null, + "confirmed": true, + "block_time": 1730115885, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "5.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/events": { + "result": [ + { + "event_index": 675, + "event": "BLOCK_PARSED", + "params": { + "block_index": 208, + "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", + "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "transaction_count": 1, + "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", + "block_time": 1730116123 + }, + "tx_hash": null, + "block_index": 208, + "block_time": 1730116123 + }, + { + "event_index": 674, + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75 + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + }, + { + "event_index": 673, + "event": "DISPENSE", + "params": { + "asset": "XCP", + "block_index": 208, + "btc_amount": 1000, + "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "dispense_index": 0, + "dispense_quantity": 66, + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + }, + { + "event_index": 672, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "XCP", + "dispense_count": 2, + "give_remaining": 9268, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "status": 0, + "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_remaining_normalized": "0.00009268" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + }, + { + "event_index": 671, + "event": "CREDIT", + "params": { + "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "asset": "XCP", + "block_index": 208, + "calling_function": "dispense", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "quantity": 66, + "tx_index": 75, + "utxo": null, + "utxo_address": null, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + } + ], + "next_cursor": 670, + "result_count": 676 + }, + "/v2/events/": { + "result": { + "event_index": 675, + "event": "BLOCK_PARSED", + "params": { + "block_index": 208, + "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", + "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "transaction_count": 1, + "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", + "block_time": 1730116123 + }, + "tx_hash": null, + "block_index": 208, + "block_time": 1730116123 + } + }, + "/v2/events/counts": { + "result": [ + { + "event": "UTXO_MOVE", + "event_count": 11 + }, + { + "event": "TRANSACTION_PARSED", + "event_count": 61 + }, + { + "event": "SWEEP", + "event_count": 1 + }, + { + "event": "REFILL_DISPENSER", + "event_count": 1 + }, + { + "event": "ORDER_UPDATE", + "event_count": 12 + } + ], + "next_cursor": "ORDER_MATCH_UPDATE", + "result_count": 36 + }, + "/v2/events/": { + "result": [ + { + "event_index": 671, + "event": "CREDIT", + "params": { + "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "asset": "XCP", + "block_index": 208, + "calling_function": "dispense", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "quantity": 66, + "tx_index": 75, + "utxo": null, + "utxo_address": null, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + }, + { + "event_index": 669, + "event": "CREDIT", + "params": { + "address": null, + "asset": "XCP", + "block_index": 208, + "calling_function": "utxo move", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "quantity": 1500000000, + "tx_index": 75, + "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + }, + { + "event_index": 666, + "event": "CREDIT", + "params": { + "address": null, + "asset": "MYASSETA", + "block_index": 208, + "calling_function": "utxo move", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "quantity": 1500000000, + "tx_index": 75, + "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_time": 1730116123, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + }, + { + "event_index": 656, + "event": "CREDIT", + "params": { + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "block_index": 207, + "calling_function": "cancel order", + "event": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "quantity": 5000, + "tx_index": 0, + "utxo": null, + "utxo_address": null, + "block_time": 1730116110, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00005000" + }, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_time": 1730116110 + }, + { + "event_index": 645, + "event": "CREDIT", + "params": { + "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "block_index": 206, + "calling_function": "mpma send", + "event": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "quantity": 10, + "tx_index": 73, + "utxo": null, + "utxo_address": null, + "block_time": 1730116106, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + }, + "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "block_index": 206, + "block_time": 1730116106 + } + ], + "next_cursor": 644, + "result_count": 91 + }, + "/v2/events//count": { + "result": { + "event": "CREDIT", + "event_count": 91 + } + }, + "/v2/dispenses": { + "result": [ + { + "tx_index": 75, + "dispense_index": 0, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "asset": "XCP", + "dispense_quantity": 66, + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "btc_amount": 1000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "last_status_tx_hash": null, + "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + { + "tx_index": 63, + "dispense_index": 0, + "tx_hash": "6afc6887d0234625af2de1aad7aa4588fb3aa054b9f1df4e9de8cd43df5794ae", + "block_index": 197, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "TESTLOCKDESC", + "dispense_quantity": 4000, + "dispenser_tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 62, + "block_index": 197, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 6000, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 1, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00006000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730116055, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 34, + "dispense_index": 0, + "tx_hash": "20ee1f7c37198c60e5b697aa072434689128d11ddd55ed299c9fa30686503493", + "block_index": 147, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "destination": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "asset": "XCP", + "dispense_quantity": 666, + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "btc_amount": 10000, + "confirmed": true, + "dispenser": { + "tx_index": 33, + "block_index": 208, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 0, + "give_remaining": 9268, + "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "last_status_tx_hash": null, + "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": 0.01, + "oracle_price": 66600.0, + "fiat_unit": "USD", + "oracle_price_last_updated": 138, + "satoshi_price": 16, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00009268", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000016" + }, + "block_time": 1730115848, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000666", + "btc_amount_normalized": "0.00010000" + }, + { + "tx_index": 28, + "dispense_index": 0, + "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "dispense_quantity": 4000, + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "btc_amount": 4000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730115825, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00004000", + "btc_amount_normalized": "0.00004000" + }, + { + "tx_index": 27, + "dispense_index": 0, + "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "block_index": 140, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "asset": "XCP", + "dispense_quantity": 6000, + "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "btc_amount": 6000, + "confirmed": true, + "dispenser": { + "tx_index": 26, + "block_index": 141, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "give_quantity": 1, + "escrow_quantity": 10000, + "satoshirate": 1, + "status": 10, + "give_remaining": 0, + "oracle_address": null, + "last_status_tx_hash": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "dispense_count": 2, + "last_status_tx_source": null, + "close_block_index": null, + "fiat_price": null, + "oracle_price": null, + "fiat_unit": null, + "oracle_price_last_updated": null, + "satoshi_price": 1, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00000000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001", + "satoshi_price_normalized": "0.00000001" + }, + "block_time": 1730115821, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00006000", + "btc_amount_normalized": "0.00006000" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/sends": { + "result": [ + { + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "asset": "XCP", + "quantity": 1500000000, + "status": "valid", + "msg_index": 1, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 75, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "asset": "MYASSETA", + "quantity": 1500000000, + "status": "valid", + "msg_index": 0, + "memo": null, + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116123, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "15.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 73, + "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "block_index": 206, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "XCP", + "quantity": 10, + "status": "valid", + "msg_index": 2, + "memo": "memo1", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116106, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 73, + "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "block_index": 206, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 1, + "memo": "memo3", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116106, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 73, + "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "block_index": 206, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "asset": "MPMASSET", + "quantity": 10, + "status": "valid", + "msg_index": 0, + "memo": "the memo", + "fee_paid": 0, + "confirmed": true, + "block_time": 1730116106, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": 27, + "result_count": 32 + }, + "/v2/issuances": { + "result": [ + { + "tx_index": 68, + "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "msg_index": 0, + "block_index": 201, + "asset": "MPMASSET", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset B", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730116077, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" + }, + { + "tx_index": 64, + "tx_hash": "c915023b8b26fc3eb938d496087a062745ad462fccab637368bddfd4fb29c4ba", + "msg_index": 0, + "block_index": 198, + "asset": "UTXOASSET", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "issuer": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730116060, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" + }, + { + "tx_index": 48, + "tx_hash": "92d810aacd89aaed4756618250d3df3739516fda551847d01a705a57cf250e1c", + "msg_index": 0, + "block_index": 161, + "asset": "A95428956980101314", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "A subnumeric asset", + "fee_paid": 0, + "status": "valid", + "asset_longname": "A95428959745315388.SUBNUMERIC", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730115921, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 47, + "tx_hash": "652fa348e445bedc79af7c8da7e9edd116fc6586bb2896968234ade2b0de91c4", + "msg_index": 0, + "block_index": 160, + "asset": "TESTLOCKDESC", + "quantity": 0, + "divisible": true, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "Test Locking Description", + "fee_paid": 0, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": true, + "fair_minting": false, + "asset_events": "lock_description", + "confirmed": true, + "block_time": 1730115918, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" + }, + { + "tx_index": 46, + "tx_hash": "a9640b7ef998e1287a94371074ed8dd399613638ecb6a9c1a406fd5ce29727e0", + "msg_index": 0, + "block_index": 159, + "asset": "A95428959745315388", + "quantity": 0, + "divisible": true, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "Test Locking Description", + "fee_paid": 0, + "status": "valid", + "asset_longname": "TESTLOCKDESC.MYSUBASSET", + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730115914, + "quantity_normalized": "0.00000000", + "fee_paid_normalized": "0.00000000" + } + ], + "next_cursor": 19, + "result_count": 24 + }, + "/v2/issuances/": { + "result": { + "tx_index": 68, + "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "msg_index": 0, + "block_index": 201, + "asset": "MPMASSET", + "quantity": 100000000000, + "divisible": true, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "transfer": false, + "callable": false, + "call_date": 0, + "call_price": 0.0, + "description": "My super asset B", + "fee_paid": 50000000, + "status": "valid", + "asset_longname": null, + "locked": false, + "reset": false, + "description_locked": false, + "fair_minting": false, + "asset_events": "creation", + "confirmed": true, + "block_time": 1730116077, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" + } + }, + "/v2/sweeps": { + "result": [ + { + "tx_index": 60, + "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "block_index": 194, + "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "flags": 1, + "status": "valid", + "memo": "sweep my assets", + "fee_paid": 600000, + "confirmed": true, + "block_time": 1730116045, + "fee_paid_normalized": "0.00600000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/sweeps/": { + "result": [ + { + "tx_index": 60, + "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "block_index": 194, + "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "flags": 1, + "status": "valid", + "memo": "sweep my assets", + "fee_paid": 600000, + "confirmed": true, + "block_time": 1730116045, + "fee_paid_normalized": "0.00600000" + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/broadcasts": { + "result": [ + { + "tx_index": 25, + "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "block_index": 138, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "timestamp": 4003903983, + "value": 66600.0, + "fee_fraction_int": 0, + "text": "price-USD", + "locked": false, + "status": "valid", + "confirmed": true, + "block_time": 1730115814, + "fee_fraction_int_normalized": "0.00000000" + }, + { + "tx_index": 24, + "tx_hash": "261b5785cc07a1f7000bee3be198f5d90393f35ed50ad3c8656eafadf5e468dc", + "block_index": 137, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "timestamp": 4003903983, + "value": 999.0, + "fee_fraction_int": 0, + "text": "Hello, world!", + "locked": false, + "status": "valid", + "confirmed": true, + "block_time": 1730115811, + "fee_fraction_int_normalized": "0.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, + "/v2/broadcasts/": { + "result": { + "tx_index": 25, + "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "block_index": 138, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "timestamp": 4003903983, + "value": 66600.0, + "fee_fraction_int": 0, + "text": "price-USD", + "locked": false, + "status": "valid", + "confirmed": true, + "block_time": 1730115814, + "fee_fraction_int_normalized": "0.00000000" + } + }, + "/v2/fairminters": { + "result": [ + { + "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_index": 42, + "block_index": 155, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "A95428958968845068", + "asset_parent": "MYASSETA", + "asset_longname": "MYASSETA.SUBMYASSETA", + "description": "", + "price": 1, + "quantity_by_price": 5, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": null, + "commission": null, + "paid_quantity": null, + "confirmed": true, + "block_time": 1730115889, + "price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + }, + { + "tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "tx_index": 22, + "block_index": 135, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "FAIRMINTD", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 50, + "quantity_by_price": 60, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": 40, + "commission": 0, + "paid_quantity": 34, + "confirmed": true, + "block_time": 1730115804, + "price_normalized": "0.00000050", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000060", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + }, + { + "tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "tx_index": 18, + "block_index": 131, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "FAIRMINTC", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 5, + "hard_cap": 0, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "open", + "earned_quantity": 19, + "commission": 0, + "paid_quantity": 5, + "confirmed": true, + "block_time": 1730115789, + "price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "0.00000019", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000005" + }, + { + "tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", + "tx_index": 14, + "block_index": 130, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "FAIRMINTB", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 10000000000, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 1000000000, + "soft_cap_deadline_block": 130, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 300000000, + "commission": 0, + "paid_quantity": 300000000, + "confirmed": true, + "block_time": 1730115785, + "price_normalized": "0.00000001", + "hard_cap_normalized": "100.00000000", + "soft_cap_normalized": "10.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "3.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "3.00000000" + }, + { + "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "tx_index": 10, + "block_index": 125, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "asset": "FAIRMINTA", + "asset_parent": "", + "asset_longname": "", + "description": "", + "price": 1, + "quantity_by_price": 1, + "hard_cap": 10000000000, + "burn_payment": false, + "max_mint_per_tx": 0, + "premint_quantity": 0, + "start_block": 0, + "end_block": 0, + "minted_asset_commission_int": 0, + "soft_cap": 1000000000, + "soft_cap_deadline_block": 124, + "lock_description": false, + "lock_quantity": false, + "divisible": true, + "pre_minted": false, + "status": "closed", + "earned_quantity": 10000000000, + "commission": 0, + "paid_quantity": 10000000000, + "confirmed": true, + "block_time": 1730115766, + "price_normalized": "0.00000001", + "hard_cap_normalized": "100.00000000", + "soft_cap_normalized": "10.00000000", + "quantity_by_price_normalized": "0.00000001", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000", + "earned_quantity_normalized": "100.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "100.00000000" + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/fairmints": { + "result": [ + { + "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_index": 23, + "block_index": 136, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730115808, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + }, + { + "tx_hash": "5da24fdc5b0f42414404df0110e4a3cd79789b5706be7b301d976f9eef623346", + "tx_index": 21, + "block_index": 134, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "asset": "FAIRMINTC", + "earn_quantity": 11, + "paid_quantity": 3, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730115800, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000011", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000003" + }, + { + "tx_hash": "98840296af69b519b38aaa9663baa393849683e67da07ce11e4aa21df9259e2f", + "tx_index": 20, + "block_index": 133, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "asset": "FAIRMINTC", + "earn_quantity": 3, + "paid_quantity": 1, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730115797, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000003", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000001" + }, + { + "tx_hash": "e26754ee3f011a743d3bd45d712d1fe4056c4b4f657f391b5d06c33191fe01d3", + "tx_index": 19, + "block_index": 132, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "asset": "FAIRMINTC", + "earn_quantity": 5, + "paid_quantity": 1, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730115793, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000005", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000001" + }, + { + "tx_hash": "c2ff22176088f20d29376840755983b7b85d64f16b7c262e35059b6ee5a80208", + "tx_index": 17, + "block_index": 129, + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "fairminter_tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", + "asset": "FAIRMINTB", + "earn_quantity": 100000000, + "paid_quantity": 100000000, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730115781, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "1.00000000", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "1.00000000" + } + ], + "next_cursor": 5, + "result_count": 10 + }, + "/v2/fairmints/": { + "result": { + "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_index": 23, + "block_index": 136, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "asset": "FAIRMINTD", + "earn_quantity": 40, + "paid_quantity": 34, + "commission": 0, + "status": "valid", + "confirmed": true, + "block_time": 1730115808, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + } + }, + "/v2/bitcoin/addresses/utxos": { + "result": [ + { + "vout": 0, + "height": 200, + "value": 5460, + "confirmations": 9, + "amount": 5.46e-05, + "txid": "260f8515d5cf01148f41d85cf4e21251e532277b3c37ba22a3c72be4cd065b05", + "address": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg" + }, + { + "vout": 1, + "height": 200, + "value": 4949934500, + "confirmations": 9, + "amount": 49.499345, + "txid": "4b90e72e007ba15a6a40fdfc84e5f898b4f34917ddd7eefb3d3c380238678261", + "address": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg" + }, + { + "vout": 2, + "height": 157, + "value": 100000, + "confirmations": 52, + "amount": 0.001, + "txid": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e", + "address": "bcrt1qlzwnh8crxz0ezlqgv69hf4g482dp7lmzd8rrxl" + } + ], + "next_cursor": null, + "result_count": null + }, + "/v2/bitcoin/addresses/
/transactions": { + "result": [ + { + "tx_hash": "46275b59a76a524ece7bbe93bdce57ca07ca43cb22ad6592ae00e7f1ab310111" + }, + { + "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614" + }, + { + "tx_hash": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28" + }, + { + "tx_hash": "befc407b97cc222e3e9fadff546d543c02db387adea45dd405c48f173c37b6ba" + }, + { + "tx_hash": "5d1e44b8239fc1804e1dfb41c0ff24d1b9fe50fdd26c0a080ddcc73e152633bd" + }, + { + "tx_hash": "ebdd9911ac289e537ed7c712b293decfb0d690c1b2390873d53383b30979e9c8" + }, + { + "tx_hash": "54cb02f91cc1d54472f02930f57a18f5e5c9fbd699b1c40339fa0b223b3c2af1" + }, + { + "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4" + } + ], + "next_cursor": null, + "result_count": null + }, + "/v2/bitcoin/addresses/
/transactions/oldest": { + "result": { + "block_index": 3, + "tx_hash": "538e56b094f8dbba32f0ec9a3e237582b618490767ec074bc8a822c4657988a8" + } + }, + "/v2/bitcoin/addresses/
/utxos": { + "result": [ + { + "vout": 0, + "height": 200, + "value": 5460, + "confirmations": 9, + "amount": 5.46e-05, + "txid": "260f8515d5cf01148f41d85cf4e21251e532277b3c37ba22a3c72be4cd065b05" + }, + { + "vout": 1, + "height": 200, + "value": 4949934500, + "confirmations": 9, + "amount": 49.499345, + "txid": "4b90e72e007ba15a6a40fdfc84e5f898b4f34917ddd7eefb3d3c380238678261" + } + ], + "next_cursor": null, + "result_count": null + }, + "/v2/bitcoin/addresses/
/pubkey": { + "result": "03998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f5" + }, + "/v2/bitcoin/transactions/": { + "result": "020000000001016e888e762a5bf751913b28c9af990e94615e21052e49580e84f3926bebd9fca50100000000ffffffff03e803000000000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e100000000000000000c6a0aa390177068284096dde5dced082701000000160014d950bc5f9180ecff106845a230a250af93710c9a02473044022075c5b31202028752fbe4fef802a6100e72659ca2b61b87ead38c4cd1b7a3951102203037bfa13cc2fc1f3130ab74ee5aedde6649fb33ec0c628e7e9afba8fc8010c00121029bf65cc180612a741a06643bfa5b68c3dce8915d289aea03ca0bdbaa4d03e70700000000" + }, + "/v2/bitcoin/estimatesmartfee": { + "result": 61397 + }, + "/v2/bitcoin/getmempoolinfo": { + "result": { + "loaded": true, + "size": 1, + "bytes": 167, + "usage": 1232, + "total_fee": 0.0001, + "maxmempool": 300000000, + "mempoolminfee": 0.0, + "minrelaytxfee": 0.0, + "incrementalrelayfee": 1e-05, + "unbroadcastcount": 1, + "fullrbf": false + } + }, + "/v2/mempool/events": { + "result": [ + { + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_index": 76 + }, + "timestamp": 1730116127.587877 + }, + { + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "ENHANCED_SEND", + "params": { + "asset": "XCP", + "block_index": 9999999, + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "memo": null, + "quantity": 10000, + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "status": "valid", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_index": 76, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1730116127.587877 + }, + { + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "CREDIT", + "params": { + "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "asset": "XCP", + "block_index": 208, + "calling_function": "send", + "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "quantity": 10000, + "tx_index": 76, + "utxo": null, + "utxo_address": null, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1730116127.587877 + }, + { + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "DEBIT", + "params": { + "action": "send", + "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "asset": "XCP", + "block_index": 208, + "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "quantity": 10000, + "tx_index": 76, + "utxo": null, + "utxo_address": null, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1730116127.587877 + }, + { + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "NEW_TRANSACTION", + "params": { + "block_hash": "mempool", + "block_index": 9999999, + "block_time": 1730116127.587877, + "btc_amount": 0, + "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", + "destination": "", + "fee": 10000, + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_index": 76, + "utxos_info": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f:1", + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 10000, + "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "memo": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + "timestamp": 1730116127.587877 + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/mempool/events/": { + "result": [ + { + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "CREDIT", + "params": { + "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "asset": "XCP", + "block_index": 208, + "calling_function": "send", + "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "quantity": 10000, + "tx_index": 76, + "utxo": null, + "utxo_address": null, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1730116127.587877 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/mempool/transactions//events": { + "result": [ + { + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_index": 76 + }, + "timestamp": 1730116127.587877 + }, + { + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "ENHANCED_SEND", + "params": { + "asset": "XCP", + "block_index": 9999999, + "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "memo": null, + "quantity": 10000, + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "status": "valid", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_index": 76, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1730116127.587877 + }, + { + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "CREDIT", + "params": { + "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "asset": "XCP", + "block_index": 208, + "calling_function": "send", + "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "quantity": 10000, + "tx_index": 76, + "utxo": null, + "utxo_address": null, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1730116127.587877 + }, + { + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "DEBIT", + "params": { + "action": "send", + "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "asset": "XCP", + "block_index": 208, + "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "quantity": 10000, + "tx_index": 76, + "utxo": null, + "utxo_address": null, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + }, + "timestamp": 1730116127.587877 + }, + { + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "NEW_TRANSACTION", + "params": { + "block_hash": "mempool", + "block_index": 9999999, + "block_time": 1730116127.587877, + "btc_amount": 0, + "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", + "destination": "", + "fee": 10000, + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_index": 76, + "utxos_info": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f:1", + "unpacked_data": { + "message_type": "enhanced_send", + "message_type_id": 2, + "message_data": { + "asset": "XCP", + "quantity": 10000, + "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "memo": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00010000" + } + }, + "btc_amount_normalized": "0.00000000" + }, + "timestamp": 1730116127.587877 + } + ], + "next_cursor": null, + "result_count": 5 + }, + "/v2/healthz": { + "result": { + "status": "Healthy" + } + }, + "/healthz": { + "result": { + "status": "Healthy" + } + }, + "/v2/events/NEW_BLOCK": { + "result": [ + { + "event_index": 662, + "event": "NEW_BLOCK", + "params": { + "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_index": 208, + "block_time": 1730116123, + "difficulty": 545259519, + "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb" + }, + "tx_hash": null, + "block_index": 208, + "block_time": 1730116123 + } + ], + "next_cursor": 653, + "result_count": 108 + }, + "/v2/events/NEW_TRANSACTION": { + "result": [ + { + "event_index": 663, + "event": "NEW_TRANSACTION", + "params": { + "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_index": 208, + "block_time": 1730116123, + "btc_amount": 1000, + "data": "0d00", + "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "fee": 0, + "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "unpacked_data": { + "message_type": "dispense", + "message_type_id": 13, + "message_data": { + "data": "00" + } + }, + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + } + ], + "next_cursor": 654, + "result_count": 76 + }, + "/v2/events/NEW_TRANSACTION_OUTPUT": { + "result": [ + { + "event_index": 664, + "event": "NEW_TRANSACTION_OUTPUT", + "params": { + "block_index": 208, + "btc_amount": 1000, + "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "out_index": 0, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "block_time": 1730116123, + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + } + ], + "next_cursor": 558, + "result_count": 5 + }, + "/v2/events/BLOCK_PARSED": { + "result": [ + { + "event_index": 675, + "event": "BLOCK_PARSED", + "params": { + "block_index": 208, + "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", + "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "transaction_count": 1, + "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", + "block_time": 1730116123 + }, + "tx_hash": null, + "block_index": 208, + "block_time": 1730116123 + } + ], + "next_cursor": 661, + "result_count": 108 + }, + "/v2/events/TRANSACTION_PARSED": { + "result": [ + { + "event_index": 674, + "event": "TRANSACTION_PARSED", + "params": { + "supported": true, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75 + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + } + ], + "next_cursor": 660, + "result_count": 61 + }, + "/v2/events/DEBIT": { + "result": [ + { + "event_index": 668, + "event": "DEBIT", + "params": { + "action": "utxo move", + "address": null, + "asset": "XCP", + "block_index": 208, + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "quantity": 1500000000, + "tx_index": 75, + "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + } + ], + "next_cursor": 665, + "result_count": 72 + }, + "/v2/events/CREDIT": { + "result": [ + { + "event_index": 671, + "event": "CREDIT", + "params": { + "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "asset": "XCP", + "block_index": 208, + "calling_function": "dispense", + "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "quantity": 66, + "tx_index": 75, + "utxo": null, + "utxo_address": null, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000066" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + } + ], + "next_cursor": 669, + "result_count": 91 + }, + "/v2/events/ENHANCED_SEND": { + "result": [ + { + "event_index": 602, + "event": "ENHANCED_SEND", + "params": { + "asset": "MPMASSET", + "block_index": 202, + "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "memo": null, + "quantity": 1000, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "status": "valid", + "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "tx_index": 69, + "block_time": 1730116081, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00001000" + }, + "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "block_index": 202, + "block_time": 1730116081 + } + ], + "next_cursor": 498, + "result_count": 2 + }, + "/v2/events/MPMA_SEND": { + "result": [ + { + "event_index": 650, + "event": "MPMA_SEND", + "params": { + "asset": "XCP", + "block_index": 206, + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "memo": "memo1", + "msg_index": 2, + "quantity": 10, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "status": "valid", + "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_index": 73, + "block_time": 1730116106, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + }, + "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "block_index": 206, + "block_time": 1730116106 + } + ], + "next_cursor": 649, + "result_count": 15 + }, + "/v2/events/SEND": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/events/ASSET_TRANSFER": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/events/SWEEP": { + "result": [ + { + "event_index": 541, + "event": "SWEEP", + "params": { + "block_index": 194, + "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "fee_paid": 600000, + "flags": 1, + "memo": "sweep my assets", + "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "status": "valid", + "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_index": 60, + "block_time": 1730116045, + "fee_paid_normalized": "0.00600000" + }, + "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "block_index": 194, + "block_time": 1730116045 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/ASSET_DIVIDEND": { + "result": [ + { + "event_index": 337, + "event": "ASSET_DIVIDEND", + "params": { + "asset": "MYASSETA", + "block_index": 154, + "dividend_asset": "XCP", + "fee_paid": 40000, + "quantity_per_unit": 100000000, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "status": "valid", + "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_index": 41, + "block_time": 1730115885, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "dividend_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_per_unit_normalized": "1.00000000", + "fee_paid_normalized": "0.00040000" + }, + "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "block_index": 154, + "block_time": 1730115885 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/RESET_ISSUANCE": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, + "/v2/events/ASSET_CREATION": { + "result": [ + { + "event_index": 593, + "event": "ASSET_CREATION", + "params": { + "asset_id": "101158363923", + "asset_longname": null, + "asset_name": "MPMASSET", + "block_index": 201, + "block_time": 1730116077 + }, + "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "block_index": 201, + "block_time": 1730116077 + } + ], + "next_cursor": 567, + "result_count": 12 + }, + "/v2/events/ASSET_ISSUANCE": { + "result": [ + { + "event_index": 594, + "event": "ASSET_ISSUANCE", + "params": { + "asset": "MPMASSET", + "asset_events": "creation", + "asset_longname": null, + "block_index": 201, + "call_date": 0, + "call_price": 0.0, + "callable": false, + "description": "My super asset B", + "description_locked": false, + "divisible": true, + "fee_paid": 50000000, + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "locked": false, + "quantity": 100000000000, + "reset": false, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "status": "valid", + "transfer": false, + "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_index": 68, + "block_time": 1730116077, + "quantity_normalized": "1000.00000000", + "fee_paid_normalized": "0.50000000" + }, + "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "block_index": 201, + "block_time": 1730116077 + } + ], + "next_cursor": 568, + "result_count": 24 + }, + "/v2/events/ASSET_DESTRUCTION": { + "result": [ + { + "event_index": 547, + "event": "ASSET_DESTRUCTION", + "params": { + "asset": "XCP", + "block_index": 195, + "quantity": 1, + "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "status": "valid", + "tag": "64657374726f79", + "tx_hash": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c", + "tx_index": 61, + "block_time": 1730116049, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000001" + }, + "tx_hash": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c", + "block_index": 195, + "block_time": 1730116049 + } + ], + "next_cursor": 157, + "result_count": 2 + }, + "/v2/events/OPEN_ORDER": { + "result": [ + { + "event_index": 659, + "event": "OPEN_ORDER", + "params": { + "block_index": 207, + "expiration": 21, + "expire_index": 228, + "fee_provided": 10000, + "fee_provided_remaining": 10000, + "fee_required": 0, + "fee_required_remaining": 0, + "get_asset": "BTC", + "get_quantity": 1000, + "get_remaining": 1000, + "give_asset": "XCP", + "give_quantity": 1000, + "give_remaining": 1000, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "status": "open", + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_index": 74, + "block_time": 1730116110, + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "get_remaining_normalized": "0.00001000", + "give_remaining_normalized": "0.00001000", + "fee_provided_normalized": "0.00010000", + "fee_required_normalized": "0.00000000", + "fee_required_remaining_normalized": "0.00000000", + "fee_provided_remaining_normalized": "0.00010000" + }, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_time": 1730116110 + } + ], + "next_cursor": 529, + "result_count": 8 + }, + "/v2/events/ORDER_MATCH": { + "result": [ + { + "event_index": 491, + "event": "ORDER_MATCH", + "params": { + "backward_asset": "BTC", + "backward_quantity": 3000, + "block_index": 188, + "fee_paid": 0, + "forward_asset": "XCP", + "forward_quantity": 3000, + "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "match_expire_index": 208, + "status": "pending", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_block_index": 186, + "tx0_expiration": 21, + "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx0_index": 51, + "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "tx1_block_index": 188, + "tx1_expiration": 21, + "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx1_index": 54, + "block_time": 1730116023, + "forward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "backward_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "forward_quantity_normalized": "0.00003000", + "backward_quantity_normalized": "0.00003000", + "fee_paid_normalized": "0.00000000" + }, + "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "block_index": 188, + "block_time": 1730116023 + } + ], + "next_cursor": 475, + "result_count": 3 + }, + "/v2/events/ORDER_UPDATE": { + "result": [ + { + "event_index": 655, + "event": "ORDER_UPDATE", + "params": { + "status": "expired", + "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878" + }, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_time": 1730116110 + } + ], + "next_cursor": 521, + "result_count": 12 + }, + "/v2/events/ORDER_FILLED": { + "result": [ + { + "event_index": 482, + "event": "ORDER_FILLED", + "params": { + "status": "filled", + "tx_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed" + }, + "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "block_index": 187, + "block_time": 1730116019 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/ORDER_MATCH_UPDATE": { + "result": [ + { + "event_index": 481, + "event": "ORDER_MATCH_UPDATE", + "params": { + "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "status": "completed" + }, + "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "block_index": 187, + "block_time": 1730116019 + } + ], + "next_cursor": 454, + "result_count": 2 + }, + "/v2/events/BTC_PAY": { + "result": [ + { + "event_index": 483, + "event": "BTC_PAY", + "params": { + "block_index": 187, + "btc_amount": 2000, + "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "status": "valid", + "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_index": 53, + "block_time": 1730116019, + "btc_amount_normalized": "0.00002000" + }, + "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "block_index": 187, + "block_time": 1730116019 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/CANCEL_ORDER": { + "result": [ + { + "event_index": 523, + "event": "CANCEL_ORDER", + "params": { + "block_index": 192, + "offer_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "status": "valid", + "tx_hash": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603", + "tx_index": 58, + "block_time": 1730116037 + }, + "tx_hash": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603", + "block_index": 192, + "block_time": 1730116037 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/ORDER_EXPIRATION": { + "result": [ + { + "event_index": 657, + "event": "ORDER_EXPIRATION", + "params": { + "block_index": 207, + "order_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_time": 1730116110 + }, + "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "block_index": 207, + "block_time": 1730116110 + } + ], + "next_cursor": 462, + "result_count": 3 + }, + "/v2/events/ORDER_MATCH_EXPIRATION": { + "result": [ + { + "event_index": 457, + "event": "ORDER_MATCH_EXPIRATION", + "params": { + "block_index": 184, + "order_match_id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "block_time": 1730115936 + }, + "tx_hash": null, + "block_index": 184, + "block_time": 1730115936 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/OPEN_DISPENSER": { + "result": [ + { + "event_index": 553, + "event": "OPEN_DISPENSER", + "params": { + "asset": "TESTLOCKDESC", + "block_index": 196, + "dispense_count": 0, + "escrow_quantity": 10000, + "give_quantity": 1, + "give_remaining": 10000, + "oracle_address": null, + "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "satoshirate": 1, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "status": 0, + "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "tx_index": 62, + "block_time": 1730116052, + "asset_info": { + "asset_longname": null, + "description": "Test Locking Description", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "give_quantity_normalized": "0.00000001", + "give_remaining_normalized": "0.00010000", + "escrow_quantity_normalized": "0.00010000", + "satoshirate_normalized": "0.00000001" + }, + "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "block_index": 196, + "block_time": 1730116052 + } + ], + "next_cursor": 272, + "result_count": 5 + }, + "/v2/events/DISPENSER_UPDATE": { + "result": [ + { + "event_index": 672, + "event": "DISPENSER_UPDATE", + "params": { + "asset": "XCP", + "dispense_count": 2, + "give_remaining": 9268, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "status": 0, + "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_remaining_normalized": "0.00009268" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + } + ], + "next_cursor": 560, + "result_count": 8 + }, + "/v2/events/REFILL_DISPENSER": { + "result": [ + { + "event_index": 261, + "event": "REFILL_DISPENSER", + "params": { + "asset": "XCP", + "block_index": 144, + "destination": "mrTk1ThfTwE2f6PUY5vjkJvga5VgZXf4bk", + "dispense_quantity": 10, + "dispenser_tx_hash": "a809a9c0b667c336b61ce3e892a7f2d80231121804f3f7db594da58d9ded5a52", + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx_hash": "a623caab6512fc5492719029eb7ec34044e6fe307b96362340125090670d3242", + "tx_index": 31, + "block_time": 1730115837, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000010" + }, + "tx_hash": "a623caab6512fc5492719029eb7ec34044e6fe307b96362340125090670d3242", + "block_index": 144, + "block_time": 1730115837 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/DISPENSE": { + "result": [ + { + "event_index": 673, + "event": "DISPENSE", + "params": { + "asset": "XCP", + "block_index": 208, + "btc_amount": 1000, + "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "dispense_index": 0, + "dispense_quantity": 66, + "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "dispense_quantity_normalized": "0.00000066", + "btc_amount_normalized": "0.00001000" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + } + ], + "next_cursor": 561, + "result_count": 5 + }, + "/v2/events/BROADCAST": { + "result": [ + { + "event_index": 218, + "event": "BROADCAST", + "params": { + "block_index": 138, + "fee_fraction_int": 0, + "locked": false, + "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "status": "valid", + "text": "price-USD", + "timestamp": 4003903983, + "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "tx_index": 25, + "value": 66600.0, + "block_time": 1730115814, + "fee_fraction_int_normalized": "0.00000000" + }, + "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "block_index": 138, + "block_time": 1730115814 + } + ], + "next_cursor": 213, + "result_count": 2 + }, + "/v2/events/NEW_FAIRMINTER": { + "result": [ + { + "event_index": 342, + "event": "NEW_FAIRMINTER", + "params": { + "asset": "A95428958968845068", + "asset_longname": "MYASSETA.SUBMYASSETA", + "asset_parent": "MYASSETA", + "block_index": 155, + "burn_payment": false, + "description": "", + "divisible": true, + "end_block": 0, + "hard_cap": 0, + "lock_description": false, + "lock_quantity": false, + "max_mint_per_tx": 0, + "minted_asset_commission_int": 0, + "pre_minted": false, + "premint_quantity": 0, + "price": 1, + "quantity_by_price": 5, + "soft_cap": 0, + "soft_cap_deadline_block": 0, + "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "start_block": 0, + "status": "open", + "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_index": 42, + "block_time": 1730115889, + "price_normalized": "0.00000001", + "hard_cap_normalized": "0.00000000", + "soft_cap_normalized": "0.00000000", + "quantity_by_price_normalized": "0.00000005", + "max_mint_per_tx_normalized": "0.00000000", + "premint_quantity_normalized": "0.00000000" + }, + "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "block_index": 155, + "block_time": 1730115889 + } + ], + "next_cursor": 196, + "result_count": 5 + }, + "/v2/events/FAIRMINTER_UPDATE": { + "result": [ + { + "event_index": 155, + "event": "FAIRMINTER_UPDATE", + "params": { + "status": "closed", + "tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc" + }, + "tx_hash": null, + "block_index": 130, + "block_time": 1730115785 + } + ], + "next_cursor": 110, + "result_count": 2 + }, + "/v2/events/NEW_FAIRMINT": { + "result": [ + { + "event_index": 207, + "event": "NEW_FAIRMINT", + "params": { + "asset": "FAIRMINTD", + "block_index": 136, + "commission": 0, + "earn_quantity": 40, + "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "paid_quantity": 34, + "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "status": "valid", + "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_index": 23, + "block_time": 1730115808, + "asset_info": { + "asset_longname": "", + "description": "", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "earn_quantity_normalized": "0.00000040", + "commission_normalized": "0.00000000", + "paid_quantity_normalized": "0.00000034" + }, + "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "block_index": 136, + "block_time": 1730115808 + } + ], + "next_cursor": 190, + "result_count": 10 + }, + "/v2/events/ATTACH_TO_UTXO": { + "result": [ + { + "event_index": 577, + "event": "ATTACH_TO_UTXO", + "params": { + "asset": "UTXOASSET", + "block_index": 199, + "destination": "f703cfe223c19e062e103d02c092a7eeb75f16c14dc6840c066ea940ddab89ed:1", + "fee_paid": 0, + "msg_index": 0, + "quantity": 1000000000, + "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "status": "valid", + "tx_hash": "f703cfe223c19e062e103d02c092a7eeb75f16c14dc6840c066ea940ddab89ed", + "tx_index": 65, + "block_time": 1730116064, + "asset_info": { + "asset_longname": null, + "description": "My super asset", + "issuer": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "divisible": true, + "locked": false + }, + "quantity_normalized": "10.00000000", + "fee_paid_normalized": "0.00000000" + }, + "tx_hash": "f703cfe223c19e062e103d02c092a7eeb75f16c14dc6840c066ea940ddab89ed", + "block_index": 199, + "block_time": 1730116064 + } + ], + "next_cursor": 319, + "result_count": 3 + }, + "/v2/events/DETACH_FROM_UTXO": { + "result": [ + { + "event_index": 311, + "event": "DETACH_FROM_UTXO", + "params": { + "asset": "MYASSETA", + "block_index": 151, + "destination": "bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz", + "fee_paid": 0, + "msg_index": 0, + "quantity": 500000000, + "source": "ebdd9911ac289e537ed7c712b293decfb0d690c1b2390873d53383b30979e9c8:0", + "status": "valid", + "tx_hash": "16c2e31138126762962006973bfedc1ced24b4fc3d41616f4ea36346add19de5", + "tx_index": 38, + "block_time": 1730115873, + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "divisible": true, + "locked": false + }, + "quantity_normalized": "5.00000000", + "fee_paid_normalized": "0.00000000" + }, + "tx_hash": "16c2e31138126762962006973bfedc1ced24b4fc3d41616f4ea36346add19de5", + "block_index": 151, + "block_time": 1730115873 + } + ], + "next_cursor": null, + "result_count": 1 + }, + "/v2/events/UTXO_MOVE": { + "result": [ + { + "event_index": 670, + "event": "UTXO_MOVE", + "params": { + "asset": "XCP", + "block_index": 208, + "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "msg_index": 1, + "quantity": 1500000000, + "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "status": "valid", + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_index": 75, + "block_time": 1730116123, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "block_index": 208, + "block_time": 1730116123 + } + ], + "next_cursor": 667, + "result_count": 11 + }, + "/v2/events/BURN": { + "result": [ + { + "event_index": 70, + "event": "BURN", + "params": { + "block_index": 121, + "burned": 50000000, + "earned": 74999996667, + "source": "bcrt1qrac7m6sqdzx9h798y52wk0qj5205d7vtqfjyds", + "status": "valid", + "tx_hash": "40efc8e4de6bc24410016279eb759071c80e3ac3ee8fc7a52725555c3f89979e", + "tx_index": 9, + "block_time": 1730115749, + "burned_normalized": "0.50000000", + "earned_normalized": "749.99997000" + }, + "tx_hash": "40efc8e4de6bc24410016279eb759071c80e3ac3ee8fc7a52725555c3f89979e", + "block_index": 121, + "block_time": 1730115749 + } + ], + "next_cursor": 65, + "result_count": 10 + } +} \ No newline at end of file diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py index 4a295b88e3..9291d9a12f 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py @@ -1,4 +1,18 @@ SCENARIO = [ + # open order for dredd Cancel test + { + "title": "Open Sell XCP for BTC order", + "transaction": "order", + "source": "$ADDRESS_1", + "params": { + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "expiration": 21, + "fee_required": 0, + }, + }, { "title": "Dispense in mempool", "transaction": "dispense", diff --git a/release-notes/release-notes-v10.6.1.md b/release-notes/release-notes-v10.6.1.md index 33fa39a41b..36d61d1924 100644 --- a/release-notes/release-notes-v10.6.1.md +++ b/release-notes/release-notes-v10.6.1.md @@ -17,6 +17,7 @@ ## API +- Added `memos` and `memos_are_hex` parameters to the MPMA compose API. When using MPMA sends, one memo must be provided for each destination if these parameters are used. ## CLI From 0081065e6fe6aa8e85aeba7b19eb17c26503f968 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 28 Oct 2024 12:02:31 +0000 Subject: [PATCH 06/23] Raise ComposeError if memo is not a string a memo_is_hex not a boolean --- .../counterpartycore/lib/messages/versions/mpma.py | 9 ++++++++- .../counterpartycore/test/fixtures/vectors.py | 8 ++++++++ release-notes/release-notes-v10.6.1.md | 1 + 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/counterparty-core/counterpartycore/lib/messages/versions/mpma.py b/counterparty-core/counterpartycore/lib/messages/versions/mpma.py index e8834ff3a4..b13f9bc09a 100644 --- a/counterparty-core/counterpartycore/lib/messages/versions/mpma.py +++ b/counterparty-core/counterpartycore/lib/messages/versions/mpma.py @@ -98,9 +98,16 @@ def validate(db, source, asset_dest_quant_list, block_index): return problems -def compose(db, source: str, asset_dest_quant_list: list, memo: str, memo_is_hex: bool): +def compose( + db, source: str, asset_dest_quant_list: list, memo: str = None, memo_is_hex: bool = None +): cursor = db.cursor() + if memo and not isinstance(memo, str): + raise exceptions.ComposeError("`memo` must be a string") + if memo_is_hex and not isinstance(memo_is_hex, bool): + raise exceptions.ComposeError("`memo_is_hex` must be a boolean") + out_balances = util.accumulate([(t[0], t[2]) for t in asset_dest_quant_list]) for asset, quantity in out_balances: if util.enabled("mpma_subasset_support"): diff --git a/counterparty-core/counterpartycore/test/fixtures/vectors.py b/counterparty-core/counterpartycore/test/fixtures/vectors.py index a0721a4eb3..ba397b5a9c 100644 --- a/counterparty-core/counterpartycore/test/fixtures/vectors.py +++ b/counterparty-core/counterpartycore/test/fixtures/vectors.py @@ -9129,6 +9129,14 @@ ), ), }, + { + "in": (ADDR[0], [("XCP", ADDR[1], DP["quantity"])], ["memo1"], None), + "error": (exceptions.ComposeError, "`memo` must be a string"), + }, + { + "in": (ADDR[0], [("XCP", ADDR[1], DP["quantity"])], "memo1", "nobool"), + "error": (exceptions.ComposeError, "`memo_is_hex` must be a boolean"), + }, ], "parse": [ { diff --git a/release-notes/release-notes-v10.6.1.md b/release-notes/release-notes-v10.6.1.md index 36d61d1924..e745bdfdfc 100644 --- a/release-notes/release-notes-v10.6.1.md +++ b/release-notes/release-notes-v10.6.1.md @@ -10,6 +10,7 @@ ## Bugfixes - Fix heavy healthz check +- In `mpma.compose()`, raise a `ComposeError` if `memo` is not a string or `memo_is_hex` is not a boolean ## Codebase From 2aecd3556b26803b753fa3eef23c0172716193f9 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 28 Oct 2024 12:08:18 +0000 Subject: [PATCH 07/23] comments --- .../counterpartycore/lib/messages/versions/mpma.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/counterparty-core/counterpartycore/lib/messages/versions/mpma.py b/counterparty-core/counterpartycore/lib/messages/versions/mpma.py index b13f9bc09a..0b4790f9a2 100644 --- a/counterparty-core/counterpartycore/lib/messages/versions/mpma.py +++ b/counterparty-core/counterpartycore/lib/messages/versions/mpma.py @@ -101,6 +101,14 @@ def validate(db, source, asset_dest_quant_list, block_index): def compose( db, source: str, asset_dest_quant_list: list, memo: str = None, memo_is_hex: bool = None ): + """ + Compose a MPMA send message. + :param db: sqlite3 database + :param source: source address + :param asset_dest_quant_list: list of tuples of the form (asset, destination, quantity, memo, is_hex), where memo and is_hex are optional; if not specified for a send, memo is used. + :param memo: optional memo for the entire send + :param memo_is_hex: optional boolean indicating if the memo is in hex format + """ cursor = db.cursor() if memo and not isinstance(memo, str): From 2662cad7901ba6f8157c3f67b5c5e725b87e7467 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 28 Oct 2024 12:14:32 +0000 Subject: [PATCH 08/23] Updates werkzeug from 3.0.1 to 3.0.6 --- counterparty-core/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/counterparty-core/requirements.txt b/counterparty-core/requirements.txt index 4d77bb57fd..b91da91c01 100644 --- a/counterparty-core/requirements.txt +++ b/counterparty-core/requirements.txt @@ -18,7 +18,7 @@ tendo==0.3.0 xmltodict==0.13.0 cachetools==5.3.2 bitstring==4.1.4 -Werkzeug==3.0.1 +Werkzeug==3.0.6 itsdangerous==2.1.2 plyvel==1.5.1 arc4==0.4.0 From ec682192b80a3c675ae997b96355c6d211a3c6b9 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 28 Oct 2024 13:12:18 +0000 Subject: [PATCH 09/23] Re-Enable Compare Hashes Test --- .github/workflows/test_compose.sh | 2 +- .../counterpartycore/test/mainnet_test.py | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test_compose.sh b/.github/workflows/test_compose.sh index 75b4771d76..5ab69742db 100644 --- a/.github/workflows/test_compose.sh +++ b/.github/workflows/test_compose.sh @@ -128,7 +128,7 @@ done # Run compare hashes test . "$HOME/.profile" cd counterparty-core -# sudo python3 -m pytest counterpartycore/test/mainnet_test.py --testapidb --comparehashes +sudo python3 -m pytest counterpartycore/test/mainnet_test.py --testapidb --comparehashes cd .. diff --git a/counterparty-core/counterpartycore/test/mainnet_test.py b/counterparty-core/counterpartycore/test/mainnet_test.py index cad124a827..0b156968d5 100644 --- a/counterparty-core/counterpartycore/test/mainnet_test.py +++ b/counterparty-core/counterpartycore/test/mainnet_test.py @@ -13,14 +13,14 @@ # [server_url, api_version, server_version] CHECK_SERVERS = [ - ["http://rpc:rpc@api1.counterparty.io:4000", "v1", "v9.61.1"], - ["https://api.counterparty.io:4000", "v2", "v10.4.4"], - ["https://dev.counterparty.io:4000", "v2", "v10.4.4"], - ["https://api.counterparty.info", "v2", "v10.4.4"], + # ["http://rpc:rpc@api1.counterparty.io:4000", "v1", "v9.61.1"], + ["https://api.counterparty.io:4000", "v2", "v10.6.0"], + ["https://dev.counterparty.io:4000", "v2", "v10.6.0"], + ["https://api.counterparty.info", "v2", "v10.6.0"], # ["http://rpc:1234@public.coindaddy.io:4000", "v1", "v9.61.3"], # ["https://api.xcp.dev/v9_61/", "xcpdev", "v9.61.3"], # ["https://api.xcp.dev/v10_1/", "xcpdev", "v10.1.2.CNTRPRTY"], - ["https://memepool.wtf/api/", "wtf", "v10.4.4"], + ["https://memepool.wtf/api/", "wtf", "v10.6.0"], ] From 24ad7b56e5e699580908b60ac9cbd48f46ce6638 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 28 Oct 2024 13:50:39 +0000 Subject: [PATCH 10/23] tweak heavy healthz check --- .../counterpartycore/test/mainnet_test.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/counterparty-core/counterpartycore/test/mainnet_test.py b/counterparty-core/counterpartycore/test/mainnet_test.py index 0b156968d5..2d35685f9d 100644 --- a/counterparty-core/counterpartycore/test/mainnet_test.py +++ b/counterparty-core/counterpartycore/test/mainnet_test.py @@ -217,8 +217,17 @@ def test_mainnet_healthz(skip): print(response.json()) assert response.status_code == 200 assert response.json()["result"]["status"] == "Healthy" - - response = requests.get(f"{LOCAL_API_URL}/healthz?check_type=heavy", timeout=10) + retry = 0 + while True: + try: + response = requests.get(f"{LOCAL_API_URL}/healthz?check_type=heavy", timeout=120) + break + except requests.exceptions.ReadTimeout as e: + retry += 1 + if retry > 5: + raise Exception("Too many retries") from e + print("Timeout, retrying in 5 seconds") + time.sleep(5) print(response.json()) assert response.status_code == 200 assert response.json()["result"]["status"] == "Healthy" From a543c938504602f853659744d22572b0562f1161 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 28 Oct 2024 14:05:50 +0000 Subject: [PATCH 11/23] Use config.API_LOG for API process --- counterparty-core/counterpartycore/lib/api/api_server.py | 2 +- counterparty-core/counterpartycore/lib/api/wsgi.py | 2 +- counterparty-core/counterpartycore/lib/log.py | 4 ++-- counterparty-core/counterpartycore/server.py | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index b9d893bfae..d99cd28729 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -397,7 +397,7 @@ def run_api_server(args, server_ready_value, stop_event): # Initialize Sentry, logging, config, etc. sentry.init() - server.initialise_log_and_config(argparse.Namespace(**args)) + server.initialise_log_and_config(argparse.Namespace(**args), api=True) watcher = api_watcher.APIWatcher() watcher.start() diff --git a/counterparty-core/counterpartycore/lib/api/wsgi.py b/counterparty-core/counterpartycore/lib/api/wsgi.py index f2b5063a49..6590ada667 100644 --- a/counterparty-core/counterpartycore/lib/api/wsgi.py +++ b/counterparty-core/counterpartycore/lib/api/wsgi.py @@ -129,7 +129,7 @@ def spawn_worker(self): # Child process global logger # noqa F811 worker.pid = os.getpid() - logger = log.re_set_up(f".gunicorn.{worker.pid}") + logger = log.re_set_up(f".gunicorn.{worker.pid}", api=True) try: gunicorn_util._setproctitle(f"worker [{self.proc_name}]") logger.trace("Booting Gunicorn worker with pid: %s", worker.pid) diff --git a/counterparty-core/counterpartycore/lib/log.py b/counterparty-core/counterpartycore/lib/log.py index ff61bde4c1..3aedc2d08c 100644 --- a/counterparty-core/counterpartycore/lib/log.py +++ b/counterparty-core/counterpartycore/lib/log.py @@ -209,11 +209,11 @@ def handle_exception(exc_type, exc_value, exc_traceback): return logger -def re_set_up(suffix=""): +def re_set_up(suffix="", api=False): return set_up( verbose=config.VERBOSE, quiet=config.QUIET, - log_file=config.LOG + suffix, + log_file=(config.LOG if not api else config.API_LOG) + suffix, json_logs=config.JSON_LOGS, max_log_file_size=config.MAX_LOG_FILE_SIZE, max_log_file_rotations=config.MAX_LOG_FILE_ROTATIONS, diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index 266a8d7069..dc46ec1108 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -605,7 +605,7 @@ def initialise_config( config.GUNICORN_WORKERS = gunicorn_workers -def initialise_log_and_config(args): +def initialise_log_and_config(args, api=False): # Configuration init_args = { "data_dir": args.data_dir, @@ -671,7 +671,7 @@ def initialise_log_and_config(args): log.set_up( verbose=config.VERBOSE, quiet=config.QUIET, - log_file=config.LOG, + log_file=config.LOG if not api else config.API_LOG, json_logs=config.JSON_LOGS, max_log_file_size=config.MAX_LOG_FILE_SIZE, max_log_file_rotations=config.MAX_LOG_FILE_ROTATIONS, From fb2283f21e421570546480568b05a81a6fc4f9ff Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 28 Oct 2024 14:11:45 +0000 Subject: [PATCH 12/23] update release notes --- release-notes/release-notes-v10.6.1.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/release-notes/release-notes-v10.6.1.md b/release-notes/release-notes-v10.6.1.md index 33fa39a41b..ff132c3df2 100644 --- a/release-notes/release-notes-v10.6.1.md +++ b/release-notes/release-notes-v10.6.1.md @@ -9,7 +9,8 @@ ## Bugfixes -- Fix heavy healthz check +- Fix heavy healthz check +- Update API v2 process to use `config.API_LOG` for log file ## Codebase From c7e011930cb1bede625ac0b0d5cd59c1bbad18c5 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 28 Oct 2024 14:59:46 +0000 Subject: [PATCH 13/23] Add dust output in Compose Attach --- counterparty-core/counterpartycore/lib/messages/utxo.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/messages/utxo.py b/counterparty-core/counterpartycore/lib/messages/utxo.py index b4ad365bba..eb012f4f7b 100644 --- a/counterparty-core/counterpartycore/lib/messages/utxo.py +++ b/counterparty-core/counterpartycore/lib/messages/utxo.py @@ -117,11 +117,15 @@ def compose(db, source, destination, asset, quantity): data += struct.pack(f">{len(data_content)}s", data_content) source_address = source + destinations = [] # if source is a UTXO, we get the corresponding address - if util.is_utxo_format(source): + if util.is_utxo_format(source): # detach from utxo source_address, _value = backend.bitcoind.get_utxo_address_and_value(source) + elif not destination: # attach to utxo + # if no destination, we use the source address as the destination + destinations.append((source_address, None)) - return (source_address, [], data) + return (source_address, destinations, data) def unpack(message, return_dict=False): From adde1ac90e31d6a69d7d72130105283621d0649c Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 28 Oct 2024 15:33:24 +0000 Subject: [PATCH 14/23] Update tests and release notes --- .../test/fixtures/contract_vectors/utxo.py | 13 +++++++++++++ .../test/regtest/scenarios/scenario_7_utxo.py | 12 ++++++------ release-notes/release-notes-v10.6.1.md | 1 + 3 files changed, 20 insertions(+), 6 deletions(-) diff --git a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py index 9b915093ef..0ac51c987e 100644 --- a/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py +++ b/counterparty-core/counterpartycore/test/fixtures/contract_vectors/utxo.py @@ -102,6 +102,19 @@ b"d4f0433ba841038e2e16328445930dd7bca35309b14b0da4451c8f94c631368b8:1|mtQheFaSfWELRB2MyMBaiWjdDm6ux9Ezns|XCP|100", ), }, + { + "in": ( + ADDR[0], + None, + "XCP", + 100, + ), + "out": ( + ADDR[0], + [(ADDR[0], None)], + b"dmn6q3dS2EnDUx3bmyWc6D4szJNVGtaR7zc||XCP|100", + ), + }, ], "unpack": [ { diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py index 56610ef88a..326bb42824 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_7_utxo.py @@ -363,7 +363,7 @@ "params": { "asset": "MYASSETA", "block_index": "$BLOCK_INDEX", - "destination": "$TX_HASH:1", + "destination": "$TX_HASH:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, @@ -395,7 +395,7 @@ "event": "$TX_HASH", "quantity": 1000000000, "tx_index": "$TX_INDEX", - "utxo": "$TX_HASH:1", + "utxo": "$TX_HASH:0", "utxo_address": "$ADDRESS_1", }, "tx_hash": "$TX_HASH", @@ -426,7 +426,7 @@ "source": "$UTXO_MOVE_1_TX_HASH:0", "params": { "destination": "$ADDRESS_6", - "more_utxos": "$UTXO_ATTACH_2_TX_HASH:1", + "more_utxos": "$UTXO_ATTACH_2_TX_HASH:0,$UTXO_ATTACH_2_TX_HASH:2", }, "set_variables": { "UTXO_MOVE_2_TX_HASH": "$TX_HASH", @@ -444,7 +444,7 @@ "destination": "$TX_HASH:0", "msg_index": 1, "quantity": 1000000000, - "source": "$UTXO_ATTACH_2_TX_HASH:1", + "source": "$UTXO_ATTACH_2_TX_HASH:0", "status": "valid", "tx_hash": "$TX_HASH", "tx_index": "$TX_INDEX", @@ -478,7 +478,7 @@ "event": "$TX_HASH", "quantity": 1000000000, "tx_index": "$TX_INDEX", - "utxo": "$UTXO_ATTACH_2_TX_HASH:1", + "utxo": "$UTXO_ATTACH_2_TX_HASH:0", "utxo_address": "$ADDRESS_1", }, "tx_hash": "$TX_HASH", @@ -545,7 +545,7 @@ "source": "", "tx_hash": "$TX_HASH", "tx_index": "$TX_INDEX", - "utxos_info": "$UTXO_MOVE_1_TX_HASH:0 $UTXO_ATTACH_2_TX_HASH:1 $TX_HASH:0", + "utxos_info": "$UTXO_MOVE_1_TX_HASH:0 $UTXO_ATTACH_2_TX_HASH:0 $TX_HASH:0", }, "tx_hash": "$TX_HASH", }, diff --git a/release-notes/release-notes-v10.6.1.md b/release-notes/release-notes-v10.6.1.md index 5cc7739d6c..94e796499e 100644 --- a/release-notes/release-notes-v10.6.1.md +++ b/release-notes/release-notes-v10.6.1.md @@ -12,6 +12,7 @@ - Fix heavy healthz check - In `mpma.compose()`, raise a `ComposeError` if `memo` is not a string or `memo_is_hex` is not a boolean - Update API v2 process to use `config.API_LOG` for log file +- When composing an Attach transaction without a destination address, create a dust output to the source address ## Codebase From 0cb83e27008dce29c5a9c882564c902693687a19 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 28 Oct 2024 17:57:23 +0000 Subject: [PATCH 15/23] fix regtest --- apiary.apib | 3702 ++++++++--------- .../test/regtest/apidoc/apicache.json | 3364 +++++++-------- .../regtest/scenarios/scenario_18_utxo.py | 15 +- 3 files changed, 3541 insertions(+), 3540 deletions(-) diff --git a/apiary.apib b/apiary.apib index e2335d58e2..6467437518 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-28 11:48:59.812262. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-28 17:53:24.850741. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -180,15 +180,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 662, "event": "NEW_BLOCK", "params": { - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_hash": "266c0972d4f52810f8433bf2b54fda3541b96eb40ae53f21abe721b535dfb5ef", "block_index": 208, - "block_time": 1730116123, + "block_time": 1730137988, "difficulty": 545259519, - "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb" + "previous_block_hash": "70ba7089afff84e271f6e7d5e9c822765acfd2cb6166952a11578079921a3ca2" }, "tx_hash": null, "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 653, @@ -205,17 +205,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 663, "event": "NEW_TRANSACTION", "params": { - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_hash": "266c0972d4f52810f8433bf2b54fda3541b96eb40ae53f21abe721b535dfb5ef", "block_index": 208, - "block_time": 1730116123, + "block_time": 1730137988, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "destination": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "fee": 0, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "source": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1 5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -225,9 +225,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 654, @@ -246,16 +246,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "destination": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "out_index": 0, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730137988, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 558, @@ -273,15 +273,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "6015875cc121bdf7e65521f6912035fa5d4764525e808d663a668cd632d1c783", + "messages_hash": "9521566d8ccd8d04d106def7434303634dee67ad512e16a70021e7df6bc909cf", "transaction_count": 1, - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "block_time": 1730116123 + "txlist_hash": "f2e1468800e212edd8d4c1582e8920a4e1e07b21a6c009c64b80d873405ace7c", + "block_time": 1730137988 }, "tx_hash": null, "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 661, @@ -299,12 +299,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75 }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 660, @@ -327,12 +327,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 208, - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 1500000000, "tx_index": 75, - "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "block_time": 1730116123, + "utxo": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "utxo_address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -342,9 +342,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 665, @@ -361,16 +361,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -380,9 +380,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 669, @@ -401,26 +401,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "memo": null, "quantity": 1000, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "status": "valid", - "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "tx_hash": "315c6064b2897e22ff0c1467169f516d2d30571587f022e17fdde9e4f0eac872", "tx_index": 69, - "block_time": 1730116081, + "block_time": 1730137952, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "tx_hash": "315c6064b2897e22ff0c1467169f516d2d30571587f022e17fdde9e4f0eac872", "block_index": 202, - "block_time": 1730116081 + "block_time": 1730137952 } ], "next_cursor": 498, @@ -439,15 +439,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 206, - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "status": "valid", - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "tx_index": 73, - "block_time": 1730116106, + "block_time": 1730137976, "asset_info": { "divisible": true, "asset_longname": null, @@ -457,9 +457,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "block_index": 206, - "block_time": 1730116106 + "block_time": 1730137976 } ], "next_cursor": 649, @@ -497,20 +497,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "status": "valid", - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "e8d7da48b9ce9e612be4e1f2e60d819f89facd419df15b19825c2b1788dfbacd", "tx_index": 60, - "block_time": 1730116045, + "block_time": 1730137917, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "e8d7da48b9ce9e612be4e1f2e60d819f89facd419df15b19825c2b1788dfbacd", "block_index": 194, - "block_time": 1730116045 + "block_time": 1730137917 } ], "next_cursor": null, @@ -532,15 +532,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "status": "valid", - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "751e21b82410acd34989da9ec113ea38677f8352c49fb6ab389e95f8869bb68f", "tx_index": 41, - "block_time": 1730115885, + "block_time": 1730137763, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -554,9 +554,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "751e21b82410acd34989da9ec113ea38677f8352c49fb6ab389e95f8869bb68f", "block_index": 154, - "block_time": 1730115885 + "block_time": 1730137763 } ], "next_cursor": null, @@ -589,11 +589,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 201, - "block_time": 1730116077 + "block_time": 1730137948 }, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23", "block_index": 201, - "block_time": 1730116077 + "block_time": 1730137948 } ], "next_cursor": 567, @@ -621,22 +621,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "status": "valid", "transfer": false, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23", "tx_index": 68, - "block_time": 1730116077, + "block_time": 1730137948, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23", "block_index": 201, - "block_time": 1730116077 + "block_time": 1730137948 } ], "next_cursor": 568, @@ -656,12 +656,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "status": "valid", "tag": "64657374726f79", - "tx_hash": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c", + "tx_hash": "5ddd69d96e90dd52e5459771dbe9d79a574e9a0a1c1d06a1aeb97add894857c1", "tx_index": 61, - "block_time": 1730116049, + "block_time": 1730137922, "asset_info": { "divisible": true, "asset_longname": null, @@ -671,9 +671,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c", + "tx_hash": "5ddd69d96e90dd52e5459771dbe9d79a574e9a0a1c1d06a1aeb97add894857c1", "block_index": 195, - "block_time": 1730116049 + "block_time": 1730137922 } ], "next_cursor": 157, @@ -705,11 +705,11 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "status": "open", - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "tx_index": 74, - "block_time": 1730116110, + "block_time": 1730137979, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -733,9 +733,9 @@ Here is a list of events classified by theme and for each an example response: "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730137979 } ], "next_cursor": 529, @@ -758,20 +758,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx0_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", "tx0_index": 51, - "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "tx1_address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx1_hash": "7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "tx1_index": 54, - "block_time": 1730116023, + "block_time": 1730137896, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -790,9 +790,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx_hash": "7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "block_index": 188, - "block_time": 1730116023 + "block_time": 1730137896 } ], "next_cursor": 475, @@ -810,11 +810,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878" + "tx_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730137979 } ], "next_cursor": 521, @@ -832,11 +832,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed" + "tx_hash": "c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e" }, - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "5ca9410dca98770144ee5afe5dcbf1afe4253bf161ee77b9b576832b8ccb09a7", "block_index": 187, - "block_time": 1730116019 + "block_time": 1730137893 } ], "next_cursor": null, @@ -853,13 +853,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", + "order_match_id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", "status": "completed" }, - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "5ca9410dca98770144ee5afe5dcbf1afe4253bf161ee77b9b576832b8ccb09a7", "block_index": 187, - "block_time": 1730116019 + "block_time": 1730137893 } ], "next_cursor": 454, @@ -878,18 +878,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "order_match_id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "status": "valid", - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "5ca9410dca98770144ee5afe5dcbf1afe4253bf161ee77b9b576832b8ccb09a7", "tx_index": 53, - "block_time": 1730116019, + "block_time": 1730137893, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "5ca9410dca98770144ee5afe5dcbf1afe4253bf161ee77b9b576832b8ccb09a7", "block_index": 187, - "block_time": 1730116019 + "block_time": 1730137893 } ], "next_cursor": null, @@ -907,16 +907,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "offer_hash": "697d9fe9bf571bc39676614a50f1490b53a0ee0b8b20776717636fe7ad5bb762", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "status": "valid", - "tx_hash": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603", + "tx_hash": "4a12595a90692d8d75833b767c77779efb65f193bc0f1e5e366e52be29fdc5b3", "tx_index": 58, - "block_time": 1730116037 + "block_time": 1730137911 }, - "tx_hash": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603", + "tx_hash": "4a12595a90692d8d75833b767c77779efb65f193bc0f1e5e366e52be29fdc5b3", "block_index": 192, - "block_time": 1730116037 + "block_time": 1730137911 } ], "next_cursor": null, @@ -934,13 +934,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 207, - "order_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "block_time": 1730116110 + "order_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "block_time": 1730137979 }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730137979 } ], "next_cursor": 462, @@ -958,14 +958,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "block_time": 1730115936 + "order_match_id": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092_c1575db45cd83abcffebd4c99d8f3559be17e5dac7243236e5f1880313accca5", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "tx1_address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "block_time": 1730137805 }, "tx_hash": null, "block_index": 184, - "block_time": 1730115936 + "block_time": 1730137805 } ], "next_cursor": null, @@ -991,17 +991,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "satoshirate": 1, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "status": 0, - "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "tx_hash": "7ea649660ab8f930cd86bcb45928b49ee1c329482afd913b2b853c8956119f47", "tx_index": 62, - "block_time": 1730116052, + "block_time": 1730137926, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -1010,9 +1010,9 @@ Here is a list of events classified by theme and for each an example response: "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "tx_hash": "7ea649660ab8f930cd86bcb45928b49ee1c329482afd913b2b853c8956119f47", "block_index": 196, - "block_time": 1730116052 + "block_time": 1730137926 } ], "next_cursor": 272, @@ -1032,9 +1032,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "status": 0, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "asset_info": { "divisible": true, "asset_longname": null, @@ -1044,9 +1044,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 560, @@ -1065,13 +1065,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mrTk1ThfTwE2f6PUY5vjkJvga5VgZXf4bk", + "destination": "mmMUyxURvPd5MuCnixQbs49A4GK7CvK1JN", "dispense_quantity": 10, - "dispenser_tx_hash": "a809a9c0b667c336b61ce3e892a7f2d80231121804f3f7db594da58d9ded5a52", - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "tx_hash": "a623caab6512fc5492719029eb7ec34044e6fe307b96362340125090670d3242", + "dispenser_tx_hash": "f1eb75ae9c8f99b5c2562708de555a361d426f74779665cc776feff098698019", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "tx_hash": "10b3e6e863ce3a3669c78f22acd8013cb82443d83ccdd84429a436d8ea57997c", "tx_index": 31, - "block_time": 1730115837, + "block_time": 1730137723, "asset_info": { "divisible": true, "asset_longname": null, @@ -1081,9 +1081,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "a623caab6512fc5492719029eb7ec34044e6fe307b96362340125090670d3242", + "tx_hash": "10b3e6e863ce3a3669c78f22acd8013cb82443d83ccdd84429a436d8ea57997c", "block_index": 144, - "block_time": 1730115837 + "block_time": 1730137723 } ], "next_cursor": null, @@ -1103,14 +1103,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -1121,9 +1121,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 561, @@ -1145,19 +1145,19 @@ Here is a list of events classified by theme and for each an example response: "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "tx_hash": "d27438775220976f2a9340ddb138ba7675d2051df33331a42becbba2f96f2738", "tx_index": 25, "value": 66600.0, - "block_time": 1730115814, + "block_time": 1730137690, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "tx_hash": "d27438775220976f2a9340ddb138ba7675d2051df33331a42becbba2f96f2738", "block_index": 138, - "block_time": 1730115814 + "block_time": 1730137690 } ], "next_cursor": 213, @@ -1195,12 +1195,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "start_block": 0, "status": "open", - "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_hash": "45e530d40405ac9ef1d3be5efa3f3c14d0c4639cebdb66e29c3df26c9f349b33", "tx_index": 42, - "block_time": 1730115889, + "block_time": 1730137766, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1208,9 +1208,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_hash": "45e530d40405ac9ef1d3be5efa3f3c14d0c4639cebdb66e29c3df26c9f349b33", "block_index": 155, - "block_time": 1730115889 + "block_time": 1730137766 } ], "next_cursor": 196, @@ -1228,11 +1228,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc" + "tx_hash": "6d64fafd67d16f229b872eef0a3dbe7296592188ed54a6cca955229900a159a6" }, "tx_hash": null, "block_index": 130, - "block_time": 1730115785 + "block_time": 1730137659 } ], "next_cursor": 110, @@ -1253,17 +1253,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "fairminter_tx_hash": "eadb025b64eec283ac9b50d8a861a332a325a0ef61b6e07e7458764b93b6020d", "paid_quantity": 34, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "status": "valid", - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "2bf6f021e416ac68ff5f5776a8eddaebc2476fbc2754eb3779728e2029a3cee5", "tx_index": 23, - "block_time": 1730115808, + "block_time": 1730137683, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -1271,9 +1271,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "2bf6f021e416ac68ff5f5776a8eddaebc2476fbc2754eb3779728e2029a3cee5", "block_index": 136, - "block_time": 1730115808 + "block_time": 1730137683 } ], "next_cursor": 190, @@ -1294,28 +1294,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "f703cfe223c19e062e103d02c092a7eeb75f16c14dc6840c066ea940ddab89ed:1", + "destination": "20ea8e2d55d7c5d09a47e21a8ac568d3209ca0695bcb43bcc47ed85b677edfad:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m", "status": "valid", - "tx_hash": "f703cfe223c19e062e103d02c092a7eeb75f16c14dc6840c066ea940ddab89ed", + "tx_hash": "20ea8e2d55d7c5d09a47e21a8ac568d3209ca0695bcb43bcc47ed85b677edfad", "tx_index": 65, - "block_time": 1730116064, + "block_time": 1730137936, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "issuer": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "f703cfe223c19e062e103d02c092a7eeb75f16c14dc6840c066ea940ddab89ed", + "tx_hash": "20ea8e2d55d7c5d09a47e21a8ac568d3209ca0695bcb43bcc47ed85b677edfad", "block_index": 199, - "block_time": 1730116064 + "block_time": 1730137936 } ], "next_cursor": 319, @@ -1334,28 +1334,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz", + "destination": "bcrt1qapctycl5mggmtdn3fduyg3d88tdak2petar6nh", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "ebdd9911ac289e537ed7c712b293decfb0d690c1b2390873d53383b30979e9c8:0", + "source": "f8030e846db7b0f26a242c79e8c0d6e38f245ecf6cf203de8579071ecd8d7374:0", "status": "valid", - "tx_hash": "16c2e31138126762962006973bfedc1ced24b4fc3d41616f4ea36346add19de5", + "tx_hash": "0219565c850d1b3ed0785de60440d96852e3308ca6d678feb74e44506de760df", "tx_index": 38, - "block_time": 1730115873, + "block_time": 1730137751, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "16c2e31138126762962006973bfedc1ced24b4fc3d41616f4ea36346add19de5", + "tx_hash": "0219565c850d1b3ed0785de60440d96852e3308ca6d678feb74e44506de760df", "block_index": 151, - "block_time": 1730115873 + "block_time": 1730137751 } ], "next_cursor": null, @@ -1374,14 +1374,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 208, - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "destination": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "msg_index": 1, "quantity": 1500000000, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "source": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", "status": "valid", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -1391,9 +1391,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 667, @@ -1415,17 +1415,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qrac7m6sqdzx9h798y52wk0qj5205d7vtqfjyds", + "source": "bcrt1qy8gyrwsx82ar0edlxqygx5tcjkstq7ct0gal7z", "status": "valid", - "tx_hash": "40efc8e4de6bc24410016279eb759071c80e3ac3ee8fc7a52725555c3f89979e", + "tx_hash": "0c3e7108498a93127a58266d9a33694fe5ba9d597bcec7ee030eb257eb2e2b2b", "tx_index": 9, - "block_time": 1730115749, + "block_time": 1730137624, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "40efc8e4de6bc24410016279eb759071c80e3ac3ee8fc7a52725555c3f89979e", + "tx_hash": "0c3e7108498a93127a58266d9a33694fe5ba9d597bcec7ee030eb257eb2e2b2b", "block_index": 121, - "block_time": 1730115749 + "block_time": 1730137624 } ], "next_cursor": 65, @@ -1482,61 +1482,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_hash": "266c0972d4f52810f8433bf2b54fda3541b96eb40ae53f21abe721b535dfb5ef", + "block_time": 1730137988, + "previous_block_hash": "70ba7089afff84e271f6e7d5e9c822765acfd2cb6166952a11578079921a3ca2", "difficulty": 545259519, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "6015875cc121bdf7e65521f6912035fa5d4764525e808d663a668cd632d1c783", + "txlist_hash": "f2e1468800e212edd8d4c1582e8920a4e1e07b21a6c009c64b80d873405ace7c", + "messages_hash": "9521566d8ccd8d04d106def7434303634dee67ad512e16a70021e7df6bc909cf", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", - "block_time": 1730116110, - "previous_block_hash": "43e679712b4649bc798af14df94c86578f3b408d04178a5c2fc175d41a020122", + "block_hash": "70ba7089afff84e271f6e7d5e9c822765acfd2cb6166952a11578079921a3ca2", + "block_time": 1730137979, + "previous_block_hash": "5df91f5e431fe5150b0eb174a39910e768e8f6767e57ae8ecd9ef9cb634b9bc6", "difficulty": 545259519, - "ledger_hash": "ba02d6708a382d3713cfcfcccac729b1e7e29a6a2aa1c7d19685ccc856890da8", - "txlist_hash": "790b35ebd56c4d625af0345f72bd428d1cb0c0318f9935ae19163367f47cbd3a", - "messages_hash": "1933b8e86c5aad6c5816ac34109db0a5f96f3f784097419eaa5909389373eb47", + "ledger_hash": "f74ab008a7c87e2ccc73e5a3e9c0e771c95c66a0bed747f054e11c0379fe2aea", + "txlist_hash": "fd1df9fdb0ce5ce6dbb6ff8d2da4412ab7b39b5da3cc58d6fc8ecf4e84d3ef5b", + "messages_hash": "b6bb188c4fbe1b2978ff740cd8a242d0eb44724f2e11ba22bf54b67befd368f0", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "43e679712b4649bc798af14df94c86578f3b408d04178a5c2fc175d41a020122", - "block_time": 1730116106, - "previous_block_hash": "4a895299665e1f654c5117e9c4b133cbccccd6db23134dca896fa8a620b81d38", + "block_hash": "5df91f5e431fe5150b0eb174a39910e768e8f6767e57ae8ecd9ef9cb634b9bc6", + "block_time": 1730137976, + "previous_block_hash": "51c555379445358be374b578c132df7642edad6b0dd0a2e5225f85e99d2636ea", "difficulty": 545259519, - "ledger_hash": "5191f4352b18e0244b417732e8ca9a2f4099e82fe6378941d597a9d0f44a35eb", - "txlist_hash": "11ed68e7e561ca9c47bd5e3b49cb3a916edd7b0565c99186172ce08b245266b6", - "messages_hash": "6d6616e6036b35108a1433422b6728e8e7184fe366730d6c4167cf4f128f3957", + "ledger_hash": "9594d29f6550f11b19b100a9ee4116388493394c7ad1e2e7732f32b4db1b8de4", + "txlist_hash": "ff030d39e607db3277a1549f13ab881c260ead75c60a11d8b9c2bb572e2518fe", + "messages_hash": "f8d4a28d73dd38692813078ac78b8f5f4eb1dc3f253661a70343e0dddc901f29", "transaction_count": 1, "confirmed": true }, { "block_index": 205, - "block_hash": "4a895299665e1f654c5117e9c4b133cbccccd6db23134dca896fa8a620b81d38", - "block_time": 1730116102, - "previous_block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", + "block_hash": "51c555379445358be374b578c132df7642edad6b0dd0a2e5225f85e99d2636ea", + "block_time": 1730137973, + "previous_block_hash": "4c5f743ed9f3ae253966764308f1f689ea24b51c803ea2aaed438e8fbd572359", "difficulty": 545259519, - "ledger_hash": "9bc1700e61ef5a091713fdba122f7f916443a27ccc0f6f8962ebd916f77b09fe", - "txlist_hash": "447c3368dca8d934fd7757b6f897b5f6060d596592dc32123ae0664d1286d758", - "messages_hash": "933776eb7aae2e8246e02f0527252645708affea8a2cfcee96ed6a4022a47ab8", + "ledger_hash": "c29bb1ec6528d96f3bc0e7c37b40a5e4ae29bbdb36e441083b7b1e844c7712c5", + "txlist_hash": "925d71a3d7f60c28ff72e87a2bdda61182b5367e6426b70e9f070f671ea006a8", + "messages_hash": "09106d44c8e08bcdc22286148af535c6598a7fa7b8568610a8e4888392786cf0", "transaction_count": 1, "confirmed": true }, { "block_index": 204, - "block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", - "block_time": 1730116099, - "previous_block_hash": "37274251a093028e8065cbc9af85901d3961a9e5e04f4e726b13a0506a915652", + "block_hash": "4c5f743ed9f3ae253966764308f1f689ea24b51c803ea2aaed438e8fbd572359", + "block_time": 1730137968, + "previous_block_hash": "0ae8bfe00469c56b2bc9f99bb596569e6c93bbf649cb8684861e6f6c7f63a275", "difficulty": 545259519, - "ledger_hash": "aa1ba152bb405e250dbe4f7276f155e4c10345fbf42243536809bc9a0ca0307a", - "txlist_hash": "757b7ab2907208b3a7d0202f310e15a22fd7dd5205a5acef4262a2c013a56c84", - "messages_hash": "f866e444026dcc12e65fad983a1b2435470977f04f7668204304a707a604c729", + "ledger_hash": "bcf426c4f1b68e30f288668a09749a9ce095515f3533486c85b2daf5fd9a2106", + "txlist_hash": "0f080035c3ea5bd8b54c43324a6be6e9355bededc4832a72eaa3475a5e79a0c1", + "messages_hash": "111d5278db433236e0076c80347b185bd20cc99f5be3753514bc272ec017f67e", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1573,13 @@ Return the information of a block { "result": { "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_hash": "266c0972d4f52810f8433bf2b54fda3541b96eb40ae53f21abe721b535dfb5ef", + "block_time": 1730137988, + "previous_block_hash": "70ba7089afff84e271f6e7d5e9c822765acfd2cb6166952a11578079921a3ca2", "difficulty": 545259519, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "6015875cc121bdf7e65521f6912035fa5d4764525e808d663a668cd632d1c783", + "txlist_hash": "f2e1468800e212edd8d4c1582e8920a4e1e07b21a6c009c64b80d873405ace7c", + "messages_hash": "9521566d8ccd8d04d106def7434303634dee67ad512e16a70021e7df6bc909cf", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1591,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d` (str, required) - The index of the block to return + + block_hash: `266c0972d4f52810f8433bf2b54fda3541b96eb40ae53f21abe721b535dfb5ef` (str, required) - The index of the block to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -1603,13 +1603,13 @@ Return the information of a block { "result": { "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_hash": "266c0972d4f52810f8433bf2b54fda3541b96eb40ae53f21abe721b535dfb5ef", + "block_time": 1730137988, + "previous_block_hash": "70ba7089afff84e271f6e7d5e9c822765acfd2cb6166952a11578079921a3ca2", "difficulty": 545259519, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "6015875cc121bdf7e65521f6912035fa5d4764525e808d663a668cd632d1c783", + "txlist_hash": "f2e1468800e212edd8d4c1582e8920a4e1e07b21a6c009c64b80d873405ace7c", + "messages_hash": "9521566d8ccd8d04d106def7434303634dee67ad512e16a70021e7df6bc909cf", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1640,17 @@ Returns the transactions of a block "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_hash": "266c0972d4f52810f8433bf2b54fda3541b96eb40ae53f21abe721b535dfb5ef", + "block_time": 1730137988, + "source": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", + "destination": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1 5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1696,11 +1696,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "6015875cc121bdf7e65521f6912035fa5d4764525e808d663a668cd632d1c783", + "messages_hash": "9521566d8ccd8d04d106def7434303634dee67ad512e16a70021e7df6bc909cf", "transaction_count": 1, - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "block_time": 1730116123 + "txlist_hash": "f2e1468800e212edd8d4c1582e8920a4e1e07b21a6c009c64b80d873405ace7c", + "block_time": 1730137988 }, "tx_hash": null }, @@ -1709,10 +1709,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75 }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897" }, { "event_index": 673, @@ -1721,14 +1721,14 @@ Returns the events of a block "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -1739,7 +1739,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897" }, { "event_index": 672, @@ -1748,9 +1748,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "status": 0, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "asset_info": { "divisible": true, "asset_longname": null, @@ -1760,22 +1760,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897" }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -1785,7 +1785,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897" } ], "next_cursor": 670, @@ -1868,16 +1868,16 @@ Returns the events of a block filtered by event "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -1887,7 +1887,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897" }, { "event_index": 669, @@ -1897,12 +1897,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -1912,7 +1912,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897" }, { "event_index": 666, @@ -1922,22 +1922,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "block_time": 1730137988, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897" } ], "next_cursor": null, @@ -2000,16 +2000,16 @@ Returns the credits of a block "result": [ { "block_index": 208, - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -2025,12 +2025,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "utxo": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -2046,16 +2046,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "utxo": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -2115,12 +2115,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "utxo": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "utxo_address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -2136,16 +2136,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "utxo": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "utxo_address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -2181,10 +2181,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "object_id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", "block_index": 207, "confirmed": true, - "block_time": 1730116110 + "block_time": 1730137979 } ], "next_cursor": null, @@ -2216,13 +2216,13 @@ Returns the cancels of a block "result": [ { "tx_index": 58, - "tx_hash": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603", + "tx_hash": "4a12595a90692d8d75833b767c77779efb65f193bc0f1e5e366e52be29fdc5b3", "block_index": 192, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "offer_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "offer_hash": "697d9fe9bf571bc39676614a50f1490b53a0ee0b8b20776717636fe7ad5bb762", "status": "valid", "confirmed": true, - "block_time": 1730116037 + "block_time": 1730137911 } ], "next_cursor": null, @@ -2254,15 +2254,15 @@ Returns the destructions of a block "result": [ { "tx_index": 61, - "tx_hash": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c", + "tx_hash": "5ddd69d96e90dd52e5459771dbe9d79a574e9a0a1c1d06a1aeb97add894857c1", "block_index": 195, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730116049, + "block_time": 1730137922, "asset_info": { "divisible": true, "asset_longname": null, @@ -2315,14 +2315,14 @@ Returns the issuances of a block "result": [ { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -2337,7 +2337,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730116077, + "block_time": 1730137948, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2371,10 +2371,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "destination": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2382,7 +2382,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -2395,10 +2395,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "destination": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2406,11 +2406,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -2448,27 +2448,27 @@ Returns the dispenses of a block { "tx_index": 75, "dispense_index": 0, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "destination": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2483,7 +2483,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -2524,16 +2524,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 60, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "e8d7da48b9ce9e612be4e1f2e60d819f89facd419df15b19825c2b1788dfbacd", "block_index": 194, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730116045, + "block_time": 1730137917, "fee_paid_normalized": "0.00600000" } ], @@ -2572,10 +2572,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_hash": "45e530d40405ac9ef1d3be5efa3f3c14d0c4639cebdb66e29c3df26c9f349b33", "tx_index": 42, "block_index": 155, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2600,7 +2600,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730115889, + "block_time": 1730137766, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2637,22 +2637,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "2bf6f021e416ac68ff5f5776a8eddaebc2476fbc2754eb3779728e2029a3cee5", "tx_index": 23, "block_index": 136, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "eadb025b64eec283ac9b50d8a861a332a325a0ef61b6e07e7458764b93b6020d", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115808, + "block_time": 1730137683, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -2691,17 +2691,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "tx_hash": "d27438775220976f2a9340ddb138ba7675d2051df33331a42becbba2f96f2738", "block_index": 138, - "block_hash": "408b3669259efe9231a8e85810fa01da28c68182a7e963e48f10de4b8073293b", - "block_time": 1730115814, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_hash": "1af19d3bd49ff7117f0f0249d8b2c1940070fe10ed12d4573388bddde45798f2", + "block_time": 1730137690, + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9:1", + "utxos_info": "d27438775220976f2a9340ddb138ba7675d2051df33331a42becbba2f96f2738:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2726,25 +2726,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "5ca9410dca98770144ee5afe5dcbf1afe4253bf161ee77b9b576832b8ccb09a7", "block_index": 187, - "block_hash": "1477c68770e237147df656e4057175af51d384211889daf8c50bc0ac4ee012ef", - "block_time": 1730116019, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "372f469ebe381b15d5d003d2c39c01b258e0816218015fcf93f2dea354167962", + "block_time": 1730137893, + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "btc_amount": 2000, "fee": 10000, - "data": "0ba70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "data": "0b85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", "supported": true, - "utxos_info": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8:0", + "utxos_info": "5ca9410dca98770144ee5afe5dcbf1afe4253bf161ee77b9b576832b8ccb09a7:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx0_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "tx1_hash": "c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", + "order_match_id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", "status": "valid" } }, @@ -2759,23 +2759,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603", + "tx_hash": "4a12595a90692d8d75833b767c77779efb65f193bc0f1e5e366e52be29fdc5b3", "block_index": 192, - "block_hash": "085b3661fde628077cb1bd06946cdbd6a2d4949cc0e15cb4bb02f80a02476132", - "block_time": 1730116037, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "59f3ea51f235f7b9be68f46b30d86cc9db5d42d9d2f5c601ccccc73c32a60cde", + "block_time": 1730137911, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4608d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "data": "46697d9fe9bf571bc39676614a50f1490b53a0ee0b8b20776717636fe7ad5bb762", "supported": true, - "utxos_info": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603:1", + "utxos_info": "4a12595a90692d8d75833b767c77779efb65f193bc0f1e5e366e52be29fdc5b3:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "offer_hash": "697d9fe9bf571bc39676614a50f1490b53a0ee0b8b20776717636fe7ad5bb762", "status": "valid" } }, @@ -2790,17 +2790,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c", + "tx_hash": "5ddd69d96e90dd52e5459771dbe9d79a574e9a0a1c1d06a1aeb97add894857c1", "block_index": 195, - "block_hash": "649f35ce9b812cca25395a6080f41d14c2205deae73e39df344a44c884c252cd", - "block_time": 1730116049, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "block_hash": "01b7d84323d76a951f910112add318f35e4c53e886475aa6f18c097dbf29ebe7", + "block_time": 1730137922, + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c:1", + "utxos_info": "5ddd69d96e90dd52e5459771dbe9d79a574e9a0a1c1d06a1aeb97add894857c1:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2830,17 +2830,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "tx_hash": "7ea649660ab8f930cd86bcb45928b49ee1c329482afd913b2b853c8956119f47", "block_index": 196, - "block_hash": "1d9437f22b219d286914a85937f404bce390a88d6cc143f5576fd47635dc7b6d", - "block_time": 1730116052, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "4911faab8fef641653cfd74d3f966bf653eb4071694725281369eb8b466d3b56", + "block_time": 1730137926, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109:1", + "utxos_info": "7ea649660ab8f930cd86bcb45928b49ee1c329482afd913b2b853c8956119f47:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2857,7 +2857,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -2876,17 +2876,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_hash": "266c0972d4f52810f8433bf2b54fda3541b96eb40ae53f21abe721b535dfb5ef", + "block_time": 1730137988, + "source": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", + "destination": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1 5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2906,17 +2906,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "751e21b82410acd34989da9ec113ea38677f8352c49fb6ab389e95f8869bb68f", "block_index": 154, - "block_hash": "6567d716135b76f23ac9e738a9a7cc690af701105e6da61c96461b8c14580cfb", - "block_time": 1730115885, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "08bc3aa38bcee20a66d814c62f94d029cccda89265cfadefb82b227b156f9367", + "block_time": 1730137763, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a:1", + "utxos_info": "751e21b82410acd34989da9ec113ea38677f8352c49fb6ab389e95f8869bb68f:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2929,7 +2929,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -2954,17 +2954,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23", "block_index": 201, - "block_hash": "31229cfb58723faf819c8772e47a52c5cc4c531fdef4370ba12b94679b292486", - "block_time": 1730116077, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "529199633ca464551a80098423c0eb3d93a774b1dbd52955ff9ae385228b4563", + "block_time": 1730137948, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc:1", + "utxos_info": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2996,17 +2996,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", - "block_time": 1730116110, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "70ba7089afff84e271f6e7d5e9c822765acfd2cb6166952a11578079921a3ca2", + "block_time": 1730137979, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "utxos_info": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3049,17 +3049,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 69, - "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "tx_hash": "315c6064b2897e22ff0c1467169f516d2d30571587f022e17fdde9e4f0eac872", "block_index": 202, - "block_hash": "13a7856636590644ca049ed5074ccb96a6b9694cf0a3187ec4d3b50111b76353", - "block_time": 1730116081, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "3e8cff051c937ae2569ee4e4e492971b053ac98ded5dcba9c8141a9fe4e3df41", + "block_time": 1730137952, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880a500a0204b6c11d32ab0bd14b78f9db630019898", + "data": "02000000178d82231300000000000003e880a548b4d7c3faa3572780aa9b629ef0fab1613ce4", "supported": true, - "utxos_info": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02:1", + "utxos_info": "315c6064b2897e22ff0c1467169f516d2d30571587f022e17fdde9e4f0eac872:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3067,12 +3067,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -3090,17 +3090,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "block_index": 206, - "block_hash": "43e679712b4649bc798af14df94c86578f3b408d04178a5c2fc175d41a020122", - "block_time": 1730116106, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "block_hash": "5df91f5e431fe5150b0eb174a39910e768e8f6767e57ae8ecd9ef9cb634b9bc6", + "block_time": 1730137976, + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038088638b12211ad2887d7013cdfa98b822eb7f220a802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a8392a7ee1ff27fa75740f0b5c3119b09a4df90780d366a43686c88a15c961c4f50af139cd1494420680eea22e429f2e4b5aa6b8e2c872ea3e8dbbc6c8dc88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257:0", + "utxos_info": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3108,14 +3108,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -3123,7 +3123,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3149,23 +3149,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 60, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "e8d7da48b9ce9e612be4e1f2e60d819f89facd419df15b19825c2b1788dfbacd", "block_index": 194, - "block_hash": "59079c23beb8663ec42bf5ef0e77bfe0a1acd003e0ccddfe92b0611464c57038", - "block_time": 1730116045, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "block_hash": "16537efaa0cd52fb65c7a688a1877ac8d67d0ea076d98e381d697529461777df", + "block_time": 1730137917, + "source": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04802ae165e7b04a97caa52d91a46d89891d704370ff017377656570206d7920617373657473", + "data": "0480eea22e429f2e4b5aa6b8e2c872ea3e8dbbc6c8dc017377656570206d7920617373657473", "supported": true, - "utxos_info": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4:1", + "utxos_info": "e8d7da48b9ce9e612be4e1f2e60d819f89facd419df15b19825c2b1788dfbacd:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "flags": 1, "memo": "sweep my assets" } @@ -3198,17 +3198,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_hash": "266c0972d4f52810f8433bf2b54fda3541b96eb40ae53f21abe721b535dfb5ef", + "block_time": 1730137988, + "source": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", + "destination": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1 5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3221,17 +3221,17 @@ Returns the list of the last ten transactions }, { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", - "block_time": 1730116110, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "70ba7089afff84e271f6e7d5e9c822765acfd2cb6166952a11578079921a3ca2", + "block_time": 1730137979, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "utxos_info": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3276,7 +3276,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `0200000000010122235f2d650a226bf825e40c3473b0e86f83f9343173f94cbc4a32f87c65de5a0000000000ffffffff020000000000000000356a33092deefc89a2a67b64e4c655a20092a63cf5fe4084982c805fb233a2bc65b00a4ef01528b34993cb1af6dde83d6b01746fbf64f0ca052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02473044022021eba1988ce97e426258deed9b863cd2f5e51abed055fc30eafdd9d5673ebbca022035367d00fdbc15592a449b1d3aceb36faeb59a30b022c4120fe5ae511cdf3b44012103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f500000000` (str, required) - Raw transaction in hex format + + rawtransaction: `0200000000010190b7f7df10c2506994e7e61bd3204e335dbe6b143b5ea90b9e053dc6f7eccd110000000000ffffffff020000000000000000356a33ddc11c2b3e7784061bc5a627932de1d677b19dedeb641135cb4b21e83973f4c7641b03bc59ddefa11e6872def6295b7ac9766cf0ca052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df9070247304402201c99500e54235306b8c7444e552f3c8f3bea6aecb7e1e04d6865910eaa05756402203b00c3a8c27dd30f19313a2e025e2532ad1fde26bc3b125f9859bf247813b2e2012103f34cec8b12ed0ecb49aac11f3a6b5c323c2d435491d7c9d300ebb7298ea2b35d00000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -3289,7 +3289,7 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, @@ -3300,7 +3300,7 @@ Returns Counterparty information from a raw transaction in hex format. "coinbase": false, "vin": [ { - "hash": "22235f2d650a226bf825e40c3473b0e86f83f9343173f94cbc4a32f87c65de5a", + "hash": "90b7f7df10c2506994e7e61bd3204e335dbe6b143b5ea90b9e053dc6f7eccd11", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3310,20 +3310,20 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 0, - "script_pub_key": "6a33092deefc89a2a67b64e4c655a20092a63cf5fe4084982c805fb233a2bc65b00a4ef01528b34993cb1af6dde83d6b01746fbf64" + "script_pub_key": "6a33ddc11c2b3e7784061bc5a627932de1d677b19dedeb641135cb4b21e83973f4c7641b03bc59ddefa11e6872def6295b7ac9766c" }, { "value": 4999990000, - "script_pub_key": "001488638b12211ad2887d7013cdfa98b822eb7f220a" + "script_pub_key": "0014a8392a7ee1ff27fa75740f0b5c3119b09a4df907" } ], "vtxinwit": [ - "3044022021eba1988ce97e426258deed9b863cd2f5e51abed055fc30eafdd9d5673ebbca022035367d00fdbc15592a449b1d3aceb36faeb59a30b022c4120fe5ae511cdf3b4401", - "03998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f5" + "304402201c99500e54235306b8c7444e552f3c8f3bea6aecb7e1e04d6865910eaa05756402203b00c3a8c27dd30f19313a2e025e2532ad1fde26bc3b125f9859bf247813b2e201", + "03f34cec8b12ed0ecb49aac11f3a6b5c323c2d435491d7c9d300ebb7298ea2b35d" ], "lock_time": 0, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", - "tx_id": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8" + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", + "tx_id": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0" }, "unpacked_data": { "message_type": "order", @@ -3365,7 +3365,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f` (str, required) - Transaction hash + + tx_hash: `7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277` (str, required) - Transaction hash + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3376,18 +3376,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", + "data": "020000000000000001000000000000271080d366a43686c88a15c961c4f50af139cd14944206", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "5a50713f58b6550c247df7c2b8567c2c4a84f20cb8cb68753db3ba99f474dc98", + "hash": "9a8cfdf33c64e8a8f7815cfaf3c5afc9aec94d1e0b28791a63c864884e140ab6", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3397,20 +3397,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2eb84b152a827bd18cceeba1308198de9799d937904e165fafd90b85dbc93bc1a08b3043d21b9b815079166ecce04f" + "script_pub_key": "6a2e3835be1e093c905b36bd11fd95d4889dbb80e1c9f6cafc31ef49acd9f3f23f669e78a8117ef9ffb046142fbde4a3" }, { "value": 4999970000, - "script_pub_key": "00142ae165e7b04a97caa52d91a46d89891d704370ff" + "script_pub_key": "0014eea22e429f2e4b5aa6b8e2c872ea3e8dbbc6c8dc" } ], "vtxinwit": [ - "3044022041d4d57109cb06f7743adf5e31ff61ae4d4d8e4b0aa597e866693a4ec0db1e4b022068a38087d86e8473a3601cb134cb4a9cdee4c11ec669e3e4c9f0234ab4f7a9c101", - "02d9ed6b0141de6dd60aa82fcd650f0ea18a84a8c9069b9ff072e09c8174a59ea3" + "30440220340cc1499c4bc4601f3e397f1345fe98d22ce6db5a1ad202e69c65f4503db70f0220432b22a93883c905e996defd9016f0d0108d527fffc0ea2d189223c4a7ed9f4001", + "03f8ac06f64189eaeaa5d9c1903ec8553e14fef7d5320b287093f9a87c7964ec73" ], "lock_time": 0, - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", - "tx_id": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f" + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", + "tx_id": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3418,7 +3418,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "memo": null, "asset_info": { "divisible": true, @@ -3479,17 +3479,17 @@ Returns a transaction by its index. { "result": { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_hash": "266c0972d4f52810f8433bf2b54fda3541b96eb40ae53f21abe721b535dfb5ef", + "block_time": 1730137988, + "source": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", + "destination": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1 5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3508,7 +3508,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8` (str, required) - The hash of the transaction + + tx_hash: `5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897` (str, required) - The hash of the transaction + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3520,17 +3520,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_hash": "266c0972d4f52810f8433bf2b54fda3541b96eb40ae53f21abe721b535dfb5ef", + "block_time": 1730137988, + "source": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", + "destination": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1 5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3573,12 +3573,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75 }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 673, @@ -3587,14 +3587,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -3605,9 +3605,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 672, @@ -3616,9 +3616,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "status": 0, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "asset_info": { "divisible": true, "asset_longname": null, @@ -3628,24 +3628,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -3655,9 +3655,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 670, @@ -3665,14 +3665,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 208, - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "destination": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "msg_index": 1, "quantity": 1500000000, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "source": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", "status": "valid", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -3682,9 +3682,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 669, @@ -3697,7 +3697,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8` (str, required) - The hash of the transaction to return + + tx_hash: `5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `675` (str, optional) - The last event index to return @@ -3721,12 +3721,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75 }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 673, @@ -3735,14 +3735,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -3753,9 +3753,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 672, @@ -3764,9 +3764,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "status": 0, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "asset_info": { "divisible": true, "asset_longname": null, @@ -3776,24 +3776,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -3803,9 +3803,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 670, @@ -3813,14 +3813,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 208, - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "destination": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "msg_index": 1, "quantity": 1500000000, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "source": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", "status": "valid", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -3830,9 +3830,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 669, @@ -3845,7 +3845,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8` (str, required) - The hash of the transaction to return + + tx_hash: `5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897` (str, required) - The hash of the transaction to return + cursor (str, optional) - The last index of the debits to return + Default: `None` + limit: `5` (int, optional) - The maximum number of debits to return @@ -3864,10 +3864,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "destination": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3875,7 +3875,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -3888,10 +3888,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "destination": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3899,11 +3899,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -3921,7 +3921,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8` (str, required) - The hash of the transaction to return + + tx_hash: `5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897` (str, required) - The hash of the transaction to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -3941,27 +3941,27 @@ Returns the dispenses of a block { "tx_index": 75, "dispense_index": 0, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "destination": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3976,7 +3976,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -4020,16 +4020,16 @@ Returns the events of a transaction "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -4039,9 +4039,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 669, @@ -4051,12 +4051,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -4066,9 +4066,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 666, @@ -4078,24 +4078,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "block_time": 1730137988, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": null, @@ -4108,7 +4108,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8` (str, required) - The hash of the transaction to return + + tx_hash: `5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `675` (str, optional) - The last event index to return + Default: `None` @@ -4130,16 +4130,16 @@ Returns the events of a transaction "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -4149,9 +4149,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 669, @@ -4161,12 +4161,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -4176,9 +4176,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 666, @@ -4188,24 +4188,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "block_time": 1730137988, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": null, @@ -4220,7 +4220,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr,bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc,bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3` (str, required) - Comma separated list of addresses + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -4244,7 +4244,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4254,7 +4254,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -4265,7 +4265,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4275,7 +4275,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -4286,7 +4286,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4296,7 +4296,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -4307,7 +4307,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4317,7 +4317,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -4328,7 +4328,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4338,7 +4338,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -4349,7 +4349,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4359,7 +4359,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -4376,7 +4376,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr,bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc,bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3` (str, required) - Comma separated list of addresses to return + cursor: `75` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4395,17 +4395,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", - "block_time": 1730116110, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "70ba7089afff84e271f6e7d5e9c822765acfd2cb6166952a11578079921a3ca2", + "block_time": 1730137979, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "utxos_info": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4441,17 +4441,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "block_index": 206, - "block_hash": "43e679712b4649bc798af14df94c86578f3b408d04178a5c2fc175d41a020122", - "block_time": 1730116106, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "block_hash": "5df91f5e431fe5150b0eb174a39910e768e8f6767e57ae8ecd9ef9cb634b9bc6", + "block_time": 1730137976, + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038088638b12211ad2887d7013cdfa98b822eb7f220a802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a8392a7ee1ff27fa75740f0b5c3119b09a4df90780d366a43686c88a15c961c4f50af139cd1494420680eea22e429f2e4b5aa6b8e2c872ea3e8dbbc6c8dc88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257:0", + "utxos_info": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4459,14 +4459,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -4474,7 +4474,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4493,17 +4493,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 72, - "tx_hash": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "tx_hash": "1ff0761a97319d2a01ea6914b4c2e6a1f8f6381836ce932c653a8c4815df9cb7", "block_index": 205, - "block_hash": "4a895299665e1f654c5117e9c4b133cbccccd6db23134dca896fa8a620b81d38", - "block_time": 1730116102, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "block_hash": "51c555379445358be374b578c132df7642edad6b0dd0a2e5225f85e99d2636ea", + "block_time": 1730137973, + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038088638b12211ad2887d7013cdfa98b822eb7f220a802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ffc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a8392a7ee1ff27fa75740f0b5c3119b09a4df90780d366a43686c88a15c961c4f50af139cd1494420680eea22e429f2e4b5aa6b8e2c872ea3e8dbbc6c8dcc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0:0", + "utxos_info": "1ff0761a97319d2a01ea6914b4c2e6a1f8f6381836ce932c653a8c4815df9cb7:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4511,14 +4511,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -4526,7 +4526,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4545,17 +4545,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "block_index": 204, - "block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", - "block_time": 1730116099, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "4c5f743ed9f3ae253966764308f1f689ea24b51c803ea2aaed438e8fbd572359", + "block_time": 1730137968, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a548b4d7c3faa3572780aa9b629ef0fab1613ce480d366a43686c88a15c961c4f50af139cd1494420680eea22e429f2e4b5aa6b8e2c872ea3e8dbbc6c8dc40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5:0", + "utxos_info": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4563,14 +4563,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -4578,7 +4578,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4597,17 +4597,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409", "block_index": 203, - "block_hash": "37274251a093028e8065cbc9af85901d3961a9e5e04f4e726b13a0506a915652", - "block_time": 1730116095, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "0ae8bfe00469c56b2bc9f99bb596569e6c93bbf649cb8684861e6f6c7f63a275", + "block_time": 1730137955, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a548b4d7c3faa3572780aa9b629ef0fab1613ce480d366a43686c88a15c961c4f50af139cd1494420680eea22e429f2e4b5aa6b8e2c872ea3e8dbbc6c8dc88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354:0", + "utxos_info": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4615,14 +4615,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -4630,7 +4630,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4658,7 +4658,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr,bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc,bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `675` (str, optional) - The last event index to return @@ -4694,11 +4694,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "status": "open", - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "tx_index": 74, - "block_time": 1730116110, + "block_time": 1730137979, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4722,24 +4722,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730137979 }, { "event_index": 658, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "block_index": 207, - "event": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "event": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "quantity": 1000, "tx_index": 74, "utxo": null, "utxo_address": null, - "block_time": 1730116110, + "block_time": 1730137979, "asset_info": { "divisible": true, "asset_longname": null, @@ -4749,37 +4749,37 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730137979 }, { "event_index": 657, "event": "ORDER_EXPIRATION", "params": { "block_index": 207, - "order_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "block_time": 1730116110 + "order_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "block_time": 1730137979 }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730137979 }, { "event_index": 656, "event": "CREDIT", "params": { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "block_index": 207, "calling_function": "cancel order", - "event": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "event": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730116110, + "block_time": 1730137979, "asset_info": { "divisible": true, "asset_longname": null, @@ -4789,25 +4789,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00005000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730137979 }, { "event_index": 654, "event": "NEW_TRANSACTION", "params": { - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_hash": "70ba7089afff84e271f6e7d5e9c822765acfd2cb6166952a11578079921a3ca2", "block_index": 207, - "block_time": 1730116110, + "block_time": 1730137979, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "tx_index": 74, - "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "utxos_info": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4839,13 +4839,13 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730137979 } ], "next_cursor": 650, - "result_count": 236 + "result_count": 237 } ``` @@ -4854,7 +4854,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu,bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e,bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft` (str, required) - Comma separated list of addresses to return + cursor (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return @@ -4870,17 +4870,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "memo": null, "quantity": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "status": "valid", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "tx_index": 76, "asset_info": { "divisible": true, @@ -4891,22 +4891,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "CREDIT", "params": { - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -4916,22 +4916,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "XCP", "block_index": 208, - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -4941,30 +4941,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730116127.587877, + "block_time": 1730137992.2259407, "btc_amount": 0, - "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", + "data": "020000000000000001000000000000271080d366a43686c88a15c961c4f50af139cd14944206", "destination": "", "fee": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "tx_index": 76, - "utxos_info": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f:1", + "utxos_info": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "memo": null, "asset_info": { "divisible": true, @@ -4978,7 +4978,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 } ], "next_cursor": null, @@ -4991,7 +4991,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -5011,7 +5011,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5019,14 +5019,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5034,14 +5034,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5049,14 +5049,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -5071,7 +5071,7 @@ Returns the balances of an address "quantity_normalized": "826.49941000" }, { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5079,7 +5079,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -5096,7 +5096,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -5109,7 +5109,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -5134,7 +5134,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5184,16 +5184,16 @@ Returns the credits of an address "result": [ { "block_index": 207, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "event": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116110, + "block_time": 1730137979, "asset_info": { "divisible": true, "asset_longname": null, @@ -5205,16 +5205,16 @@ Returns the credits of an address }, { "block_index": 206, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "event": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730137976, "asset_info": { "divisible": true, "asset_longname": null, @@ -5226,16 +5226,16 @@ Returns the credits of an address }, { "block_index": 205, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "event": "1ff0761a97319d2a01ea6914b4c2e6a1f8f6381836ce932c653a8c4815df9cb7", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116102, + "block_time": 1730137973, "asset_info": { "divisible": true, "asset_longname": null, @@ -5247,20 +5247,20 @@ Returns the credits of an address }, { "block_index": 201, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "event": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23", "tx_index": 68, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116077, + "block_time": 1730137948, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -5268,16 +5268,16 @@ Returns the credits of an address }, { "block_index": 192, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "event": "697d9fe9bf571bc39676614a50f1490b53a0ee0b8b20776717636fe7ad5bb762", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116037, + "block_time": 1730137911, "asset_info": { "divisible": true, "asset_longname": null, @@ -5298,7 +5298,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5337,16 +5337,16 @@ Returns the debits of an address "result": [ { "block_index": 207, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "event": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116110, + "block_time": 1730137979, "asset_info": { "divisible": true, "asset_longname": null, @@ -5358,16 +5358,16 @@ Returns the debits of an address }, { "block_index": 204, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "event": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730137968, "asset_info": { "divisible": true, "asset_longname": null, @@ -5379,20 +5379,20 @@ Returns the debits of an address }, { "block_index": 204, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "event": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730137968, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -5400,16 +5400,16 @@ Returns the debits of an address }, { "block_index": 203, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "event": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730137955, "asset_info": { "divisible": true, "asset_longname": null, @@ -5421,20 +5421,20 @@ Returns the debits of an address }, { "block_index": 203, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "event": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730137955, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -5451,7 +5451,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address of the feed + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5486,7 +5486,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address to return + cursor (str, optional) - The last index of the broadcasts to return + Default: `None` + limit: `5` (int, optional) - The maximum number of broadcasts to return @@ -5505,9 +5505,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "261b5785cc07a1f7000bee3be198f5d90393f35ed50ad3c8656eafadf5e468dc", + "tx_hash": "3ee82eaec6bfaa791579394d101585d4fa2bef31e29c27d9f58abfe63a99450e", "block_index": 137, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5515,7 +5515,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730115811, + "block_time": 1730137686, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5529,7 +5529,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address to return + cursor (str, optional) - The last index of the burns to return + Default: `None` + limit: `5` (int, optional) - The maximum number of burns to return @@ -5548,14 +5548,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "4e51590e06d15e411d148775427a365b6d8b79fe62e2bddbc21caf33d13f1998", + "tx_hash": "000aaab41ce6ef6c17629c4380910445f074a032c9827f3e0cfb7a1c35121f48", "block_index": 112, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730115719, + "block_time": 1730137592, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5570,7 +5570,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address to return + cursor (str, optional) - The last index of the sends to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sends to return @@ -5589,10 +5589,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5600,7 +5600,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730137968, "asset_info": { "divisible": true, "asset_longname": null, @@ -5613,10 +5613,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5624,11 +5624,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730137968, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -5637,10 +5637,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5648,11 +5648,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730137968, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -5661,10 +5661,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409", "block_index": 203, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5672,7 +5672,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730137955, "asset_info": { "divisible": true, "asset_longname": null, @@ -5685,10 +5685,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409", "block_index": 203, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5696,11 +5696,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730137955, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -5718,7 +5718,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz` (str, required) - The address to return + + address: `bcrt1qapctycl5mggmtdn3fduyg3d88tdak2petar6nh` (str, required) - The address to return + cursor (str, optional) - The last index of the sends to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sends to return @@ -5737,10 +5737,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "16c2e31138126762962006973bfedc1ced24b4fc3d41616f4ea36346add19de5", + "tx_hash": "0219565c850d1b3ed0785de60440d96852e3308ca6d678feb74e44506de760df", "block_index": 151, - "source": "ebdd9911ac289e537ed7c712b293decfb0d690c1b2390873d53383b30979e9c8:0", - "destination": "bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz", + "source": "f8030e846db7b0f26a242c79e8c0d6e38f245ecf6cf203de8579071ecd8d7374:0", + "destination": "bcrt1qapctycl5mggmtdn3fduyg3d88tdak2petar6nh", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5748,11 +5748,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730115873, + "block_time": 1730137751, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -5770,7 +5770,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5790,10 +5790,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5801,11 +5801,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730137968, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -5814,10 +5814,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5825,11 +5825,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730137968, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -5838,10 +5838,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409", "block_index": 203, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5849,11 +5849,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730137955, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -5862,10 +5862,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409", "block_index": 203, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5873,11 +5873,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730137955, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -5886,10 +5886,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 69, - "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "tx_hash": "315c6064b2897e22ff0c1467169f516d2d30571587f022e17fdde9e4f0eac872", "block_index": 202, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5897,11 +5897,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116081, + "block_time": 1730137952, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -5919,7 +5919,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz` (str, required) - The address to return + + address: `bcrt1qapctycl5mggmtdn3fduyg3d88tdak2petar6nh` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5947,7 +5947,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5976,9 +5976,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5987,7 +5987,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5997,7 +5997,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -6013,9 +6013,9 @@ Returns the dispensers of an address }, { "tx_index": 62, - "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "tx_hash": "7ea649660ab8f930cd86bcb45928b49ee1c329482afd913b2b853c8956119f47", "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6024,7 +6024,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6034,11 +6034,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730116055, + "block_time": 1730137929, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -6059,7 +6059,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -6072,9 +6072,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6083,7 +6083,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6093,7 +6093,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -6115,7 +6115,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -6135,19 +6135,19 @@ Returns the dispenses of a source { "tx_index": 63, "dispense_index": 0, - "tx_hash": "6afc6887d0234625af2de1aad7aa4588fb3aa054b9f1df4e9de8cd43df5794ae", + "tx_hash": "aacf983aa69a35ede968b26e5fa61476a91d41b13010a74ccb216d31681d84ea", "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "dispenser_tx_hash": "7ea649660ab8f930cd86bcb45928b49ee1c329482afd913b2b853c8956119f47", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6155,7 +6155,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6170,11 +6170,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730116055, + "block_time": 1730137929, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -6184,19 +6184,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "69a80e02531ce3205a58f83d468e6564d8d9daf4cbba3c45f3612ab9ac3a2f61", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6204,7 +6204,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6219,7 +6219,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -6233,19 +6233,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "f3e345e80e0ba6371f2e384ce4fe33c5ab5c0ee74d5ddd52cb85774560d040a7", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6253,7 +6253,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6268,7 +6268,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730137696, "asset_info": { "divisible": true, "asset_longname": null, @@ -6290,7 +6290,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address to return + + address: `bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -6310,19 +6310,19 @@ Returns the dispenses of a destination { "tx_index": 63, "dispense_index": 0, - "tx_hash": "6afc6887d0234625af2de1aad7aa4588fb3aa054b9f1df4e9de8cd43df5794ae", + "tx_hash": "aacf983aa69a35ede968b26e5fa61476a91d41b13010a74ccb216d31681d84ea", "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "dispenser_tx_hash": "7ea649660ab8f930cd86bcb45928b49ee1c329482afd913b2b853c8956119f47", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6330,7 +6330,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6345,11 +6345,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730116055, + "block_time": 1730137929, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -6359,19 +6359,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "69a80e02531ce3205a58f83d468e6564d8d9daf4cbba3c45f3612ab9ac3a2f61", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6379,7 +6379,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6394,7 +6394,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -6408,19 +6408,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "f3e345e80e0ba6371f2e384ce4fe33c5ab5c0ee74d5ddd52cb85774560d040a7", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6428,7 +6428,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6443,7 +6443,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730137696, "asset_info": { "divisible": true, "asset_longname": null, @@ -6465,7 +6465,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` @@ -6486,19 +6486,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "69a80e02531ce3205a58f83d468e6564d8d9daf4cbba3c45f3612ab9ac3a2f61", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6506,7 +6506,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6521,7 +6521,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -6535,19 +6535,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "f3e345e80e0ba6371f2e384ce4fe33c5ab5c0ee74d5ddd52cb85774560d040a7", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6555,7 +6555,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6570,7 +6570,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730137696, "asset_info": { "divisible": true, "asset_longname": null, @@ -6592,7 +6592,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address to return + + address: `bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` @@ -6613,19 +6613,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "69a80e02531ce3205a58f83d468e6564d8d9daf4cbba3c45f3612ab9ac3a2f61", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6633,7 +6633,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6648,7 +6648,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -6662,19 +6662,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "f3e345e80e0ba6371f2e384ce4fe33c5ab5c0ee74d5ddd52cb85774560d040a7", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6682,7 +6682,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6697,7 +6697,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730137696, "asset_info": { "divisible": true, "asset_longname": null, @@ -6719,7 +6719,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu` (str, required) - The address to return + + address: `bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e` (str, required) - The address to return + cursor (str, optional) - The last index of the sweeps to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sweeps to return @@ -6738,16 +6738,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 60, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "e8d7da48b9ce9e612be4e1f2e60d819f89facd419df15b19825c2b1788dfbacd", "block_index": 194, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730116045, + "block_time": 1730137917, "fee_paid_normalized": "0.00600000" } ], @@ -6761,7 +6761,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6793,14 +6793,14 @@ Returns the issuances of an address "result": [ { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -6815,20 +6815,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730116077, + "block_time": 1730137948, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "92d810aacd89aaed4756618250d3df3739516fda551847d01a705a57cf250e1c", + "tx_hash": "85a852563d5afa55ea5b9b03d3ad3910dff4fa778937b152c02349f998af12ab", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -6843,20 +6843,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730115921, + "block_time": 1730137790, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "652fa348e445bedc79af7c8da7e9edd116fc6586bb2896968234ade2b0de91c4", + "tx_hash": "e71c6886b8fb7827f156ba7baf8343a37f485ece9a8bbb6ecb78f8258a174502", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -6871,20 +6871,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730115918, + "block_time": 1730137787, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "a9640b7ef998e1287a94371074ed8dd399613638ecb6a9c1a406fd5ce29727e0", + "tx_hash": "28cc682041280cb3872d5c474d5c57f96e893560bee0b27d4897aa1a9c78b49f", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -6899,20 +6899,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730115914, + "block_time": 1730137783, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "3b8ccc6e7a34c3d602643f13d9ce884ecd2831847f6eab4961146b4a71491ad1", + "tx_hash": "ebfc77b81609b17ccbf9d4d14958cd6d02120a51d78be679e62f242b8336a9bb", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -6927,7 +6927,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730115900, + "block_time": 1730137779, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6942,7 +6942,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The issuer or owner to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6965,8 +6965,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 100000000000, @@ -6974,16 +6974,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730116077, - "last_issuance_block_time": 1730116077, + "first_issuance_block_time": 1730137948, + "last_issuance_block_time": 1730137948, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 10000000000, @@ -6991,16 +6991,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730115900, - "last_issuance_block_time": 1730115918, + "first_issuance_block_time": 1730137779, + "last_issuance_block_time": 1730137787, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 100000000000, @@ -7008,16 +7008,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730115851, - "last_issuance_block_time": 1730115851, + "first_issuance_block_time": 1730137739, + "last_issuance_block_time": 1730137739, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 40, @@ -7025,16 +7025,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730115804, - "last_issuance_block_time": 1730115808, + "first_issuance_block_time": 1730137679, + "last_issuance_block_time": 1730137683, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 19, @@ -7042,8 +7042,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730115789, - "last_issuance_block_time": 1730115800, + "first_issuance_block_time": 1730137663, + "last_issuance_block_time": 1730137675, "supply_normalized": "0.00000019" } ], @@ -7057,7 +7057,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The issuer to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The issuer to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7080,8 +7080,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 100000000000, @@ -7089,16 +7089,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730116077, - "last_issuance_block_time": 1730116077, + "first_issuance_block_time": 1730137948, + "last_issuance_block_time": 1730137948, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 10000000000, @@ -7106,16 +7106,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730115900, - "last_issuance_block_time": 1730115918, + "first_issuance_block_time": 1730137779, + "last_issuance_block_time": 1730137787, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 100000000000, @@ -7123,16 +7123,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730115851, - "last_issuance_block_time": 1730115851, + "first_issuance_block_time": 1730137739, + "last_issuance_block_time": 1730137739, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 40, @@ -7140,16 +7140,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730115804, - "last_issuance_block_time": 1730115808, + "first_issuance_block_time": 1730137679, + "last_issuance_block_time": 1730137683, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 19, @@ -7157,8 +7157,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730115789, - "last_issuance_block_time": 1730115800, + "first_issuance_block_time": 1730137663, + "last_issuance_block_time": 1730137675, "supply_normalized": "0.00000019" } ], @@ -7172,7 +7172,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The owner to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7195,8 +7195,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 100000000000, @@ -7204,16 +7204,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730116077, - "last_issuance_block_time": 1730116077, + "first_issuance_block_time": 1730137948, + "last_issuance_block_time": 1730137948, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 10000000000, @@ -7221,16 +7221,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730115900, - "last_issuance_block_time": 1730115918, + "first_issuance_block_time": 1730137779, + "last_issuance_block_time": 1730137787, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 100000000000, @@ -7238,16 +7238,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730115851, - "last_issuance_block_time": 1730115851, + "first_issuance_block_time": 1730137739, + "last_issuance_block_time": 1730137739, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 40, @@ -7255,16 +7255,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730115804, - "last_issuance_block_time": 1730115808, + "first_issuance_block_time": 1730137679, + "last_issuance_block_time": 1730137683, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 19, @@ -7272,8 +7272,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730115789, - "last_issuance_block_time": 1730115800, + "first_issuance_block_time": 1730137663, + "last_issuance_block_time": 1730137675, "supply_normalized": "0.00000019" } ], @@ -7287,7 +7287,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address to return + cursor: `75` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7306,17 +7306,17 @@ Returns the transactions of an address "result": [ { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", - "block_time": 1730116110, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "70ba7089afff84e271f6e7d5e9c822765acfd2cb6166952a11578079921a3ca2", + "block_time": 1730137979, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "utxos_info": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7352,17 +7352,17 @@ Returns the transactions of an address }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "block_index": 204, - "block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", - "block_time": 1730116099, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "4c5f743ed9f3ae253966764308f1f689ea24b51c803ea2aaed438e8fbd572359", + "block_time": 1730137968, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a548b4d7c3faa3572780aa9b629ef0fab1613ce480d366a43686c88a15c961c4f50af139cd1494420680eea22e429f2e4b5aa6b8e2c872ea3e8dbbc6c8dc40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5:0", + "utxos_info": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7370,14 +7370,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -7385,7 +7385,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7404,17 +7404,17 @@ Returns the transactions of an address }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409", "block_index": 203, - "block_hash": "37274251a093028e8065cbc9af85901d3961a9e5e04f4e726b13a0506a915652", - "block_time": 1730116095, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "0ae8bfe00469c56b2bc9f99bb596569e6c93bbf649cb8684861e6f6c7f63a275", + "block_time": 1730137955, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a548b4d7c3faa3572780aa9b629ef0fab1613ce480d366a43686c88a15c961c4f50af139cd1494420680eea22e429f2e4b5aa6b8e2c872ea3e8dbbc6c8dc88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354:0", + "utxos_info": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7422,14 +7422,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -7437,7 +7437,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7456,17 +7456,17 @@ Returns the transactions of an address }, { "tx_index": 69, - "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "tx_hash": "315c6064b2897e22ff0c1467169f516d2d30571587f022e17fdde9e4f0eac872", "block_index": 202, - "block_hash": "13a7856636590644ca049ed5074ccb96a6b9694cf0a3187ec4d3b50111b76353", - "block_time": 1730116081, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "3e8cff051c937ae2569ee4e4e492971b053ac98ded5dcba9c8141a9fe4e3df41", + "block_time": 1730137952, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880a500a0204b6c11d32ab0bd14b78f9db630019898", + "data": "02000000178d82231300000000000003e880a548b4d7c3faa3572780aa9b629ef0fab1613ce4", "supported": true, - "utxos_info": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02:1", + "utxos_info": "315c6064b2897e22ff0c1467169f516d2d30571587f022e17fdde9e4f0eac872:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7474,12 +7474,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -7490,17 +7490,17 @@ Returns the transactions of an address }, { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23", "block_index": 201, - "block_hash": "31229cfb58723faf819c8772e47a52c5cc4c531fdef4370ba12b94679b292486", - "block_time": 1730116077, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "529199633ca464551a80098423c0eb3d93a774b1dbd52955ff9ae385228b4563", + "block_time": 1730137948, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc:1", + "utxos_info": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7534,7 +7534,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address to return + cursor (str, optional) - The last index of the assets to return + Default: `None` + limit: `5` (int, optional) - The maximum number of assets to return @@ -7553,20 +7553,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "751e21b82410acd34989da9ec113ea38677f8352c49fb6ab389e95f8869bb68f", "block_index": 154, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730115885, + "block_time": 1730137763, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -7591,7 +7591,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7620,9 +7620,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx_hash": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092", "block_index": 184, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7637,7 +7637,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730115936, + "block_time": 1730137805, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7663,9 +7663,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7680,7 +7680,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730116110, + "block_time": 1730137979, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7706,9 +7706,9 @@ Returns the orders of an address }, { "tx_index": 57, - "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "tx_hash": "697d9fe9bf571bc39676614a50f1490b53a0ee0b8b20776717636fe7ad5bb762", "block_index": 192, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7723,7 +7723,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730116037, + "block_time": 1730137911, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7749,9 +7749,9 @@ Returns the orders of an address }, { "tx_index": 59, - "tx_hash": "9d6f69deab8decbb02e247c2a2e19611f0931fb91c9bd48d5dad2bfae5328ffe", + "tx_hash": "347387317119572ec5cd0ff178a3530caee267541f5e02c90750835cd176720a", "block_index": 193, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7766,7 +7766,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116041, + "block_time": 1730137914, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7792,9 +7792,9 @@ Returns the orders of an address }, { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7809,7 +7809,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116110, + "block_time": 1730137979, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7844,7 +7844,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The source of the fairminter to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7869,10 +7869,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_hash": "45e530d40405ac9ef1d3be5efa3f3c14d0c4639cebdb66e29c3df26c9f349b33", "tx_index": 42, "block_index": 155, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7897,7 +7897,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730115889, + "block_time": 1730137766, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7906,10 +7906,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "tx_hash": "eadb025b64eec283ac9b50d8a861a332a325a0ef61b6e07e7458764b93b6020d", "tx_index": 22, "block_index": 135, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7934,7 +7934,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730115804, + "block_time": 1730137679, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7946,10 +7946,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "tx_hash": "13f2fc25ddd421978de8952f8cac7c2b08340f7331c519cb81df5b06fe433563", "tx_index": 18, "block_index": 131, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7974,7 +7974,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730115789, + "block_time": 1730137663, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7986,10 +7986,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", + "tx_hash": "6d64fafd67d16f229b872eef0a3dbe7296592188ed54a6cca955229900a159a6", "tx_index": 14, "block_index": 130, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8014,7 +8014,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730115785, + "block_time": 1730137659, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8026,10 +8026,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "tx_hash": "07c8c88a0d58b2c951166e33ea8752a2cd1c5e5dbcd16e1eab605ebd95158953", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8054,7 +8054,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730115766, + "block_time": 1730137640, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8076,7 +8076,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address of the mints to return + + address: `bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8094,22 +8094,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "2bf6f021e416ac68ff5f5776a8eddaebc2476fbc2754eb3779728e2029a3cee5", "tx_index": 23, "block_index": 136, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "eadb025b64eec283ac9b50d8a861a332a325a0ef61b6e07e7458764b93b6020d", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115808, + "block_time": 1730137683, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -8118,22 +8118,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "5da24fdc5b0f42414404df0110e4a3cd79789b5706be7b301d976f9eef623346", + "tx_hash": "d330faa610c5df11643cb18905cabc444da8d9cee67b5bad57295870604b42a9", "tx_index": 21, "block_index": 134, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "13f2fc25ddd421978de8952f8cac7c2b08340f7331c519cb81df5b06fe433563", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115800, + "block_time": 1730137675, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -8142,22 +8142,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "98840296af69b519b38aaa9663baa393849683e67da07ce11e4aa21df9259e2f", + "tx_hash": "ef10a55d23b24b9ac096dde81a12ab978e7fcead3a9ee74ab78af5a0715ffef7", "tx_index": 20, "block_index": 133, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "13f2fc25ddd421978de8952f8cac7c2b08340f7331c519cb81df5b06fe433563", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115797, + "block_time": 1730137671, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -8166,22 +8166,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "e26754ee3f011a743d3bd45d712d1fe4056c4b4f657f391b5d06c33191fe01d3", + "tx_hash": "befb90151b6b30ce9c50efd64fe22f86743242082625aa5878ade6f99b969054", "tx_index": 19, "block_index": 132, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "13f2fc25ddd421978de8952f8cac7c2b08340f7331c519cb81df5b06fe433563", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115793, + "block_time": 1730137667, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -8190,22 +8190,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "def4759ea9104304f15b30965786c66cdc8cfb7a6029cdc08a336d6306c065ab", + "tx_hash": "a5ef7944668386b354a8c3a6ee64627bc8f88fd838a0eee646195d22afa835e2", "tx_index": 15, "block_index": 127, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "6d64fafd67d16f229b872eef0a3dbe7296592188ed54a6cca955229900a159a6", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115774, + "block_time": 1730137648, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -8214,22 +8214,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_hash": "6f72bfe95700ba63c9ee4ecd95075759316a96a9b9245a3fb59d152bc26ff573", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "07c8c88a0d58b2c951166e33ea8752a2cd1c5e5dbcd16e1eab605ebd95158953", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115757, + "block_time": 1730137633, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -8248,7 +8248,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address of the mints to return + + address: `bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3` (str, required) - The address of the mints to return + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -8267,22 +8267,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_hash": "6f72bfe95700ba63c9ee4ecd95075759316a96a9b9245a3fb59d152bc26ff573", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "07c8c88a0d58b2c951166e33ea8752a2cd1c5e5dbcd16e1eab605ebd95158953", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115757, + "block_time": 1730137633, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -8324,8 +8324,8 @@ By default the default value of the `encoding` parameter detailed above is `auto Composes a transaction to issue a bet against a feed. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will make the bet - + feed_address: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address that will make the bet + + feed_address: `bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3` (str, required) - The address that hosts the feed to be bet on + bet_type: `2` (int, required) - Bet 0 for Bullish CFD (deprecated), 1 for Bearish CFD (deprecated), 2 for Equal, 3 for NotEqual + deadline: `3000000000` (int, required) - The time at which the bet should be decided/settled, in Unix time (seconds since epoch) + wager_quantity: `1000` (int, required) - The quantities of XCP to wager (in satoshis, hence integer) @@ -8393,7 +8393,7 @@ Composes a transaction to issue a bet against a feed. Composes a transaction to broadcast textual and numerical information to the network. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + timestamp: `4003903985` (int, required) - The timestamp of the broadcast, in Unix time + value: `100` (float, required) - Numerical value of the broadcast + fee_fraction: `0.05` (float, required) - How much of every bet on this feed should go to its operator; a fraction of 1, (i.e. 0.05 is five percent) @@ -8449,7 +8449,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8461,7 +8461,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985142, "btc_fee": 14858, - "rawtransaction": "02000000000101d3e144ab2332715d931607f1ecb24833c4b9a45585fe12f43332f7c73a129bf60000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff0200000000000000002b6a291d58000c120f53e521b5b05fb0e87895087ccf3efe597674c5aa3f7ccf38911c75cc5b8d24700ddac0f6b7052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101190d3e75876c6e75c94b2550b3b7dc13ac6df10ae992cdca1789f99c2748282d00000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff0200000000000000002b6a2956570410f281244057886202a327f842eece8db6b3ce97922a94595fc38563bea778a3e2d9f9fdbce3f6b7052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8483,8 +8483,8 @@ Composes a transaction to broadcast textual and numerical information to the net Composes a transaction to pay for a BTC order match. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be sending the payment - + order_match_id: `a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614` (str, required) - The ID of the order match to pay for + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address that will be sending the payment + + order_match_id: `85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483` (str, required) - The ID of the order match to pay for + encoding (str, optional) - The encoding method to use + Default: `auto` + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis) @@ -8536,23 +8536,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614" + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "order_match_id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483" }, "name": "btcpay", - "data": "434e5452505254590ba70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b50903810560268783a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "data": "434e5452505254590b85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d07f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978090, "btc_fee": 18910, - "rawtransaction": "02000000000101bd9316eab33fabb206193f04c3c50ab13a8abd6216de19a6c0961f00d3d615420000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff03b80b00000000000016001488638b12211ad2887d7013cdfa98b822eb7f220a00000000000000004b6a49f046fc5a1959206e926f59e82227fd923cabe7e968af1baad5abb587a412e4c8df215b2a2d9a5b3503ce52fdb5848339aa656b6f74c228373ce1809d813ad9cf4c41d5f20f2739395c6a9c052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "0200000000010151f2b066c9634e2c382e1327225a0107814459b3c42337d7ebd7cf63ddbbee3d00000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff03b80b000000000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90700000000000000004b6a49087ea24c81d149c75328117a3c3eebc4d8fe2a1db26460b5cec76e45abc2bbe1bbe699f09e2b523f19bd633d60c32128f94099deeeecbb8b447c9ae0c235f235553e488e9ee56487aa6a9c052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx0_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "tx1_hash": "7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", + "order_match_id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "status": "valid" } } @@ -8565,7 +8565,7 @@ Composes a transaction to pay for a BTC order match. Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, possible between blocks 278310 and 283810; on testnet it is still available). + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address with the BTC to burn + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address with the BTC to burn + quantity: `1000` (int, required) - The quantities of BTC to burn (in satoshis, hence integer) (1 BTC maximum burn per address) + overburn (bool, optional) - Whether to allow the burn to exceed 1 BTC for the address + Default: `False` @@ -8620,7 +8620,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "quantity": 1000, "overburn": false }, @@ -8630,7 +8630,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985186, "btc_fee": 13814, - "rawtransaction": "02000000000101abf65b20ebfd1237da0f36f872c79db358b4cfbf1297b2ed7848fce5a7d985270000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac22b8052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000" + "rawtransaction": "02000000000101e5ec6730a9727a77aa29fd12cff72c82226ec9411860d68cfb7f63d2f3660b9000000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac22b8052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000" } } ``` @@ -8640,8 +8640,8 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss Composes a transaction to cancel an open order or bet. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0` (str, required) - The hash of the order/bet to be cancelled + encoding (str, optional) - The encoding method to use + Default: `auto` + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis) @@ -8693,21 +8693,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "offer_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8" + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "offer_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0" }, "name": "cancel", - "data": "434e545250525459465debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "data": "434e54525052545946f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985142, "btc_fee": 14858, - "rawtransaction": "02000000000101ea75efdc042b5696d84822dc36cd87c7fd9a0b28512b49461245667b61127bfa0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff0200000000000000002b6a29a3e663a2f9bd00bb0c85b9c374325d5573e86694ddb726062f8c530213552021c46ead41917b6938b4f6b7052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101e040bc967dbe155460784ab75c7cb3dba159eccfa1c450cd3dd811557e99924d00000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff0200000000000000002b6a2944f16c81495b3eecece50ac0bfb1aa26b65669f872439eb33d03c1ede129604da180875c21da739897f6b7052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "offer_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "status": "valid" } } @@ -8720,7 +8720,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address that will be sending the asset to be destroyed + asset: `XCP` (str, required) - The asset to be destroyed + quantity: `1000` (int, required) - The quantity of the asset to be destroyed (in satoshis, hence integer) + tag: `"bugs!"` (str, required) - A tag for the destruction @@ -8775,7 +8775,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8794,7 +8794,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999985695, "btc_fee": 14305, - "rawtransaction": "02000000000101a452400ddde4da92b3635c69a88b5cd73e6f5351b1035de6c8acb68e8350e3540000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000226a204361a4695fd456d2d053a108447b7a62d60471b989b415d7824044331a550ada1fba052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101e28525e2c2457013bce6a0b3e272873a4f9bc128d797e2b449544ec8b14212da00000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff020000000000000000226a20bfada39da07cac83fc3cc65aba8af4ebad8476ce1418eeb5acf619b7ff1e1db41fba052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8814,7 +8814,7 @@ Composes a transaction to destroy a quantity of an asset. Composes a transaction to opens or closes a dispenser for a given asset at a given rate of main chain asset (BTC). Escrowed quantity on open must be equal or greater than give_quantity. It is suggested that you escrow multiples of give_quantity to ease dispenser operation. + Parameters - + address: `bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + asset: `XCP` (str, required) - The asset or subasset to dispense + give_quantity: `1000` (int, required) - The quantity of the asset to dispense (in satoshis, hence integer) + escrow_quantity: `1000` (int, required) - The quantity of the asset to reserve for this dispenser (in satoshis, hence integer) @@ -8875,7 +8875,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8899,7 +8899,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949919581, "btc_fee": 14919, - "rawtransaction": "020000000001016182673802383c3dfbeed7dd1749f3b498f8e584fcfd406a5aa17b002ee7904b01000000160014fbcc5565cd7f2a35258ef40d6637506f0ce99fdbffffffff0200000000000000002c6a2a8c143ec5258db11ef95b2578f1c394ce761046911caf5c5472be4f258d5a148a45eb9d2e0476dbc475545dc7092701000000160014fbcc5565cd7f2a35258ef40d6637506f0ce99fdb02000000000000", + "rawtransaction": "02000000000101116549c7388fe54e5d4dae3b3651a06bf75ea76128a84ed653e11abc1ecc1905010000001600149e4026abe8eb6904f76fc99744eb269d04b4589effffffff0200000000000000002c6a2a91d411d98430b52b6acb88e22dfda26a4303ee6cebe21f868a082b864fd0094c731845436e842ba171d15dc70927010000001600149e4026abe8eb6904f76fc99744eb269d04b4589e02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -8925,7 +8925,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv Composes a transaction to issue a dividend to holders of a given asset. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + quantity_per_unit: `1` (int, required) - The amount of dividend_asset rewarded (in satoshis, hence integer) + asset: `FAIRMINTA` (str, required) - The asset or subasset that the dividends are being rewarded on + dividend_asset: `XCP` (str, required) - The asset or subasset that the dividends are paid in @@ -8980,14 +8980,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -9006,7 +9006,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999985634, "btc_fee": 14366, - "rawtransaction": "02000000000101d735a5a97da67446f40bb375c7bacff7ae44897f7b357a5bcef9d70280dfc6110000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000236a21a03fcd9fc46bcb4f3bf7ff58bc4a0eb125a43d3a551f7e1ceb32b36b7143d5bd87e2b9052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "0200000000010195418a96570cfa05b8b7ed72f69b49316e47b8dc9b69f785a5138eecab85832900000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff020000000000000000236a2174f98470dbd1b3802571c576b79cd0c447f8066d32e17225130f72eb66e5e3b2c2e2b9052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9027,10 +9027,10 @@ Composes a transaction to issue a dividend to holders of a given asset. Composes a transaction to Issue a new asset, issue more of an existing asset, lock an asset, reset existing supply, or transfer the ownership of an asset. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address that will be issuing or transfering the asset + asset: `XCPTEST` (str, required) - The assets to issue or transfer. This can also be a subasset longname for new subasset issuances + quantity: `1000` (int, required) - The quantity of the asset to issue (set to 0 if transferring an asset) (in satoshis, hence integer) - + transfer_destination: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, optional) - The address to receive the asset + Default: `None` + divisible (bool, optional) - Whether this asset is divisible or not (if a transfer, this value must match the value specified when the asset was originally issued) + Default: `True` @@ -9091,10 +9091,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "transfer_destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "lock": false, "reset": false, @@ -9107,7 +9107,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983000, "btc_fee": 16454, - "rawtransaction": "020000000001013eb5a26d5fe5337ccfca78b68a43f9933a7ad20e3127554d960f6ff708c487d60000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff03220200000000000016001488638b12211ad2887d7013cdfa98b822eb7f220a0000000000000000236a21d1ca33cf4433fd66e117d12625616dc906928c7356b7202b8c38c6ece5cbbbf61a98af052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101283a5593ed3dc7c562f2bcf2fa2488563c7ca7a38adc197f7ffe59e8188557b000000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff032202000000000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df9070000000000000000236a215db4a76aee4e7b3c3dfb26c271da430642fcdba1dfdb0250910062ae7302acd37798af052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9136,9 +9136,9 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo Composes a transaction to send multiple payments to multiple addresses. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr,bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc,bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9199,16 +9199,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", 1 ], [ "MPMASSET", - "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", 2 ] ], @@ -9216,26 +9216,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e5452505254590300028088638b12211ad2887d7013cdfa98b822eb7f220a80a500a0204b6c11d32ab0bd14b78f9db63001989840000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280a8392a7ee1ff27fa75740f0b5c3119b09a4df90780a548b4d7c3faa3572780aa9b629ef0fab1613ce440000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999942989, "btc_fee": 55011, - "rawtransaction": "02000000000104c60cba2e8009b89a27f98afd970336d060fb80cc1169f8a9f26dd7ac5b8a7dfd0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff5cb37ed728a1783f00f380c510ff2108bf6796927d3302395641738997881b710000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff9cc56b3a54bde5e0b7fb83800bc84036f16ee99aeac4491de704b7f8f794c1a10000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff0f4711f98d37387476a466b7bf6964c28d870c7e940e1b02fb5795820960299e0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff03e8030000000000006951210338a7e3de6a76681a888a478f9c669e7a9f638cd384e2edf836ebd2f34158440e2103693a6379fc9675f11c9f519d3a54269240404cbe3f914fe22bb420c10df54ded2103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553aee8030000000000006951210327a7e3de6a76681a8859478d1ceefdf18d6696010c9f9debfb154a4b63b33b5221034b30e2dcfc3655ba708e82b78ae93225cfddfa8e3e09d7a22bb425226d7d89f12103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553ae4de916a80400000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000002000002000002000000000000", + "rawtransaction": "02000000000104dd306b8ce230c7b341847db7b3aa3257d6e9bbd10a50107b084caf72a15e10e700000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff41de21e760352426c678c2281480b763d0010178f8cf7bc8c958c2645d31ee5a00000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff6449bf21b39876242933cb41cbf51a055dbd7c8bfea564984b8deda5506e340f00000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff17793b3e139631db8f7ee750df46c2fe52d1566914b6add306c16bcef8e690c000000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff03e8030000000000006951210357c7d57e92af060b82058cfbd0a8c172bb555ec5f22598675f599f0f4e614910210299f15886427e67a81b4d0750f12097d938beb0d7336c9b9877314f9eb984adbc2103f34cec8b12ed0ecb49aac11f3a6b5c323c2d435491d7c9d300ebb7298ea2b35d53aee8030000000000006951210248c7d57e92af060b82d68cf95000f858c590a1e20850ec685401ae16fefb0407210360f6d9230acab06be1ee5077718a0cbba64e4a6652507fd877314a7dd90c690e2103f34cec8b12ed0ecb49aac11f3a6b5c323c2d435491d7c9d300ebb7298ea2b35d53ae4de916a804000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9251,7 +9251,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + give_asset: `XCP` (str, required) - The asset that will be given in the trade + give_quantity: `1000` (int, required) - The quantity of the asset that will be given (in satoshis, hence integer) + get_asset: `FAIRMINTA` (str, required) - The asset that will be received in the trade @@ -9309,7 +9309,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9326,7 +9326,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -9340,7 +9340,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999984528, "btc_fee": 15472, - "rawtransaction": "02000000000101cf575d97277fbc0b3f884b49e7c0b8287ba8e0b4e5f4dd7e2d6e426502f4452c0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000356a334de8b15032fed03ecbb040c19ca15f53586192377670b513f6408556e6dd4e76a713c1550120fe9b40cb4140fa22d0446a03d390b5052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101fff5447874ed6cfe93bc8aa099068b877ef2eb06b3cf35fbb98303af4a79396000000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff020000000000000000356a33f668eafca02deed548fdd9918468900fce7e800d7c26d848ddc51f602f24de95cb1c5276038b786f73583bd35a0d87b7f7c25190b5052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9366,8 +9366,8 @@ Composes a transaction to place an order on the distributed exchange. Composes a transaction to send a quantity of an asset to another address. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address that will be receiving the asset + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3` (str, required) - The address that will be receiving the asset + asset: `XCP` (str, required) - The asset or subasset to send + quantity: `1000` (int, required) - The quantity of the asset to send (in satoshis, hence integer) + memo (str, optional) - The Memo associated with this transaction @@ -9427,8 +9427,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9444,19 +9444,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880a500a0204b6c11d32ab0bd14b78f9db630019898", + "data": "434e54525052545902000000000000000100000000000003e880a548b4d7c3faa3572780aa9b629ef0fab1613ce4", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999984835, "btc_fee": 15165, - "rawtransaction": "020000000001019ed53bd0e7ff6981feb1b27c9556b9db3413d2a67ea7b8f2616a14fa73ed02d90000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000306a2ebe40c06091cfd95dd61d68e73ae5e96d8e96410698a8db380780e7d7268fe30fd5756bc9e8c2e4f3649989e08364c3b6052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "020000000001016a63ae2ca0a1afac837365603d28f6a91f2647ad9c0675e6fc61c63d48ee54a400000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff020000000000000000306a2e96b0d68e7f918ff3498d8a75e3582d1bf1ccc3d0a2edd3846571b100d787f476ad00e00a28fbf6084f940becfdb3c3b6052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "memo": null, "quantity_normalized": "0.00001000" } @@ -9470,8 +9470,8 @@ Composes a transaction to send a quantity of an asset to another address. Composes a transaction to Sends all assets and/or transfer ownerships to a destination address. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be sending - + destination: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address that will be sending + + destination: `bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3` (str, required) - The address to receive the assets and/or ownerships + flags: `7` (int, required) - An OR mask of flags indicating how the sweep should be processed. Possible flags are: - FLAG_BALANCES: (integer) 1, specifies that all balances should be transferred. - FLAG_OWNERSHIP: (integer) 2, specifies that all ownerships should be transferred. - FLAG_BINARY_MEMO: (integer) 4, specifies that the memo is in binary/hex form. + memo: `FFFF` (str, required) - The Memo associated with this transaction in hex format + encoding (str, optional) - The encoding method to use @@ -9525,23 +9525,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480a500a0204b6c11d32ab0bd14b78f9db63001989807ffff", + "data": "434e5452505254590480a548b4d7c3faa3572780aa9b629ef0fab1613ce407ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985634, "btc_fee": 14366, - "rawtransaction": "02000000000101c7c9854253dc41c3edd654589b82ee42a8a8d6a0c5a578062b89c4b876f2e14d0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000236a219323e5b3f1b8081e81abc14abc27d4b631b6398c37296f72874455fe3f7372918ae2b9052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101d901a93036e87d75512f7c4c41c918cc1f2e8ba677220a741b9335c8862a682e00000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff020000000000000000236a211e1d85fbe1cd4976a7a556242236e03cc1bf3ef60516a829a122c817765b432863e2b9052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "flags": 7, "memo": "ffff" } @@ -9555,8 +9555,8 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti Composes a transaction to send BTC to a dispenser. + Parameters - + address: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft` (str, required) - The dispenser that will be receiving the asset + quantity: `1000` (int, required) - The quantity of BTC to send (in satoshis, hence integer) + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9609,8 +9609,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "quantity": 1000 }, "name": "dispense", @@ -9619,7 +9619,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949811958, "btc_fee": 15042, - "rawtransaction": "0200000000010157826d7417826b89717d2b03e0b6b7151d49cb2661b13212aa8064fe0194a77a03000000160014a500a0204b6c11d32ab0bd14b78f9db630019898ffffffff03e8030000000000001600142ae165e7b04a97caa52d91a46d89891d704370ff00000000000000000c6a0a24ebcd38485c9b2a0013f622082701000000160014a500a0204b6c11d32ab0bd14b78f9db63001989802000000000000", + "rawtransaction": "020000000001016faaad01f905785c4eece68fa7b575f28eaf98eddd4286cefe97c26ef132b9ff03000000160014a548b4d7c3faa3572780aa9b629ef0fab1613ce4ffffffff03e803000000000000160014eea22e429f2e4b5aa6b8e2c872ea3e8dbbc6c8dc00000000000000000c6a0afe07434d9143d04cf82ff622082701000000160014a548b4d7c3faa3572780aa9b629ef0fab1613ce402000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9636,7 +9636,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be issuing the asset + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address that will be issuing the asset + asset: `MYASSET` (str, required) - The asset to issue + asset_parent (str, optional) - The parent asset of the asset to issue + Default: `` @@ -9721,7 +9721,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9752,7 +9752,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999984774, "btc_fee": 15226, - "rawtransaction": "02000000000101c79e70d7c5ad9665ae957326d1dc832f162bc8f91fc08508a7aefd8decaffd230000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000316a2fdfa88a71933c8839247123e96b0a8bdb6b9d82d36ae6ade916ef886e41d9c0ec79824a742e64b47c3d995a7267e06986b6052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101d125f060bed470b97468b583ce6b7de27c161d76fac54e52357fbb400070868700000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff020000000000000000316a2f418303fc89a8b30278fe8ae673d47422e10ee8c2eff753193694bc6c06585669ac098f03c7c1b21c06aadf1766e8c486b6052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9791,7 +9791,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. Composes a transaction to mint a quantity of an asset using the FairMinter protocol. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be minting the asset + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address that will be minting the asset + asset: `FAIRMINTC` (str, required) - The asset to mint + quantity: `1` (int, optional) - The quantity of the asset to mint (in satoshis, hence integer) + Default: `0` @@ -9846,13 +9846,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -9864,7 +9864,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999986432, "btc_fee": 13568, - "rawtransaction": "020000000001017c64134589fec8915924dac30e82978fbd8537ab6caac5007618953859f6d0be0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000166a14be1d5b0358bbdd865615c155e83dfbe0f763564000bd052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "0200000000010183f5d22a9fc4c35bc79d5dce61d38a28430f9c56018945de7661c1f82bd53b5400000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff020000000000000000166a1492fe42fc7a475c6377374722ffba81a183b50dc000bd052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -9883,10 +9883,10 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address from which the assets are attached + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) - + destination: `5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1` (str, optional) - The utxo to attach the assets to + + destination: `f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9939,8 +9939,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9953,12 +9953,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171337033636b79337072746667736c74737a30786c347839637974346837677332706674647a727c356465626162326539366432356635663532613662653066626366363533613038623338333239386236663135336332306237356164653432626135626261383a317c5843507c31303030", + "data": "434e545250525459646263727431713471756a356c68706c756e6c3561743570753934637667656b7a64796d3767387667706664637c663032363335616663346133666136613361653931303435373665383630303833643236313933383334303634376162353932323234373837333465666563303a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999914790, "btc_fee": 82210, - "rawtransaction": "02000000000106ccc2aca722ded998449d59d7ed65df1ffc201fca9873209432c035e327dbbf980000000016001488638b12211ad2887d7013cdfa98b822eb7f220afffffffff14198fceb8a1347a752edee8a1477d3779c0bd7b03fc4bed4512f0223b17ee50000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff8c2cefa9f81e31d2f5260a72f968a6a38923fad3cdfd2ce15b00e722f5ea9d1a0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffffbee94a0365aaaba05f7f1e7cc8da517c430b3df96dc44a2e5148f46d0fc8c3920000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff1816fcbb08b784d42ce93b687fdc9248c0bb2c6319f18521b506ad7d4a98fd480000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff052b2b309bd984a5d88ce3c9f0e82c5513cfb0117d7fba088957e06d5136eb460000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff04e8030000000000006951210374b391adbe520df76abe10c17a35f73315c1bd9be2f07d7d6752ca726570ec6121037bc277b82f1a939ab105b243286840d4e72d3a04eccd75004f164e2b8767328d2103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553aee8030000000000006951210274b391adbe520df76abf4b946c73f32413d7bbcae8bf2c682540ce76702aad9e21033bd977f8211dd390e045fe1576391692e63e6e40ea80321d1e171f7b846435a12103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553aee803000000000000695121035eb391adbe520df76ab810c3307bf73e7ef2de84b8b97e3d1526ac15161c9826210208b847c0432eeba3d27cc677405f27a7d55d5c7088b7077c7a722b49e60500952103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553ae265f22fc0600000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000002000002000002000002000002000000000000", + "rawtransaction": "020000000001063b497cd423f64cbf086745ab93d5aed19cbf003d3a9356cfb6cc13c77f1a1a6300000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffffb5af5ce6ee5405d0a4d80a06feea9eb1bfd53651459c2b45cb1c53dca7d3664000000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffffe2cae7455c4cf50e506d1dfdbe7fbbac46d2a7a2abd4414d78c13fc7ab04fff900000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff547202965e94316e86af7d3ae2da7da640ee150525c02e6dc38aaf46902b7ccb00000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffffe75c48b7dabe83821f6781e0bbd85722688b36a080a76ca285c4f75673ee010300000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff1958e0bf20901d283b187368a4d0034de687fb3dff1dcf082b8bb859e73bf58a00000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff04e80300000000000069512102b12fa8acb201615bf826655240e29fe55cb0364ca5c97014894c8055816cbebb210324b798d879140f1ff90014898d22f0f88693ee0960607a1fd2331e8f3ba0c1222103f34cec8b12ed0ecb49aac11f3a6b5c323c2d435491d7c9d300ebb7298ea2b35d53aee80300000000000069512102b12fa8acb201615bf824640553a5c8f55ea07047f59c2954d10cd90fd135fc65210321f7d5d229454f49a55856dec07ff1ab8984eb4c3f362b518034148e3ba1c5502103f34cec8b12ed0ecb49aac11f3a6b5c323c2d435491d7c9d300ebb7298ea2b35d53aee803000000000000695121029b2fa8acb201615bf824625202ac9fe83082135aa1952854e539ee39b40dcaad210311c7ede14d7779789c6b6eedf44fc79fbee5897906041963b4032cb90895a0932103f34cec8b12ed0ecb49aac11f3a6b5c323c2d435491d7c9d300ebb7298ea2b35d53ae265f22fc06000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9975,8 +9975,8 @@ Composes a transaction to attach assets from an address to UTXO. Composes a transaction to detach assets from UTXO to an address. + Parameters - + utxo: `790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to detach the assets to + + utxo: `5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address to detach the assets to + asset: `XCP` (str, required) - The asset or subasset to detach + quantity: `1000` (int, required) - The quantity of the asset to detach (in satoshis, hence integer) + encoding (str, optional) - The encoding method to use @@ -10030,8 +10030,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -10044,12 +10044,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964373930633033373533623864333063326634363431393835616637396538633566666135383431633834343761376463396566346333666132316634626166383a307c626372743171337033636b79337072746667736c74737a30786c347839637974346837677332706674647a727c5843507c31303030", + "data": "434e54525052545964356666616432306162343965303538656565376561343036656134316437383932636564376632313434623335613362613136393162613766623264623839373a307c6263727431713471756a356c68706c756e6c3561743570753934637667656b7a64796d3767387667706664637c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950028128, "btc_fee": 48872, - "rawtransaction": "02000000000103800dc6faffbce0f8de654c2c591a32293ab5d576ca6f5b9557fc8bf479baad0201000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e1ffffffff9334508606a39f9c29ed55dd1dd1289168342407aa97b6e5608c19377c1fee2000000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e1ffffffff7615312ced3fa25183d8cd654833e6e1d1595a0ebcdbe6957fa6a0449b57496201000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e1ffffffff04e803000000000000695121037535204461c50e0ec922545f777754f1e842928e3474efba5b213259f1e2643d2103b5bb5075cac0fc5ca4254da8744888c9eb70a87155638ae3cd8a0add587a64972103a5aa4d46065ce4a08c9ef90270ed78d57213c383f35d84424771c41fe83a132653aee803000000000000695121037535204461c50e0ec9255000262655a4eb15c08a342aecf65a702619f6a766da2102fcb0067fd5c4b54be8201fbd7e5dce8bef39a77d196edefb8eda01d35a6f62e72103a5aa4d46065ce4a08c9ef90270ed78d57213c383f35d84424771c41fe83a132653aee803000000000000695121035f35204461c50e0ec9360512236e16be8734f1903d20ecba3813546dc7d655b421028c836514acf7c5399c4678ce1229bdf1df41cb496157bd82faee69e43d1c50a82103a5aa4d46065ce4a08c9ef90270ed78d57213c383f35d84424771c41fe83a132653ae606f0b2701000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e102000002000002000000000000", + "rawtransaction": "020000000001038d1609ceea0d3ab7764e3a869053cbdf156a4cfc74c70cb42f93a50e85cd673501000000160014b0ffc155367a55fd45223389eb27cc866c81e132fffffffff092eeee5223f7c6d70c463d529e4c7882a1cd1683ec3c2c6f4464071b4e493300000000160014b0ffc155367a55fd45223389eb27cc866c81e132ffffffffa3c01cf2bf28033b14391064f9caaa9557ef3672ee97ba4123b838a90ba1da3201000000160014b0ffc155367a55fd45223389eb27cc866c81e132ffffffff04e80300000000000069512103bc1b5db09376985087219eb67c937acd3a52aa63c34f1bac051a2cba0876a89f2103b6b529ce47220f1ad1544d14232e9e683c3b8db790548d24ac81d9ce904c230421033a20c38c145a62543fafc7fe49ecf0d8c71a8f0a93103c8c0646718d11e8c01253aee80300000000000069512103bc1b5db0937698508774c9b12d947ccd6e51f06ecd101be55f1c3bab0e62fdeb2102f3f0759e4a7e4e1293021813213fcf2f2f3088e0d251db7ab7d6c2c2961d22f721033a20c38c145a62543fafc7fe49ecf0d8c71a8f0a93103c8c0646718d11e8c01253aee80300000000000069512102961b5db0937698508733cca07c967d835270982bcb1a1ba93d7f49df3f13c923210382851fab26163e7ee66c7426404bfa5f5a09bc83a436be11cdb2bbafa17a1a9b21033a20c38c145a62543fafc7fe49ecf0d8c71a8f0a93103c8c0646718d11e8c01253ae606f0b2701000000160014b0ffc155367a55fd45223389eb27cc866c81e13202000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10118,8 +10118,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 100000000000, @@ -10127,16 +10127,16 @@ Returns the valid assets "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730116077, - "last_issuance_block_time": 1730116077, + "first_issuance_block_time": 1730137948, + "last_issuance_block_time": 1730137948, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", - "owner": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "issuer": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m", + "owner": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m", "divisible": true, "locked": false, "supply": 100000000000, @@ -10144,16 +10144,16 @@ Returns the valid assets "first_issuance_block_index": 198, "last_issuance_block_index": 198, "confirmed": true, - "first_issuance_block_time": 1730116060, - "last_issuance_block_time": 1730116060, + "first_issuance_block_time": 1730137933, + "last_issuance_block_time": 1730137933, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 10000000000, @@ -10161,16 +10161,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730115900, - "last_issuance_block_time": 1730115918, + "first_issuance_block_time": 1730137779, + "last_issuance_block_time": 1730137787, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "owner": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "issuer": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", + "owner": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "divisible": true, "locked": false, "supply": 100000000000, @@ -10178,16 +10178,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730115896, - "last_issuance_block_time": 1730115896, + "first_issuance_block_time": 1730137775, + "last_issuance_block_time": 1730137775, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 100000000000, @@ -10195,8 +10195,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730115851, - "last_issuance_block_time": 1730115851, + "first_issuance_block_time": 1730137739, + "last_issuance_block_time": 1730137739, "supply_normalized": "1000.00000000" } ], @@ -10224,8 +10224,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 10000000000, @@ -10233,8 +10233,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730115754, - "last_issuance_block_time": 1730115766, + "first_issuance_block_time": 1730137630, + "last_issuance_block_time": 1730137640, "supply_normalized": "100.00000000" } } @@ -10265,7 +10265,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10273,14 +10273,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10288,7 +10288,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -10306,7 +10306,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -10318,7 +10318,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -10372,9 +10372,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx_hash": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092", "block_index": 184, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10389,7 +10389,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730115936, + "block_time": 1730137805, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10415,9 +10415,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10432,7 +10432,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730116110, + "block_time": 1730137979, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10458,9 +10458,9 @@ Returns the orders of an asset }, { "tx_index": 57, - "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "tx_hash": "697d9fe9bf571bc39676614a50f1490b53a0ee0b8b20776717636fe7ad5bb762", "block_index": 192, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10475,7 +10475,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730116037, + "block_time": 1730137911, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10501,9 +10501,9 @@ Returns the orders of an asset }, { "tx_index": 59, - "tx_hash": "9d6f69deab8decbb02e247c2a2e19611f0931fb91c9bd48d5dad2bfae5328ffe", + "tx_hash": "347387317119572ec5cd0ff178a3530caee267541f5e02c90750835cd176720a", "block_index": 193, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10518,7 +10518,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116041, + "block_time": 1730137914, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10544,9 +10544,9 @@ Returns the orders of an asset }, { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10561,7 +10561,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116110, + "block_time": 1730137979, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10623,13 +10623,13 @@ Returns the orders of an asset { "result": [ { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 54, - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", - "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "tx1_hash": "7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", + "tx1_address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10643,7 +10643,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730116023, + "block_time": 1730137896, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10663,13 +10663,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 52, - "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", + "tx1_address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10683,7 +10683,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730116019, + "block_time": 1730137893, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10703,13 +10703,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "id": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092_c1575db45cd83abcffebd4c99d8f3559be17e5dac7243236e5f1880313accca5", "tx0_index": 49, - "tx0_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 50, - "tx1_hash": "6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "c1575db45cd83abcffebd4c99d8f3559be17e5dac7243236e5f1880313accca5", + "tx1_address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10723,7 +10723,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730115936, + "block_time": 1730137805, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10803,20 +10803,20 @@ Returns the credits of an asset "result": [ { "block_index": 194, - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "event": "e8d7da48b9ce9e612be4e1f2e60d819f89facd419df15b19825c2b1788dfbacd", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116045, + "block_time": 1730137917, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -10824,20 +10824,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "633a29ddd1d5f12a25cad17061eaf217c3d3255f32284361eec6745ecebb5d8b", + "event": "505f34698eac95f4789603ab4d531fb8b50527412db05efd1791fc4558b5259d", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730115766, + "block_time": 1730137640, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -10845,20 +10845,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", + "event": "3a17766db55e3c55598371c8a5dfb1451de8c1036d46d44afc33eaabd0747fcc", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730115762, + "block_time": 1730137636, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -10866,20 +10866,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "event": "6f72bfe95700ba63c9ee4ecd95075759316a96a9b9245a3fb59d152bc26ff573", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730115762, + "block_time": 1730137636, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -10891,16 +10891,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", + "event": "3a17766db55e3c55598371c8a5dfb1451de8c1036d46d44afc33eaabd0747fcc", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730115762, + "block_time": 1730137636, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -10960,12 +10960,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "utxo": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "utxo_address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -10977,16 +10977,16 @@ Returns the debits of an asset }, { "block_index": 207, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "event": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116110, + "block_time": 1730137979, "asset_info": { "divisible": true, "asset_longname": null, @@ -10998,16 +10998,16 @@ Returns the debits of an asset }, { "block_index": 206, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "event": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730137976, "asset_info": { "divisible": true, "asset_longname": null, @@ -11019,16 +11019,16 @@ Returns the debits of an asset }, { "block_index": 205, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "event": "1ff0761a97319d2a01ea6914b4c2e6a1f8f6381836ce932c653a8c4815df9cb7", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116102, + "block_time": 1730137973, "asset_info": { "divisible": true, "asset_longname": null, @@ -11040,16 +11040,16 @@ Returns the debits of an asset }, { "block_index": 204, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "event": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730137968, "asset_info": { "divisible": true, "asset_longname": null, @@ -11129,14 +11129,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "633a29ddd1d5f12a25cad17061eaf217c3d3255f32284361eec6745ecebb5d8b", + "tx_hash": "505f34698eac95f4789603ab4d531fb8b50527412db05efd1791fc4558b5259d", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -11151,20 +11151,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730115766, + "block_time": 1730137640, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", + "tx_hash": "3a17766db55e3c55598371c8a5dfb1451de8c1036d46d44afc33eaabd0747fcc", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -11179,20 +11179,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730115762, + "block_time": 1730137636, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_hash": "6f72bfe95700ba63c9ee4ecd95075759316a96a9b9245a3fb59d152bc26ff573", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -11207,20 +11207,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730115757, + "block_time": 1730137633, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "tx_hash": "07c8c88a0d58b2c951166e33ea8752a2cd1c5e5dbcd16e1eab605ebd95158953", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -11235,7 +11235,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730115754, + "block_time": 1730137630, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11269,10 +11269,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "destination": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11280,7 +11280,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -11293,10 +11293,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "block_index": 206, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11304,7 +11304,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730137976, "asset_info": { "divisible": true, "asset_longname": null, @@ -11317,10 +11317,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 72, - "tx_hash": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "tx_hash": "1ff0761a97319d2a01ea6914b4c2e6a1f8f6381836ce932c653a8c4815df9cb7", "block_index": 205, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11328,7 +11328,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730116102, + "block_time": 1730137973, "asset_info": { "divisible": true, "asset_longname": null, @@ -11341,10 +11341,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11352,7 +11352,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730137968, "asset_info": { "divisible": true, "asset_longname": null, @@ -11365,10 +11365,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409", "block_index": 203, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11376,7 +11376,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730137955, "asset_info": { "divisible": true, "asset_longname": null, @@ -11427,9 +11427,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11438,7 +11438,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11448,7 +11448,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -11464,9 +11464,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "ccb421515f869082058aa6d0f05423e1c6ce8751d4146c89dee14e26c1c3130b", + "tx_hash": "b99f67e73c446486b352531d70a5147a2412bdab7acdaba08cd93c51f655166d", "block_index": 142, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11475,7 +11475,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "origin": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11485,7 +11485,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115828, + "block_time": 1730137705, "asset_info": { "divisible": true, "asset_longname": null, @@ -11501,9 +11501,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "a809a9c0b667c336b61ce3e892a7f2d80231121804f3f7db594da58d9ded5a52", + "tx_hash": "f1eb75ae9c8f99b5c2562708de555a361d426f74779665cc776feff098698019", "block_index": 150, - "source": "mrTk1ThfTwE2f6PUY5vjkJvga5VgZXf4bk", + "source": "mmMUyxURvPd5MuCnixQbs49A4GK7CvK1JN", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11511,10 +11511,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "73d6215c951c71f26d391d50b72497e72188efc109135e95b1f58a4374c30be0", - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "last_status_tx_hash": "3951d3d276b0caac2bb7c00d102b63163b230b67535dd6a2790d4a8214674b4e", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 0, - "last_status_tx_source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "last_status_tx_source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11522,7 +11522,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115869, + "block_time": 1730137747, "asset_info": { "divisible": true, "asset_longname": null, @@ -11538,18 +11538,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11559,7 +11559,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -11584,7 +11584,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -11597,9 +11597,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11608,7 +11608,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11618,7 +11618,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -11668,7 +11668,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -11676,7 +11676,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11685,7 +11685,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -11693,7 +11693,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11702,7 +11702,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -11710,7 +11710,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11719,7 +11719,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -11756,27 +11756,27 @@ Returns the dispenses of an asset { "tx_index": 75, "dispense_index": 0, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "destination": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11791,7 +11791,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -11805,27 +11805,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "20ee1f7c37198c60e5b697aa072434689128d11ddd55ed299c9fa30686503493", + "tx_hash": "33494e1b0764446f2c3cec8316cda182784c9e523d460cd7c6f72352eeee92f0", "block_index": 147, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "destination": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11840,7 +11840,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730115848, + "block_time": 1730137735, "asset_info": { "divisible": true, "asset_longname": null, @@ -11854,19 +11854,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "69a80e02531ce3205a58f83d468e6564d8d9daf4cbba3c45f3612ab9ac3a2f61", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11874,7 +11874,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11889,7 +11889,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -11903,19 +11903,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "f3e345e80e0ba6371f2e384ce4fe33c5ab5c0ee74d5ddd52cb85774560d040a7", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11923,7 +11923,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11938,7 +11938,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730137696, "asset_info": { "divisible": true, "asset_longname": null, @@ -12012,10 +12012,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "tx_hash": "07c8c88a0d58b2c951166e33ea8752a2cd1c5e5dbcd16e1eab605ebd95158953", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12040,7 +12040,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730115766, + "block_time": 1730137640, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12080,22 +12080,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "633a29ddd1d5f12a25cad17061eaf217c3d3255f32284361eec6745ecebb5d8b", + "tx_hash": "505f34698eac95f4789603ab4d531fb8b50527412db05efd1791fc4558b5259d", "tx_index": 13, "block_index": 125, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", + "fairminter_tx_hash": "07c8c88a0d58b2c951166e33ea8752a2cd1c5e5dbcd16e1eab605ebd95158953", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115766, + "block_time": 1730137640, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -12104,22 +12104,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", + "tx_hash": "3a17766db55e3c55598371c8a5dfb1451de8c1036d46d44afc33eaabd0747fcc", "tx_index": 12, "block_index": 124, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", + "fairminter_tx_hash": "07c8c88a0d58b2c951166e33ea8752a2cd1c5e5dbcd16e1eab605ebd95158953", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115762, + "block_time": 1730137636, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -12128,22 +12128,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_hash": "6f72bfe95700ba63c9ee4ecd95075759316a96a9b9245a3fb59d152bc26ff573", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "07c8c88a0d58b2c951166e33ea8752a2cd1c5e5dbcd16e1eab605ebd95158953", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115757, + "block_time": 1730137633, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -12162,7 +12162,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address of the mints to return + + address: `bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3` (str, required) - The address of the mints to return + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -12181,22 +12181,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_hash": "6f72bfe95700ba63c9ee4ecd95075759316a96a9b9245a3fb59d152bc26ff573", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "07c8c88a0d58b2c951166e33ea8752a2cd1c5e5dbcd16e1eab605ebd95158953", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115757, + "block_time": 1730137633, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -12249,9 +12249,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx_hash": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092", "block_index": 184, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12266,7 +12266,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730115936, + "block_time": 1730137805, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12292,9 +12292,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx_hash": "c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", "block_index": 187, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12309,7 +12309,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730116019, + "block_time": 1730137893, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12335,9 +12335,9 @@ Returns all the orders }, { "tx_index": 54, - "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx_hash": "7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "block_index": 188, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12352,7 +12352,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116023, + "block_time": 1730137896, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12378,9 +12378,9 @@ Returns all the orders }, { "tx_index": 57, - "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "tx_hash": "697d9fe9bf571bc39676614a50f1490b53a0ee0b8b20776717636fe7ad5bb762", "block_index": 192, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12395,7 +12395,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730116037, + "block_time": 1730137911, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12421,9 +12421,9 @@ Returns all the orders }, { "tx_index": 59, - "tx_hash": "9d6f69deab8decbb02e247c2a2e19611f0931fb91c9bd48d5dad2bfae5328ffe", + "tx_hash": "347387317119572ec5cd0ff178a3530caee267541f5e02c90750835cd176720a", "block_index": 193, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12438,7 +12438,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116041, + "block_time": 1730137914, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12473,7 +12473,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8` (str, required) - The hash of the transaction that created the order + + order_hash: `f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0` (str, required) - The hash of the transaction that created the order + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -12485,9 +12485,9 @@ Returns the information of an order { "result": { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12502,7 +12502,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116110, + "block_time": 1730137979, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12534,7 +12534,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878` (str, required) - The hash of the transaction that created the order + + order_hash: `85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0` (str, required) - The hash of the transaction that created the order + status (enum[str], optional) - The status of the order matches to return + Default: `all` + Members @@ -12561,13 +12561,13 @@ Returns the order matches of an order { "result": [ { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 54, - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", - "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "tx1_hash": "7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", + "tx1_address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12581,7 +12581,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730116023, + "block_time": 1730137896, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12601,13 +12601,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 52, - "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", + "tx1_address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12621,7 +12621,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730116019, + "block_time": 1730137893, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12651,7 +12651,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878` (str, required) - The hash of the transaction that created the order + + order_hash: `85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0` (str, required) - The hash of the transaction that created the order + cursor (str, optional) - The last index of the resolutions to return + Default: `None` + limit: `5` (int, optional) - The maximum number of resolutions to return @@ -12670,15 +12670,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "5ca9410dca98770144ee5afe5dcbf1afe4253bf161ee77b9b576832b8ccb09a7", "block_index": 187, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "btc_amount": 2000, - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "order_match_id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", "status": "valid", "confirmed": true, - "block_time": 1730116019, + "block_time": 1730137893, "btc_amount_normalized": "0.00002000" } ], @@ -12722,9 +12722,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx_hash": "c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", "block_index": 187, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12742,7 +12742,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730116019, + "block_time": 1730137893, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12768,9 +12768,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx_hash": "7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "block_index": 188, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12788,7 +12788,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730116023, + "block_time": 1730137896, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12814,9 +12814,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx_hash": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092", "block_index": 184, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12834,7 +12834,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730115936, + "block_time": 1730137805, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12860,9 +12860,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12880,7 +12880,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730116110, + "block_time": 1730137979, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12906,9 +12906,9 @@ Returns the orders to exchange two assets }, { "tx_index": 57, - "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "tx_hash": "697d9fe9bf571bc39676614a50f1490b53a0ee0b8b20776717636fe7ad5bb762", "block_index": 192, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12926,7 +12926,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730116037, + "block_time": 1730137911, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12989,13 +12989,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 54, - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", - "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "tx1_hash": "7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", + "tx1_address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13012,7 +13012,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730116023, + "block_time": 1730137896, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13032,13 +13032,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 52, - "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", + "tx1_address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13055,7 +13055,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730116019, + "block_time": 1730137893, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13075,13 +13075,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "id": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092_c1575db45cd83abcffebd4c99d8f3559be17e5dac7243236e5f1880313accca5", "tx0_index": 49, - "tx0_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 50, - "tx1_hash": "6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "c1575db45cd83abcffebd4c99d8f3559be17e5dac7243236e5f1880313accca5", + "tx1_address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13098,7 +13098,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730115936, + "block_time": 1730137805, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13156,13 +13156,13 @@ Returns all the order matches { "result": [ { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 54, - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", - "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "tx1_hash": "7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", + "tx1_address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13176,7 +13176,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730116023, + "block_time": 1730137896, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13196,13 +13196,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 52, - "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", + "tx1_address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13216,7 +13216,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730116019, + "block_time": 1730137893, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13236,13 +13236,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "id": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092_c1575db45cd83abcffebd4c99d8f3559be17e5dac7243236e5f1880313accca5", "tx0_index": 49, - "tx0_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 50, - "tx1_hash": "6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "c1575db45cd83abcffebd4c99d8f3559be17e5dac7243236e5f1880313accca5", + "tx1_address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13256,7 +13256,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730115936, + "block_time": 1730137805, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13424,66 +13424,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "40efc8e4de6bc24410016279eb759071c80e3ac3ee8fc7a52725555c3f89979e", + "tx_hash": "0c3e7108498a93127a58266d9a33694fe5ba9d597bcec7ee030eb257eb2e2b2b", "block_index": 121, - "source": "bcrt1qrac7m6sqdzx9h798y52wk0qj5205d7vtqfjyds", + "source": "bcrt1qy8gyrwsx82ar0edlxqygx5tcjkstq7ct0gal7z", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730115749, + "block_time": 1730137624, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "b3899728f4fbe6971190ca0558018b101f89d77a0a686dc9b3ccc415ca018e8b", + "tx_hash": "b767702dbbb707a5e8982cfccfcd7b548a9e55a5595232481b2a97f11d16aa92", "block_index": 120, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "source": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730115746, + "block_time": 1730137621, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "3a7a3f1159a9cfa190b40ae0aeea74f6e7bb59e77c72bf9dfcd020f2cf08b918", + "tx_hash": "e9d618308230a8e35f8ce9d3b457a1e4869728cb9903a038054a22d6fa97e901", "block_index": 119, - "source": "bcrt1qlzwnh8crxz0ezlqgv69hf4g482dp7lmzd8rrxl", + "source": "bcrt1qnrzpzecy2gs54nmeq34kk4pgsxqfhfwfe7jcrm", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730115741, + "block_time": 1730137617, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "6315228e07c37718a4a5b514e8966e340617b45669cadb46b87c79fde9c61081", + "tx_hash": "bfcc3e66f91b8bfb6da42e80c3066601e8ad00a181f030475ea8565d004b866f", "block_index": 118, - "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730115738, + "block_time": 1730137613, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "62015459a282a1c5ce61590bf6a13d1cc03908e59d02d09d8bb4327c8e8349f9", + "tx_hash": "226660c07de378ea4503bdcef5c47487358b3c7a5b4634c8590a81041a808cc8", "block_index": 117, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730115735, + "block_time": 1730137610, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13528,9 +13528,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13539,7 +13539,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13549,7 +13549,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -13565,9 +13565,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "ccb421515f869082058aa6d0f05423e1c6ce8751d4146c89dee14e26c1c3130b", + "tx_hash": "b99f67e73c446486b352531d70a5147a2412bdab7acdaba08cd93c51f655166d", "block_index": 142, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13576,7 +13576,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "origin": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13586,7 +13586,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115828, + "block_time": 1730137705, "asset_info": { "divisible": true, "asset_longname": null, @@ -13602,9 +13602,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "a809a9c0b667c336b61ce3e892a7f2d80231121804f3f7db594da58d9ded5a52", + "tx_hash": "f1eb75ae9c8f99b5c2562708de555a361d426f74779665cc776feff098698019", "block_index": 150, - "source": "mrTk1ThfTwE2f6PUY5vjkJvga5VgZXf4bk", + "source": "mmMUyxURvPd5MuCnixQbs49A4GK7CvK1JN", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13612,10 +13612,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "73d6215c951c71f26d391d50b72497e72188efc109135e95b1f58a4374c30be0", - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "last_status_tx_hash": "3951d3d276b0caac2bb7c00d102b63163b230b67535dd6a2790d4a8214674b4e", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 0, - "last_status_tx_source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "last_status_tx_source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13623,7 +13623,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115869, + "block_time": 1730137747, "asset_info": { "divisible": true, "asset_longname": null, @@ -13639,9 +13639,9 @@ Returns all dispensers }, { "tx_index": 62, - "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "tx_hash": "7ea649660ab8f930cd86bcb45928b49ee1c329482afd913b2b853c8956119f47", "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13650,7 +13650,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13660,11 +13660,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730116055, + "block_time": 1730137929, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -13676,18 +13676,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13697,7 +13697,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -13722,7 +13722,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2` (str, required) - The hash of the dispenser to return + + dispenser_hash: `417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05` (str, required) - The hash of the dispenser to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -13734,9 +13734,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13745,7 +13745,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13755,7 +13755,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -13777,7 +13777,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2` (str, required) - The hash of the dispenser to return + + dispenser_hash: `417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05` (str, required) - The hash of the dispenser to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -13797,19 +13797,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "69a80e02531ce3205a58f83d468e6564d8d9daf4cbba3c45f3612ab9ac3a2f61", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13817,7 +13817,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13832,7 +13832,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -13846,19 +13846,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "f3e345e80e0ba6371f2e384ce4fe33c5ab5c0ee74d5ddd52cb85774560d040a7", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13866,7 +13866,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13881,7 +13881,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730137696, "asset_info": { "divisible": true, "asset_longname": null, @@ -13923,20 +13923,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "751e21b82410acd34989da9ec113ea38677f8352c49fb6ab389e95f8869bb68f", "block_index": 154, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730115885, + "block_time": 1730137763, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -13961,7 +13961,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a` (str, required) - The hash of the dividend to return + + dividend_hash: `751e21b82410acd34989da9ec113ea38677f8352c49fb6ab389e95f8869bb68f` (str, required) - The hash of the dividend to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -13973,20 +13973,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "751e21b82410acd34989da9ec113ea38677f8352c49fb6ab389e95f8869bb68f", "block_index": 154, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730115885, + "block_time": 1730137763, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -14008,7 +14008,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `751e21b82410acd34989da9ec113ea38677f8352c49fb6ab389e95f8869bb68f` (str, required) - The hash of the dividend distribution to return + cursor (str, optional) - The last index of the credit to return + Default: `None` + limit: `5` (int, optional) - The maximum number of credit to return @@ -14031,12 +14031,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "event": "751e21b82410acd34989da9ec113ea38677f8352c49fb6ab389e95f8869bb68f", "tx_index": 41, - "utxo": "98dc74f499bab33d7568cbb80cf2844a2c7c56b8c2f77d240c55b6583f71505a:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "utxo": "b60a144e8864c8631a79280b1e4dc9aec9afc5f3fa5c81f7a8e8643cf3fd8c9a:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "confirmed": true, - "block_time": 1730115885, + "block_time": 1730137763, "asset_info": { "divisible": true, "asset_longname": null, @@ -14048,16 +14048,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz", + "address": "bcrt1qapctycl5mggmtdn3fduyg3d88tdak2petar6nh", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "event": "751e21b82410acd34989da9ec113ea38677f8352c49fb6ab389e95f8869bb68f", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730115885, + "block_time": 1730137763, "asset_info": { "divisible": true, "asset_longname": null, @@ -14103,27 +14103,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "6015875cc121bdf7e65521f6912035fa5d4764525e808d663a668cd632d1c783", + "messages_hash": "9521566d8ccd8d04d106def7434303634dee67ad512e16a70021e7df6bc909cf", "transaction_count": 1, - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "block_time": 1730116123 + "txlist_hash": "f2e1468800e212edd8d4c1582e8920a4e1e07b21a6c009c64b80d873405ace7c", + "block_time": 1730137988 }, "tx_hash": null, "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 674, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75 }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 673, @@ -14132,14 +14132,14 @@ Returns all events "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -14150,9 +14150,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 672, @@ -14161,9 +14161,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "status": 0, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "asset_info": { "divisible": true, "asset_longname": null, @@ -14173,24 +14173,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -14200,9 +14200,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 670, @@ -14230,15 +14230,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "6015875cc121bdf7e65521f6912035fa5d4764525e808d663a668cd632d1c783", + "messages_hash": "9521566d8ccd8d04d106def7434303634dee67ad512e16a70021e7df6bc909cf", "transaction_count": 1, - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "block_time": 1730116123 + "txlist_hash": "f2e1468800e212edd8d4c1582e8920a4e1e07b21a6c009c64b80d873405ace7c", + "block_time": 1730137988 }, "tx_hash": null, "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } } ``` @@ -14316,16 +14316,16 @@ Returns the events filtered by event name "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -14335,9 +14335,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 669, @@ -14347,12 +14347,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -14362,9 +14362,9 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 666, @@ -14374,39 +14374,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "block_time": 1730137988, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 656, "event": "CREDIT", "params": { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "block_index": 207, "calling_function": "cancel order", - "event": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "event": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730116110, + "block_time": 1730137979, "asset_info": { "divisible": true, "asset_longname": null, @@ -14416,24 +14416,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00005000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730137979 }, { "event_index": 645, "event": "CREDIT", "params": { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "block_index": 206, "calling_function": "mpma send", - "event": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "event": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "quantity": 10, "tx_index": 73, "utxo": null, "utxo_address": null, - "block_time": 1730116106, + "block_time": 1730137976, "asset_info": { "divisible": true, "asset_longname": null, @@ -14443,9 +14443,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "block_index": 206, - "block_time": 1730116106 + "block_time": 1730137976 } ], "next_cursor": 644, @@ -14501,27 +14501,27 @@ Returns all the dispenses { "tx_index": 75, "dispense_index": 0, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "destination": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14536,7 +14536,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -14550,19 +14550,19 @@ Returns all the dispenses { "tx_index": 63, "dispense_index": 0, - "tx_hash": "6afc6887d0234625af2de1aad7aa4588fb3aa054b9f1df4e9de8cd43df5794ae", + "tx_hash": "aacf983aa69a35ede968b26e5fa61476a91d41b13010a74ccb216d31681d84ea", "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "dispenser_tx_hash": "7ea649660ab8f930cd86bcb45928b49ee1c329482afd913b2b853c8956119f47", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14570,7 +14570,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14585,11 +14585,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730116055, + "block_time": 1730137929, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -14599,27 +14599,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "20ee1f7c37198c60e5b697aa072434689128d11ddd55ed299c9fa30686503493", + "tx_hash": "33494e1b0764446f2c3cec8316cda182784c9e523d460cd7c6f72352eeee92f0", "block_index": 147, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "destination": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14634,7 +14634,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730115848, + "block_time": 1730137735, "asset_info": { "divisible": true, "asset_longname": null, @@ -14648,19 +14648,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "69a80e02531ce3205a58f83d468e6564d8d9daf4cbba3c45f3612ab9ac3a2f61", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14668,7 +14668,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14683,7 +14683,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -14697,19 +14697,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "f3e345e80e0ba6371f2e384ce4fe33c5ab5c0ee74d5ddd52cb85774560d040a7", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14717,7 +14717,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14732,7 +14732,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730137696, "asset_info": { "divisible": true, "asset_longname": null, @@ -14774,10 +14774,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "destination": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -14785,7 +14785,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -14798,10 +14798,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "destination": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -14809,11 +14809,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -14822,10 +14822,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "block_index": 206, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14833,7 +14833,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730137976, "asset_info": { "divisible": true, "asset_longname": null, @@ -14846,10 +14846,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "block_index": 206, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14857,11 +14857,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730137976, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -14870,10 +14870,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "block_index": 206, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14881,11 +14881,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730137976, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -14936,14 +14936,14 @@ Returns all the issuances "result": [ { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -14958,20 +14958,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730116077, + "block_time": 1730137948, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 64, - "tx_hash": "c915023b8b26fc3eb938d496087a062745ad462fccab637368bddfd4fb29c4ba", + "tx_hash": "7b9a01a66bb26bb7e7c88b9714df68994dfd24d2873ca6f548195f000bab8e41", "msg_index": 0, "block_index": 198, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", - "issuer": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m", + "issuer": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m", "transfer": false, "callable": false, "call_date": 0, @@ -14986,20 +14986,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730116060, + "block_time": 1730137933, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "92d810aacd89aaed4756618250d3df3739516fda551847d01a705a57cf250e1c", + "tx_hash": "85a852563d5afa55ea5b9b03d3ad3910dff4fa778937b152c02349f998af12ab", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -15014,20 +15014,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730115921, + "block_time": 1730137790, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "652fa348e445bedc79af7c8da7e9edd116fc6586bb2896968234ade2b0de91c4", + "tx_hash": "e71c6886b8fb7827f156ba7baf8343a37f485ece9a8bbb6ecb78f8258a174502", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -15042,20 +15042,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730115918, + "block_time": 1730137787, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "a9640b7ef998e1287a94371074ed8dd399613638ecb6a9c1a406fd5ce29727e0", + "tx_hash": "28cc682041280cb3872d5c474d5c57f96e893560bee0b27d4897aa1a9c78b49f", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -15070,7 +15070,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730115914, + "block_time": 1730137783, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15085,7 +15085,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc` (str, required) - The hash of the transaction to return + + tx_hash: `c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15097,14 +15097,14 @@ Returns the issuances of a block { "result": { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -15119,7 +15119,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730116077, + "block_time": 1730137948, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15151,16 +15151,16 @@ Returns all sweeps "result": [ { "tx_index": 60, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "e8d7da48b9ce9e612be4e1f2e60d819f89facd419df15b19825c2b1788dfbacd", "block_index": 194, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730116045, + "block_time": 1730137917, "fee_paid_normalized": "0.00600000" } ], @@ -15174,7 +15174,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4` (str, required) - The hash of the transaction to return + + tx_hash: `e8d7da48b9ce9e612be4e1f2e60d819f89facd419df15b19825c2b1788dfbacd` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15187,16 +15187,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 60, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "e8d7da48b9ce9e612be4e1f2e60d819f89facd419df15b19825c2b1788dfbacd", "block_index": 194, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730116045, + "block_time": 1730137917, "fee_paid_normalized": "0.00600000" } ], @@ -15230,9 +15230,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "tx_hash": "d27438775220976f2a9340ddb138ba7675d2051df33331a42becbba2f96f2738", "block_index": 138, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15240,14 +15240,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730115814, + "block_time": 1730137690, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "261b5785cc07a1f7000bee3be198f5d90393f35ed50ad3c8656eafadf5e468dc", + "tx_hash": "3ee82eaec6bfaa791579394d101585d4fa2bef31e29c27d9f58abfe63a99450e", "block_index": 137, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15255,7 +15255,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730115811, + "block_time": 1730137686, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15269,7 +15269,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9` (str, required) - The hash of the transaction to return + + tx_hash: `d27438775220976f2a9340ddb138ba7675d2051df33331a42becbba2f96f2738` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15281,9 +15281,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "tx_hash": "d27438775220976f2a9340ddb138ba7675d2051df33331a42becbba2f96f2738", "block_index": 138, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15291,7 +15291,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730115814, + "block_time": 1730137690, "fee_fraction_int_normalized": "0.00000000" } } @@ -15328,10 +15328,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_hash": "45e530d40405ac9ef1d3be5efa3f3c14d0c4639cebdb66e29c3df26c9f349b33", "tx_index": 42, "block_index": 155, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15356,7 +15356,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730115889, + "block_time": 1730137766, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15365,10 +15365,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "tx_hash": "eadb025b64eec283ac9b50d8a861a332a325a0ef61b6e07e7458764b93b6020d", "tx_index": 22, "block_index": 135, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15393,7 +15393,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730115804, + "block_time": 1730137679, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15405,10 +15405,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "tx_hash": "13f2fc25ddd421978de8952f8cac7c2b08340f7331c519cb81df5b06fe433563", "tx_index": 18, "block_index": 131, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15433,7 +15433,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730115789, + "block_time": 1730137663, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15445,10 +15445,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", + "tx_hash": "6d64fafd67d16f229b872eef0a3dbe7296592188ed54a6cca955229900a159a6", "tx_index": 14, "block_index": 130, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15473,7 +15473,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730115785, + "block_time": 1730137659, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15485,10 +15485,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "tx_hash": "07c8c88a0d58b2c951166e33ea8752a2cd1c5e5dbcd16e1eab605ebd95158953", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15513,7 +15513,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730115766, + "block_time": 1730137640, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15582,22 +15582,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "2bf6f021e416ac68ff5f5776a8eddaebc2476fbc2754eb3779728e2029a3cee5", "tx_index": 23, "block_index": 136, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "eadb025b64eec283ac9b50d8a861a332a325a0ef61b6e07e7458764b93b6020d", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115808, + "block_time": 1730137683, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -15606,22 +15606,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "5da24fdc5b0f42414404df0110e4a3cd79789b5706be7b301d976f9eef623346", + "tx_hash": "d330faa610c5df11643cb18905cabc444da8d9cee67b5bad57295870604b42a9", "tx_index": 21, "block_index": 134, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "13f2fc25ddd421978de8952f8cac7c2b08340f7331c519cb81df5b06fe433563", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115800, + "block_time": 1730137675, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -15630,22 +15630,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "98840296af69b519b38aaa9663baa393849683e67da07ce11e4aa21df9259e2f", + "tx_hash": "ef10a55d23b24b9ac096dde81a12ab978e7fcead3a9ee74ab78af5a0715ffef7", "tx_index": 20, "block_index": 133, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "13f2fc25ddd421978de8952f8cac7c2b08340f7331c519cb81df5b06fe433563", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115797, + "block_time": 1730137671, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -15654,22 +15654,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "e26754ee3f011a743d3bd45d712d1fe4056c4b4f657f391b5d06c33191fe01d3", + "tx_hash": "befb90151b6b30ce9c50efd64fe22f86743242082625aa5878ade6f99b969054", "tx_index": 19, "block_index": 132, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "13f2fc25ddd421978de8952f8cac7c2b08340f7331c519cb81df5b06fe433563", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115793, + "block_time": 1730137667, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -15678,22 +15678,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "c2ff22176088f20d29376840755983b7b85d64f16b7c262e35059b6ee5a80208", + "tx_hash": "133e630a33483de8315d26c74a955430d9b11785ec44f78d673dd29cc626af6b", "tx_index": 17, "block_index": 129, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "fairminter_tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", + "fairminter_tx_hash": "6d64fafd67d16f229b872eef0a3dbe7296592188ed54a6cca955229900a159a6", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115781, + "block_time": 1730137655, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -15712,7 +15712,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869` (str, required) - The hash of the fairmint to return + + tx_hash: `2bf6f021e416ac68ff5f5776a8eddaebc2476fbc2754eb3779728e2029a3cee5` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15723,22 +15723,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "2bf6f021e416ac68ff5f5776a8eddaebc2476fbc2754eb3779728e2029a3cee5", "tx_index": 23, "block_index": 136, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "eadb025b64eec283ac9b50d8a861a332a325a0ef61b6e07e7458764b93b6020d", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115808, + "block_time": 1730137683, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -15756,7 +15756,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg,bcrt1qlzwnh8crxz0ezlqgv69hf4g482dp7lmzd8rrxl` (str, required) - The addresses to search for + + addresses: `bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m,bcrt1qnrzpzecy2gs54nmeq34kk4pgsxqfhfwfe7jcrm` (str, required) - The addresses to search for + unconfirmed (bool, optional) - Include unconfirmed transactions + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -15775,8 +15775,8 @@ Returns a list of unspent outputs for a list of addresses "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "260f8515d5cf01148f41d85cf4e21251e532277b3c37ba22a3c72be4cd065b05", - "address": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg" + "txid": "07a065a6ca4ce9514d8f76e6a24c8f265cddd5b80478a519a5c2d38070427c24", + "address": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m" }, { "vout": 1, @@ -15784,8 +15784,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "4b90e72e007ba15a6a40fdfc84e5f898b4f34917ddd7eefb3d3c380238678261", - "address": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg" + "txid": "0519cc1ebc1ae153d64ea82861a75ef76ba051363bae4d5d4ee58f38c7496511", + "address": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m" }, { "vout": 2, @@ -15793,8 +15793,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 52, "amount": 0.001, - "txid": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e", - "address": "bcrt1qlzwnh8crxz0ezlqgv69hf4g482dp7lmzd8rrxl" + "txid": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f", + "address": "bcrt1qnrzpzecy2gs54nmeq34kk4pgsxqfhfwfe7jcrm" } ], "next_cursor": null, @@ -15807,7 +15807,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu` (str, required) - The address to search for + + address: `bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e` (str, required) - The address to search for + unconfirmed: `True` (bool, optional) - Include unconfirmed transactions + Default: `True` + only_tx_hashes: `True` (bool, optional) - Return only the tx hashes @@ -15823,28 +15823,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "46275b59a76a524ece7bbe93bdce57ca07ca43cb22ad6592ae00e7f1ab310111" + "tx_hash": "00e83b822a152266f1317b41ea0d12862451a6d5caa82e6ca120b6267c962f0a" }, { - "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614" + "tx_hash": "e36624800c24414edc8772e207996a8706c60f837ca517d2c929cd63b66ef51e" }, { - "tx_hash": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28" + "tx_hash": "4d7775f61d7e7512827f42efab3680307193b255ec33cc92307369faa843a635" }, { - "tx_hash": "befc407b97cc222e3e9fadff546d543c02db387adea45dd405c48f173c37b6ba" + "tx_hash": "25836416d2ff0e71940bfd09ca1c2ad6354d1a837854c3a0a1240155927ab665" }, { - "tx_hash": "5d1e44b8239fc1804e1dfb41c0ff24d1b9fe50fdd26c0a080ddcc73e152633bd" + "tx_hash": "f8030e846db7b0f26a242c79e8c0d6e38f245ecf6cf203de8579071ecd8d7374" }, { - "tx_hash": "ebdd9911ac289e537ed7c712b293decfb0d690c1b2390873d53383b30979e9c8" + "tx_hash": "7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483" }, { - "tx_hash": "54cb02f91cc1d54472f02930f57a18f5e5c9fbd699b1c40339fa0b223b3c2af1" + "tx_hash": "3a17766db55e3c55598371c8a5dfb1451de8c1036d46d44afc33eaabd0747fcc" }, { - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4" + "tx_hash": "e8d7da48b9ce9e612be4e1f2e60d819f89facd419df15b19825c2b1788dfbacd" } ], "next_cursor": null, @@ -15857,7 +15857,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh` (str, required) - The address to search for. + + address: `bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a` (str, required) - The address to search for. + block_index (int, optional) - The block index to search from. + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -15870,8 +15870,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 3, - "tx_hash": "538e56b094f8dbba32f0ec9a3e237582b618490767ec074bc8a822c4657988a8" + "block_index": 2, + "tx_hash": "2d307c4cfb8e63d518ad736ebd832cfe80c56ccc78333da6beb952ab7ba2bbf9" } } ``` @@ -15881,7 +15881,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg` (str, required) - The address to search for + + address: `bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m` (str, required) - The address to search for + unconfirmed (bool, optional) - Include unconfirmed transactions + Default: `False` + unspent_tx_hash (str, optional) - Filter by unspent_tx_hash @@ -15897,20 +15897,20 @@ Returns a list of unspent outputs for a specific address { "result": [ { - "vout": 0, + "vout": 1, "height": 200, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "260f8515d5cf01148f41d85cf4e21251e532277b3c37ba22a3c72be4cd065b05" + "amount": 49.499345, + "txid": "0519cc1ebc1ae153d64ea82861a75ef76ba051363bae4d5d4ee58f38c7496511" }, { - "vout": 1, + "vout": 0, "height": 200, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "4b90e72e007ba15a6a40fdfc84e5f898b4f34917ddd7eefb3d3c380238678261" + "amount": 5.46e-05, + "txid": "07a065a6ca4ce9514d8f76e6a24c8f265cddd5b80478a519a5c2d38070427c24" } ], "next_cursor": null, @@ -15923,7 +15923,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - Address to get pubkey for. + + address: `bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc` (str, required) - Address to get pubkey for. + provided_pubkeys (str, optional) - Comma separated list of provided pubkeys. + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -15935,7 +15935,7 @@ Get pubkey for an address. ``` { - "result": "03998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f5" + "result": "03f34cec8b12ed0ecb49aac11f3a6b5c323c2d435491d7c9d300ebb7298ea2b35d" } ``` @@ -15944,7 +15944,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8` (str, required) - The transaction hash + + tx_hash: `5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897` (str, required) - The transaction hash + format: `hex` (str, optional) - Whether to return JSON output or raw hex + Default: `json` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -15956,7 +15956,7 @@ Get a transaction from the blockchain ``` { - "result": "020000000001016e888e762a5bf751913b28c9af990e94615e21052e49580e84f3926bebd9fca50100000000ffffffff03e803000000000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e100000000000000000c6a0aa390177068284096dde5dced082701000000160014d950bc5f9180ecff106845a230a250af93710c9a02473044022075c5b31202028752fbe4fef802a6100e72659ca2b61b87ead38c4cd1b7a3951102203037bfa13cc2fc1f3130ab74ee5aedde6649fb33ec0c628e7e9afba8fc8010c00121029bf65cc180612a741a06643bfa5b68c3dce8915d289aea03ca0bdbaa4d03e70700000000" + "result": "020000000001018f03aa788a48040fce466911ae455551d73902420f6d22525afd516e5bd7b53e0100000000ffffffff03e803000000000000160014b0ffc155367a55fd45223389eb27cc866c81e13200000000000000000c6a0aaadd2234157c4b5b9c04dced08270100000016001458964f1fb2b0bfc4d008b8f6cf5a9238be37b7ef0247304402202f40bc0355237d350882bf41a5065e0f27ea3361af3e5055552e25a9a1e5cf7f02206f3ce8c56d426feaf218495242994710d63a1d0a56106cd6887f31e575d2c00a012102c91f612de7780b366af0f838824fe459a606f94839f2e9e65bc54828f94174b700000000" } ``` @@ -16051,27 +16051,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "tx_index": 76 }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "memo": null, "quantity": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "status": "valid", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "tx_index": 76, "asset_info": { "divisible": true, @@ -16082,22 +16082,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "CREDIT", "params": { - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -16107,22 +16107,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "XCP", "block_index": 208, - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -16132,30 +16132,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730116127.587877, + "block_time": 1730137992.2259407, "btc_amount": 0, - "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", + "data": "020000000000000001000000000000271080d366a43686c88a15c961c4f50af139cd14944206", "destination": "", "fee": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "tx_index": 76, - "utxos_info": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f:1", + "utxos_info": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "memo": null, "asset_info": { "divisible": true, @@ -16169,7 +16169,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 } ], "next_cursor": null, @@ -16200,19 +16200,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "CREDIT", "params": { - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -16222,7 +16222,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 } ], "next_cursor": null, @@ -16235,7 +16235,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f` (str, required) - The hash of the transaction to return + + tx_hash: `7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor (str, optional) - The last event index to return @@ -16255,27 +16255,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "tx_index": 76 }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "memo": null, "quantity": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "status": "valid", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "tx_index": 76, "asset_info": { "divisible": true, @@ -16286,22 +16286,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "CREDIT", "params": { - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -16311,22 +16311,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "XCP", "block_index": 208, - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -16336,30 +16336,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730116127.587877, + "block_time": 1730137992.2259407, "btc_amount": 0, - "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", + "data": "020000000000000001000000000000271080d366a43686c88a15c961c4f50af139cd14944206", "destination": "", "fee": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "tx_index": 76, - "utxos_info": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f:1", + "utxos_info": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "memo": null, "asset_info": { "divisible": true, @@ -16373,7 +16373,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 5edc7b3ab9..5528f5c53c 100644 --- a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json +++ b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json @@ -3,61 +3,61 @@ "result": [ { "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_hash": "266c0972d4f52810f8433bf2b54fda3541b96eb40ae53f21abe721b535dfb5ef", + "block_time": 1730137988, + "previous_block_hash": "70ba7089afff84e271f6e7d5e9c822765acfd2cb6166952a11578079921a3ca2", "difficulty": 545259519, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "6015875cc121bdf7e65521f6912035fa5d4764525e808d663a668cd632d1c783", + "txlist_hash": "f2e1468800e212edd8d4c1582e8920a4e1e07b21a6c009c64b80d873405ace7c", + "messages_hash": "9521566d8ccd8d04d106def7434303634dee67ad512e16a70021e7df6bc909cf", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", - "block_time": 1730116110, - "previous_block_hash": "43e679712b4649bc798af14df94c86578f3b408d04178a5c2fc175d41a020122", + "block_hash": "70ba7089afff84e271f6e7d5e9c822765acfd2cb6166952a11578079921a3ca2", + "block_time": 1730137979, + "previous_block_hash": "5df91f5e431fe5150b0eb174a39910e768e8f6767e57ae8ecd9ef9cb634b9bc6", "difficulty": 545259519, - "ledger_hash": "ba02d6708a382d3713cfcfcccac729b1e7e29a6a2aa1c7d19685ccc856890da8", - "txlist_hash": "790b35ebd56c4d625af0345f72bd428d1cb0c0318f9935ae19163367f47cbd3a", - "messages_hash": "1933b8e86c5aad6c5816ac34109db0a5f96f3f784097419eaa5909389373eb47", + "ledger_hash": "f74ab008a7c87e2ccc73e5a3e9c0e771c95c66a0bed747f054e11c0379fe2aea", + "txlist_hash": "fd1df9fdb0ce5ce6dbb6ff8d2da4412ab7b39b5da3cc58d6fc8ecf4e84d3ef5b", + "messages_hash": "b6bb188c4fbe1b2978ff740cd8a242d0eb44724f2e11ba22bf54b67befd368f0", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "43e679712b4649bc798af14df94c86578f3b408d04178a5c2fc175d41a020122", - "block_time": 1730116106, - "previous_block_hash": "4a895299665e1f654c5117e9c4b133cbccccd6db23134dca896fa8a620b81d38", + "block_hash": "5df91f5e431fe5150b0eb174a39910e768e8f6767e57ae8ecd9ef9cb634b9bc6", + "block_time": 1730137976, + "previous_block_hash": "51c555379445358be374b578c132df7642edad6b0dd0a2e5225f85e99d2636ea", "difficulty": 545259519, - "ledger_hash": "5191f4352b18e0244b417732e8ca9a2f4099e82fe6378941d597a9d0f44a35eb", - "txlist_hash": "11ed68e7e561ca9c47bd5e3b49cb3a916edd7b0565c99186172ce08b245266b6", - "messages_hash": "6d6616e6036b35108a1433422b6728e8e7184fe366730d6c4167cf4f128f3957", + "ledger_hash": "9594d29f6550f11b19b100a9ee4116388493394c7ad1e2e7732f32b4db1b8de4", + "txlist_hash": "ff030d39e607db3277a1549f13ab881c260ead75c60a11d8b9c2bb572e2518fe", + "messages_hash": "f8d4a28d73dd38692813078ac78b8f5f4eb1dc3f253661a70343e0dddc901f29", "transaction_count": 1, "confirmed": true }, { "block_index": 205, - "block_hash": "4a895299665e1f654c5117e9c4b133cbccccd6db23134dca896fa8a620b81d38", - "block_time": 1730116102, - "previous_block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", + "block_hash": "51c555379445358be374b578c132df7642edad6b0dd0a2e5225f85e99d2636ea", + "block_time": 1730137973, + "previous_block_hash": "4c5f743ed9f3ae253966764308f1f689ea24b51c803ea2aaed438e8fbd572359", "difficulty": 545259519, - "ledger_hash": "9bc1700e61ef5a091713fdba122f7f916443a27ccc0f6f8962ebd916f77b09fe", - "txlist_hash": "447c3368dca8d934fd7757b6f897b5f6060d596592dc32123ae0664d1286d758", - "messages_hash": "933776eb7aae2e8246e02f0527252645708affea8a2cfcee96ed6a4022a47ab8", + "ledger_hash": "c29bb1ec6528d96f3bc0e7c37b40a5e4ae29bbdb36e441083b7b1e844c7712c5", + "txlist_hash": "925d71a3d7f60c28ff72e87a2bdda61182b5367e6426b70e9f070f671ea006a8", + "messages_hash": "09106d44c8e08bcdc22286148af535c6598a7fa7b8568610a8e4888392786cf0", "transaction_count": 1, "confirmed": true }, { "block_index": 204, - "block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", - "block_time": 1730116099, - "previous_block_hash": "37274251a093028e8065cbc9af85901d3961a9e5e04f4e726b13a0506a915652", + "block_hash": "4c5f743ed9f3ae253966764308f1f689ea24b51c803ea2aaed438e8fbd572359", + "block_time": 1730137968, + "previous_block_hash": "0ae8bfe00469c56b2bc9f99bb596569e6c93bbf649cb8684861e6f6c7f63a275", "difficulty": 545259519, - "ledger_hash": "aa1ba152bb405e250dbe4f7276f155e4c10345fbf42243536809bc9a0ca0307a", - "txlist_hash": "757b7ab2907208b3a7d0202f310e15a22fd7dd5205a5acef4262a2c013a56c84", - "messages_hash": "f866e444026dcc12e65fad983a1b2435470977f04f7668204304a707a604c729", + "ledger_hash": "bcf426c4f1b68e30f288668a09749a9ce095515f3533486c85b2daf5fd9a2106", + "txlist_hash": "0f080035c3ea5bd8b54c43324a6be6e9355bededc4832a72eaa3475a5e79a0c1", + "messages_hash": "111d5278db433236e0076c80347b185bd20cc99f5be3753514bc272ec017f67e", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_hash": "266c0972d4f52810f8433bf2b54fda3541b96eb40ae53f21abe721b535dfb5ef", + "block_time": 1730137988, + "previous_block_hash": "70ba7089afff84e271f6e7d5e9c822765acfd2cb6166952a11578079921a3ca2", "difficulty": 545259519, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "6015875cc121bdf7e65521f6912035fa5d4764525e808d663a668cd632d1c783", + "txlist_hash": "f2e1468800e212edd8d4c1582e8920a4e1e07b21a6c009c64b80d873405ace7c", + "messages_hash": "9521566d8ccd8d04d106def7434303634dee67ad512e16a70021e7df6bc909cf", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_hash": "266c0972d4f52810f8433bf2b54fda3541b96eb40ae53f21abe721b535dfb5ef", + "block_time": 1730137988, + "previous_block_hash": "70ba7089afff84e271f6e7d5e9c822765acfd2cb6166952a11578079921a3ca2", "difficulty": 545259519, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "6015875cc121bdf7e65521f6912035fa5d4764525e808d663a668cd632d1c783", + "txlist_hash": "f2e1468800e212edd8d4c1582e8920a4e1e07b21a6c009c64b80d873405ace7c", + "messages_hash": "9521566d8ccd8d04d106def7434303634dee67ad512e16a70021e7df6bc909cf", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_hash": "266c0972d4f52810f8433bf2b54fda3541b96eb40ae53f21abe721b535dfb5ef", + "block_time": 1730137988, + "source": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", + "destination": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1 5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "6015875cc121bdf7e65521f6912035fa5d4764525e808d663a668cd632d1c783", + "messages_hash": "9521566d8ccd8d04d106def7434303634dee67ad512e16a70021e7df6bc909cf", "transaction_count": 1, - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "block_time": 1730116123 + "txlist_hash": "f2e1468800e212edd8d4c1582e8920a4e1e07b21a6c009c64b80d873405ace7c", + "block_time": 1730137988 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75 }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897" }, { "event_index": 673, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897" }, { "event_index": 672, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "status": 0, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897" }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897" } ], "next_cursor": 670, @@ -256,16 +256,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897" }, { "event_index": 669, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897" }, { "event_index": 666, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "block_time": 1730137988, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 208, - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "utxo": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "utxo": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "utxo": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "utxo_address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "utxo": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "utxo_address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "object_id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", "block_index": 207, "confirmed": true, - "block_time": 1730116110 + "block_time": 1730137979 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 58, - "tx_hash": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603", + "tx_hash": "4a12595a90692d8d75833b767c77779efb65f193bc0f1e5e366e52be29fdc5b3", "block_index": 192, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "offer_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "offer_hash": "697d9fe9bf571bc39676614a50f1490b53a0ee0b8b20776717636fe7ad5bb762", "status": "valid", "confirmed": true, - "block_time": 1730116037 + "block_time": 1730137911 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 61, - "tx_hash": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c", + "tx_hash": "5ddd69d96e90dd52e5459771dbe9d79a574e9a0a1c1d06a1aeb97add894857c1", "block_index": 195, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730116049, + "block_time": 1730137922, "asset_info": { "divisible": true, "asset_longname": null, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730116077, + "block_time": 1730137948, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "destination": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -565,10 +565,10 @@ }, { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "destination": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 75, "dispense_index": 0, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "destination": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -650,16 +650,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "e8d7da48b9ce9e612be4e1f2e60d819f89facd419df15b19825c2b1788dfbacd", "block_index": 194, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730116045, + "block_time": 1730137917, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_hash": "45e530d40405ac9ef1d3be5efa3f3c14d0c4639cebdb66e29c3df26c9f349b33", "tx_index": 42, "block_index": 155, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730115889, + "block_time": 1730137766, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "2bf6f021e416ac68ff5f5776a8eddaebc2476fbc2754eb3779728e2029a3cee5", "tx_index": 23, "block_index": 136, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "eadb025b64eec283ac9b50d8a861a332a325a0ef61b6e07e7458764b93b6020d", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115808, + "block_time": 1730137683, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_hash": "266c0972d4f52810f8433bf2b54fda3541b96eb40ae53f21abe721b535dfb5ef", + "block_time": 1730137988, + "source": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", + "destination": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1 5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", - "block_time": 1730116110, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "70ba7089afff84e271f6e7d5e9c822765acfd2cb6166952a11578079921a3ca2", + "block_time": 1730137979, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "utxos_info": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -816,7 +816,7 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, @@ -827,7 +827,7 @@ "coinbase": false, "vin": [ { - "hash": "22235f2d650a226bf825e40c3473b0e86f83f9343173f94cbc4a32f87c65de5a", + "hash": "90b7f7df10c2506994e7e61bd3204e335dbe6b143b5ea90b9e053dc6f7eccd11", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -837,20 +837,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a33092deefc89a2a67b64e4c655a20092a63cf5fe4084982c805fb233a2bc65b00a4ef01528b34993cb1af6dde83d6b01746fbf64" + "script_pub_key": "6a33ddc11c2b3e7784061bc5a627932de1d677b19dedeb641135cb4b21e83973f4c7641b03bc59ddefa11e6872def6295b7ac9766c" }, { "value": 4999990000, - "script_pub_key": "001488638b12211ad2887d7013cdfa98b822eb7f220a" + "script_pub_key": "0014a8392a7ee1ff27fa75740f0b5c3119b09a4df907" } ], "vtxinwit": [ - "3044022021eba1988ce97e426258deed9b863cd2f5e51abed055fc30eafdd9d5673ebbca022035367d00fdbc15592a449b1d3aceb36faeb59a30b022c4120fe5ae511cdf3b4401", - "03998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f5" + "304402201c99500e54235306b8c7444e552f3c8f3bea6aecb7e1e04d6865910eaa05756402203b00c3a8c27dd30f19313a2e025e2532ad1fde26bc3b125f9859bf247813b2e201", + "03f34cec8b12ed0ecb49aac11f3a6b5c323c2d435491d7c9d300ebb7298ea2b35d" ], "lock_time": 0, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", - "tx_id": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8" + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", + "tx_id": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0" }, "unpacked_data": { "message_type": "order", @@ -887,18 +887,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", + "data": "020000000000000001000000000000271080d366a43686c88a15c961c4f50af139cd14944206", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "5a50713f58b6550c247df7c2b8567c2c4a84f20cb8cb68753db3ba99f474dc98", + "hash": "9a8cfdf33c64e8a8f7815cfaf3c5afc9aec94d1e0b28791a63c864884e140ab6", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -908,20 +908,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2eb84b152a827bd18cceeba1308198de9799d937904e165fafd90b85dbc93bc1a08b3043d21b9b815079166ecce04f" + "script_pub_key": "6a2e3835be1e093c905b36bd11fd95d4889dbb80e1c9f6cafc31ef49acd9f3f23f669e78a8117ef9ffb046142fbde4a3" }, { "value": 4999970000, - "script_pub_key": "00142ae165e7b04a97caa52d91a46d89891d704370ff" + "script_pub_key": "0014eea22e429f2e4b5aa6b8e2c872ea3e8dbbc6c8dc" } ], "vtxinwit": [ - "3044022041d4d57109cb06f7743adf5e31ff61ae4d4d8e4b0aa597e866693a4ec0db1e4b022068a38087d86e8473a3601cb134cb4a9cdee4c11ec669e3e4c9f0234ab4f7a9c101", - "02d9ed6b0141de6dd60aa82fcd650f0ea18a84a8c9069b9ff072e09c8174a59ea3" + "30440220340cc1499c4bc4601f3e397f1345fe98d22ce6db5a1ad202e69c65f4503db70f0220432b22a93883c905e996defd9016f0d0108d527fffc0ea2d189223c4a7ed9f4001", + "03f8ac06f64189eaeaa5d9c1903ec8553e14fef7d5320b287093f9a87c7964ec73" ], "lock_time": 0, - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", - "tx_id": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f" + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", + "tx_id": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277" }, "unpacked_data": { "message_type": "enhanced_send", @@ -929,7 +929,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "memo": null, "asset_info": { "divisible": true, @@ -956,17 +956,17 @@ "/v2/transactions/": { "result": { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_hash": "266c0972d4f52810f8433bf2b54fda3541b96eb40ae53f21abe721b535dfb5ef", + "block_time": 1730137988, + "source": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", + "destination": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1 5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -981,17 +981,17 @@ "/v2/transactions/": { "result": { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_hash": "266c0972d4f52810f8433bf2b54fda3541b96eb40ae53f21abe721b535dfb5ef", + "block_time": 1730137988, + "source": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", + "destination": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1 5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1010,12 +1010,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75 }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 673, @@ -1024,14 +1024,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -1042,9 +1042,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 672, @@ -1053,9 +1053,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "status": 0, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "asset_info": { "divisible": true, "asset_longname": null, @@ -1065,24 +1065,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -1092,9 +1092,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 670, @@ -1102,14 +1102,14 @@ "params": { "asset": "XCP", "block_index": 208, - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "destination": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "msg_index": 1, "quantity": 1500000000, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "source": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", "status": "valid", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -1119,9 +1119,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 669, @@ -1134,12 +1134,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75 }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 673, @@ -1148,14 +1148,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -1166,9 +1166,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 672, @@ -1177,9 +1177,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "status": 0, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "asset_info": { "divisible": true, "asset_longname": null, @@ -1189,24 +1189,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -1216,9 +1216,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 670, @@ -1226,14 +1226,14 @@ "params": { "asset": "XCP", "block_index": 208, - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "destination": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "msg_index": 1, "quantity": 1500000000, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "source": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", "status": "valid", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -1243,9 +1243,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 669, @@ -1255,10 +1255,10 @@ "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "destination": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1266,7 +1266,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -1279,10 +1279,10 @@ }, { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "destination": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1290,11 +1290,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -1310,27 +1310,27 @@ { "tx_index": 75, "dispense_index": 0, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "destination": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1345,7 +1345,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -1366,16 +1366,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -1385,9 +1385,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 669, @@ -1397,12 +1397,12 @@ "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -1412,9 +1412,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 666, @@ -1424,24 +1424,24 @@ "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "block_time": 1730137988, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": null, @@ -1453,16 +1453,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -1472,9 +1472,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 669, @@ -1484,12 +1484,12 @@ "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -1499,9 +1499,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 666, @@ -1511,24 +1511,24 @@ "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "block_time": 1730137988, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": null, @@ -1541,7 +1541,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1551,7 +1551,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -1562,7 +1562,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1572,7 +1572,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -1583,7 +1583,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1593,7 +1593,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -1604,7 +1604,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1614,7 +1614,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -1625,7 +1625,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1635,7 +1635,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -1646,7 +1646,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1656,7 +1656,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -1670,17 +1670,17 @@ "result": [ { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", - "block_time": 1730116110, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "70ba7089afff84e271f6e7d5e9c822765acfd2cb6166952a11578079921a3ca2", + "block_time": 1730137979, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "utxos_info": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1716,17 +1716,17 @@ }, { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "block_index": 206, - "block_hash": "43e679712b4649bc798af14df94c86578f3b408d04178a5c2fc175d41a020122", - "block_time": 1730116106, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "block_hash": "5df91f5e431fe5150b0eb174a39910e768e8f6767e57ae8ecd9ef9cb634b9bc6", + "block_time": 1730137976, + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038088638b12211ad2887d7013cdfa98b822eb7f220a802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a8392a7ee1ff27fa75740f0b5c3119b09a4df90780d366a43686c88a15c961c4f50af139cd1494420680eea22e429f2e4b5aa6b8e2c872ea3e8dbbc6c8dc88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257:0", + "utxos_info": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1734,14 +1734,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -1749,7 +1749,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1768,17 +1768,17 @@ }, { "tx_index": 72, - "tx_hash": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "tx_hash": "1ff0761a97319d2a01ea6914b4c2e6a1f8f6381836ce932c653a8c4815df9cb7", "block_index": 205, - "block_hash": "4a895299665e1f654c5117e9c4b133cbccccd6db23134dca896fa8a620b81d38", - "block_time": 1730116102, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "block_hash": "51c555379445358be374b578c132df7642edad6b0dd0a2e5225f85e99d2636ea", + "block_time": 1730137973, + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038088638b12211ad2887d7013cdfa98b822eb7f220a802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ffc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a8392a7ee1ff27fa75740f0b5c3119b09a4df90780d366a43686c88a15c961c4f50af139cd1494420680eea22e429f2e4b5aa6b8e2c872ea3e8dbbc6c8dcc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0:0", + "utxos_info": "1ff0761a97319d2a01ea6914b4c2e6a1f8f6381836ce932c653a8c4815df9cb7:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1786,14 +1786,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -1801,7 +1801,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1820,17 +1820,17 @@ }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "block_index": 204, - "block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", - "block_time": 1730116099, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "4c5f743ed9f3ae253966764308f1f689ea24b51c803ea2aaed438e8fbd572359", + "block_time": 1730137968, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a548b4d7c3faa3572780aa9b629ef0fab1613ce480d366a43686c88a15c961c4f50af139cd1494420680eea22e429f2e4b5aa6b8e2c872ea3e8dbbc6c8dc40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5:0", + "utxos_info": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1838,14 +1838,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -1853,7 +1853,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1872,17 +1872,17 @@ }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409", "block_index": 203, - "block_hash": "37274251a093028e8065cbc9af85901d3961a9e5e04f4e726b13a0506a915652", - "block_time": 1730116095, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "0ae8bfe00469c56b2bc9f99bb596569e6c93bbf649cb8684861e6f6c7f63a275", + "block_time": 1730137955, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a548b4d7c3faa3572780aa9b629ef0fab1613ce480d366a43686c88a15c961c4f50af139cd1494420680eea22e429f2e4b5aa6b8e2c872ea3e8dbbc6c8dc88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354:0", + "utxos_info": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1890,14 +1890,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -1905,7 +1905,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1945,11 +1945,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "status": "open", - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "tx_index": 74, - "block_time": 1730116110, + "block_time": 1730137979, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1973,24 +1973,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730137979 }, { "event_index": 658, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "block_index": 207, - "event": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "event": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "quantity": 1000, "tx_index": 74, "utxo": null, "utxo_address": null, - "block_time": 1730116110, + "block_time": 1730137979, "asset_info": { "divisible": true, "asset_longname": null, @@ -2000,37 +2000,37 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730137979 }, { "event_index": 657, "event": "ORDER_EXPIRATION", "params": { "block_index": 207, - "order_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "block_time": 1730116110 + "order_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "block_time": 1730137979 }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730137979 }, { "event_index": 656, "event": "CREDIT", "params": { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "block_index": 207, "calling_function": "cancel order", - "event": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "event": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730116110, + "block_time": 1730137979, "asset_info": { "divisible": true, "asset_longname": null, @@ -2040,25 +2040,25 @@ }, "quantity_normalized": "0.00005000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730137979 }, { "event_index": 654, "event": "NEW_TRANSACTION", "params": { - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_hash": "70ba7089afff84e271f6e7d5e9c822765acfd2cb6166952a11578079921a3ca2", "block_index": 207, - "block_time": 1730116110, + "block_time": 1730137979, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "tx_index": 74, - "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "utxos_info": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -2090,28 +2090,28 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730137979 } ], "next_cursor": 650, - "result_count": 236 + "result_count": 237 }, "/v2/addresses/mempool": { "result": [ { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "memo": null, "quantity": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "status": "valid", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "tx_index": 76, "asset_info": { "divisible": true, @@ -2122,22 +2122,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "CREDIT", "params": { - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -2147,22 +2147,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "XCP", "block_index": 208, - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -2172,30 +2172,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730116127.587877, + "block_time": 1730137992.2259407, "btc_amount": 0, - "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", + "data": "020000000000000001000000000000271080d366a43686c88a15c961c4f50af139cd14944206", "destination": "", "fee": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "tx_index": 76, - "utxos_info": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f:1", + "utxos_info": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "memo": null, "asset_info": { "divisible": true, @@ -2209,7 +2209,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 } ], "next_cursor": null, @@ -2218,7 +2218,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2226,14 +2226,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2241,14 +2241,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2256,14 +2256,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -2278,7 +2278,7 @@ "quantity_normalized": "826.49941000" }, { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2286,7 +2286,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -2299,7 +2299,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -2321,16 +2321,16 @@ "result": [ { "block_index": 207, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "event": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116110, + "block_time": 1730137979, "asset_info": { "divisible": true, "asset_longname": null, @@ -2342,16 +2342,16 @@ }, { "block_index": 206, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "event": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730137976, "asset_info": { "divisible": true, "asset_longname": null, @@ -2363,16 +2363,16 @@ }, { "block_index": 205, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "event": "1ff0761a97319d2a01ea6914b4c2e6a1f8f6381836ce932c653a8c4815df9cb7", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116102, + "block_time": 1730137973, "asset_info": { "divisible": true, "asset_longname": null, @@ -2384,20 +2384,20 @@ }, { "block_index": 201, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "event": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23", "tx_index": 68, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116077, + "block_time": 1730137948, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -2405,16 +2405,16 @@ }, { "block_index": 192, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "event": "697d9fe9bf571bc39676614a50f1490b53a0ee0b8b20776717636fe7ad5bb762", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116037, + "block_time": 1730137911, "asset_info": { "divisible": true, "asset_longname": null, @@ -2432,16 +2432,16 @@ "result": [ { "block_index": 207, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "event": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116110, + "block_time": 1730137979, "asset_info": { "divisible": true, "asset_longname": null, @@ -2453,16 +2453,16 @@ }, { "block_index": 204, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "event": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730137968, "asset_info": { "divisible": true, "asset_longname": null, @@ -2474,20 +2474,20 @@ }, { "block_index": 204, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "event": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730137968, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -2495,16 +2495,16 @@ }, { "block_index": 203, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "event": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730137955, "asset_info": { "divisible": true, "asset_longname": null, @@ -2516,20 +2516,20 @@ }, { "block_index": 203, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "event": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730137955, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -2548,9 +2548,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "261b5785cc07a1f7000bee3be198f5d90393f35ed50ad3c8656eafadf5e468dc", + "tx_hash": "3ee82eaec6bfaa791579394d101585d4fa2bef31e29c27d9f58abfe63a99450e", "block_index": 137, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2558,7 +2558,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730115811, + "block_time": 1730137686, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2569,14 +2569,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "4e51590e06d15e411d148775427a365b6d8b79fe62e2bddbc21caf33d13f1998", + "tx_hash": "000aaab41ce6ef6c17629c4380910445f074a032c9827f3e0cfb7a1c35121f48", "block_index": 112, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730115719, + "block_time": 1730137592, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2588,10 +2588,10 @@ "result": [ { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2599,7 +2599,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730137968, "asset_info": { "divisible": true, "asset_longname": null, @@ -2612,10 +2612,10 @@ }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2623,11 +2623,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730137968, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -2636,10 +2636,10 @@ }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2647,11 +2647,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730137968, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -2660,10 +2660,10 @@ }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409", "block_index": 203, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2671,7 +2671,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730137955, "asset_info": { "divisible": true, "asset_longname": null, @@ -2684,10 +2684,10 @@ }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409", "block_index": 203, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2695,11 +2695,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730137955, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -2714,10 +2714,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "16c2e31138126762962006973bfedc1ced24b4fc3d41616f4ea36346add19de5", + "tx_hash": "0219565c850d1b3ed0785de60440d96852e3308ca6d678feb74e44506de760df", "block_index": 151, - "source": "ebdd9911ac289e537ed7c712b293decfb0d690c1b2390873d53383b30979e9c8:0", - "destination": "bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz", + "source": "f8030e846db7b0f26a242c79e8c0d6e38f245ecf6cf203de8579071ecd8d7374:0", + "destination": "bcrt1qapctycl5mggmtdn3fduyg3d88tdak2petar6nh", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2725,11 +2725,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730115873, + "block_time": 1730137751, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -2744,10 +2744,10 @@ "result": [ { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2755,11 +2755,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730137968, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -2768,10 +2768,10 @@ }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2779,11 +2779,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730137968, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -2792,10 +2792,10 @@ }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409", "block_index": 203, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2803,11 +2803,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730137955, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -2816,10 +2816,10 @@ }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409", "block_index": 203, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2827,11 +2827,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730137955, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -2840,10 +2840,10 @@ }, { "tx_index": 69, - "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "tx_hash": "315c6064b2897e22ff0c1467169f516d2d30571587f022e17fdde9e4f0eac872", "block_index": 202, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2851,11 +2851,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116081, + "block_time": 1730137952, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -2875,9 +2875,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2886,7 +2886,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2896,7 +2896,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -2912,9 +2912,9 @@ }, { "tx_index": 62, - "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "tx_hash": "7ea649660ab8f930cd86bcb45928b49ee1c329482afd913b2b853c8956119f47", "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2923,7 +2923,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2933,11 +2933,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730116055, + "block_time": 1730137929, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -2954,9 +2954,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2965,7 +2965,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2975,7 +2975,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -2995,19 +2995,19 @@ { "tx_index": 63, "dispense_index": 0, - "tx_hash": "6afc6887d0234625af2de1aad7aa4588fb3aa054b9f1df4e9de8cd43df5794ae", + "tx_hash": "aacf983aa69a35ede968b26e5fa61476a91d41b13010a74ccb216d31681d84ea", "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "dispenser_tx_hash": "7ea649660ab8f930cd86bcb45928b49ee1c329482afd913b2b853c8956119f47", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3015,7 +3015,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3030,11 +3030,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730116055, + "block_time": 1730137929, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -3044,19 +3044,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "69a80e02531ce3205a58f83d468e6564d8d9daf4cbba3c45f3612ab9ac3a2f61", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3064,7 +3064,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3079,7 +3079,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -3093,19 +3093,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "f3e345e80e0ba6371f2e384ce4fe33c5ab5c0ee74d5ddd52cb85774560d040a7", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3113,7 +3113,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3128,7 +3128,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730137696, "asset_info": { "divisible": true, "asset_longname": null, @@ -3148,19 +3148,19 @@ { "tx_index": 63, "dispense_index": 0, - "tx_hash": "6afc6887d0234625af2de1aad7aa4588fb3aa054b9f1df4e9de8cd43df5794ae", + "tx_hash": "aacf983aa69a35ede968b26e5fa61476a91d41b13010a74ccb216d31681d84ea", "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "dispenser_tx_hash": "7ea649660ab8f930cd86bcb45928b49ee1c329482afd913b2b853c8956119f47", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3168,7 +3168,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3183,11 +3183,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730116055, + "block_time": 1730137929, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -3197,19 +3197,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "69a80e02531ce3205a58f83d468e6564d8d9daf4cbba3c45f3612ab9ac3a2f61", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3217,7 +3217,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3232,7 +3232,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -3246,19 +3246,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "f3e345e80e0ba6371f2e384ce4fe33c5ab5c0ee74d5ddd52cb85774560d040a7", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3266,7 +3266,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3281,7 +3281,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730137696, "asset_info": { "divisible": true, "asset_longname": null, @@ -3301,19 +3301,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "69a80e02531ce3205a58f83d468e6564d8d9daf4cbba3c45f3612ab9ac3a2f61", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3321,7 +3321,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3336,7 +3336,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -3350,19 +3350,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "f3e345e80e0ba6371f2e384ce4fe33c5ab5c0ee74d5ddd52cb85774560d040a7", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3370,7 +3370,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3385,7 +3385,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730137696, "asset_info": { "divisible": true, "asset_longname": null, @@ -3405,19 +3405,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "69a80e02531ce3205a58f83d468e6564d8d9daf4cbba3c45f3612ab9ac3a2f61", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3425,7 +3425,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3440,7 +3440,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -3454,19 +3454,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "f3e345e80e0ba6371f2e384ce4fe33c5ab5c0ee74d5ddd52cb85774560d040a7", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3474,7 +3474,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3489,7 +3489,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730137696, "asset_info": { "divisible": true, "asset_longname": null, @@ -3508,16 +3508,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "e8d7da48b9ce9e612be4e1f2e60d819f89facd419df15b19825c2b1788dfbacd", "block_index": 194, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730116045, + "block_time": 1730137917, "fee_paid_normalized": "0.00600000" } ], @@ -3528,14 +3528,14 @@ "result": [ { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -3550,20 +3550,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730116077, + "block_time": 1730137948, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "92d810aacd89aaed4756618250d3df3739516fda551847d01a705a57cf250e1c", + "tx_hash": "85a852563d5afa55ea5b9b03d3ad3910dff4fa778937b152c02349f998af12ab", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -3578,20 +3578,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730115921, + "block_time": 1730137790, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "652fa348e445bedc79af7c8da7e9edd116fc6586bb2896968234ade2b0de91c4", + "tx_hash": "e71c6886b8fb7827f156ba7baf8343a37f485ece9a8bbb6ecb78f8258a174502", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -3606,20 +3606,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730115918, + "block_time": 1730137787, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "a9640b7ef998e1287a94371074ed8dd399613638ecb6a9c1a406fd5ce29727e0", + "tx_hash": "28cc682041280cb3872d5c474d5c57f96e893560bee0b27d4897aa1a9c78b49f", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -3634,20 +3634,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730115914, + "block_time": 1730137783, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "3b8ccc6e7a34c3d602643f13d9ce884ecd2831847f6eab4961146b4a71491ad1", + "tx_hash": "ebfc77b81609b17ccbf9d4d14958cd6d02120a51d78be679e62f242b8336a9bb", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -3662,7 +3662,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730115900, + "block_time": 1730137779, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3676,8 +3676,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 100000000000, @@ -3685,16 +3685,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730116077, - "last_issuance_block_time": 1730116077, + "first_issuance_block_time": 1730137948, + "last_issuance_block_time": 1730137948, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 10000000000, @@ -3702,16 +3702,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730115900, - "last_issuance_block_time": 1730115918, + "first_issuance_block_time": 1730137779, + "last_issuance_block_time": 1730137787, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 100000000000, @@ -3719,16 +3719,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730115851, - "last_issuance_block_time": 1730115851, + "first_issuance_block_time": 1730137739, + "last_issuance_block_time": 1730137739, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 40, @@ -3736,16 +3736,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730115804, - "last_issuance_block_time": 1730115808, + "first_issuance_block_time": 1730137679, + "last_issuance_block_time": 1730137683, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 19, @@ -3753,8 +3753,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730115789, - "last_issuance_block_time": 1730115800, + "first_issuance_block_time": 1730137663, + "last_issuance_block_time": 1730137675, "supply_normalized": "0.00000019" } ], @@ -3767,8 +3767,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 100000000000, @@ -3776,16 +3776,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730116077, - "last_issuance_block_time": 1730116077, + "first_issuance_block_time": 1730137948, + "last_issuance_block_time": 1730137948, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 10000000000, @@ -3793,16 +3793,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730115900, - "last_issuance_block_time": 1730115918, + "first_issuance_block_time": 1730137779, + "last_issuance_block_time": 1730137787, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 100000000000, @@ -3810,16 +3810,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730115851, - "last_issuance_block_time": 1730115851, + "first_issuance_block_time": 1730137739, + "last_issuance_block_time": 1730137739, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 40, @@ -3827,16 +3827,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730115804, - "last_issuance_block_time": 1730115808, + "first_issuance_block_time": 1730137679, + "last_issuance_block_time": 1730137683, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 19, @@ -3844,8 +3844,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730115789, - "last_issuance_block_time": 1730115800, + "first_issuance_block_time": 1730137663, + "last_issuance_block_time": 1730137675, "supply_normalized": "0.00000019" } ], @@ -3858,8 +3858,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 100000000000, @@ -3867,16 +3867,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730116077, - "last_issuance_block_time": 1730116077, + "first_issuance_block_time": 1730137948, + "last_issuance_block_time": 1730137948, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 10000000000, @@ -3884,16 +3884,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730115900, - "last_issuance_block_time": 1730115918, + "first_issuance_block_time": 1730137779, + "last_issuance_block_time": 1730137787, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 100000000000, @@ -3901,16 +3901,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730115851, - "last_issuance_block_time": 1730115851, + "first_issuance_block_time": 1730137739, + "last_issuance_block_time": 1730137739, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 40, @@ -3918,16 +3918,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730115804, - "last_issuance_block_time": 1730115808, + "first_issuance_block_time": 1730137679, + "last_issuance_block_time": 1730137683, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 19, @@ -3935,8 +3935,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730115789, - "last_issuance_block_time": 1730115800, + "first_issuance_block_time": 1730137663, + "last_issuance_block_time": 1730137675, "supply_normalized": "0.00000019" } ], @@ -3947,17 +3947,17 @@ "result": [ { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", - "block_time": 1730116110, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "70ba7089afff84e271f6e7d5e9c822765acfd2cb6166952a11578079921a3ca2", + "block_time": 1730137979, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "utxos_info": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3993,17 +3993,17 @@ }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "block_index": 204, - "block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", - "block_time": 1730116099, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "4c5f743ed9f3ae253966764308f1f689ea24b51c803ea2aaed438e8fbd572359", + "block_time": 1730137968, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a548b4d7c3faa3572780aa9b629ef0fab1613ce480d366a43686c88a15c961c4f50af139cd1494420680eea22e429f2e4b5aa6b8e2c872ea3e8dbbc6c8dc40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5:0", + "utxos_info": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4011,14 +4011,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -4026,7 +4026,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4045,17 +4045,17 @@ }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409", "block_index": 203, - "block_hash": "37274251a093028e8065cbc9af85901d3961a9e5e04f4e726b13a0506a915652", - "block_time": 1730116095, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "0ae8bfe00469c56b2bc9f99bb596569e6c93bbf649cb8684861e6f6c7f63a275", + "block_time": 1730137955, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a548b4d7c3faa3572780aa9b629ef0fab1613ce480d366a43686c88a15c961c4f50af139cd1494420680eea22e429f2e4b5aa6b8e2c872ea3e8dbbc6c8dc88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354:0", + "utxos_info": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4063,14 +4063,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -4078,7 +4078,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4097,17 +4097,17 @@ }, { "tx_index": 69, - "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "tx_hash": "315c6064b2897e22ff0c1467169f516d2d30571587f022e17fdde9e4f0eac872", "block_index": 202, - "block_hash": "13a7856636590644ca049ed5074ccb96a6b9694cf0a3187ec4d3b50111b76353", - "block_time": 1730116081, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "3e8cff051c937ae2569ee4e4e492971b053ac98ded5dcba9c8141a9fe4e3df41", + "block_time": 1730137952, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880a500a0204b6c11d32ab0bd14b78f9db630019898", + "data": "02000000178d82231300000000000003e880a548b4d7c3faa3572780aa9b629ef0fab1613ce4", "supported": true, - "utxos_info": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02:1", + "utxos_info": "315c6064b2897e22ff0c1467169f516d2d30571587f022e17fdde9e4f0eac872:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4115,12 +4115,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -4131,17 +4131,17 @@ }, { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23", "block_index": 201, - "block_hash": "31229cfb58723faf819c8772e47a52c5cc4c531fdef4370ba12b94679b292486", - "block_time": 1730116077, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "529199633ca464551a80098423c0eb3d93a774b1dbd52955ff9ae385228b4563", + "block_time": 1730137948, + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc:1", + "utxos_info": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4172,20 +4172,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "751e21b82410acd34989da9ec113ea38677f8352c49fb6ab389e95f8869bb68f", "block_index": 154, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730115885, + "block_time": 1730137763, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -4207,9 +4207,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx_hash": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092", "block_index": 184, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4224,7 +4224,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730115936, + "block_time": 1730137805, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4250,9 +4250,9 @@ }, { "tx_index": 51, - "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4267,7 +4267,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730116110, + "block_time": 1730137979, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4293,9 +4293,9 @@ }, { "tx_index": 57, - "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "tx_hash": "697d9fe9bf571bc39676614a50f1490b53a0ee0b8b20776717636fe7ad5bb762", "block_index": 192, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4310,7 +4310,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730116037, + "block_time": 1730137911, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4336,9 +4336,9 @@ }, { "tx_index": 59, - "tx_hash": "9d6f69deab8decbb02e247c2a2e19611f0931fb91c9bd48d5dad2bfae5328ffe", + "tx_hash": "347387317119572ec5cd0ff178a3530caee267541f5e02c90750835cd176720a", "block_index": 193, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4353,7 +4353,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116041, + "block_time": 1730137914, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4379,9 +4379,9 @@ }, { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4396,7 +4396,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116110, + "block_time": 1730137979, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4427,10 +4427,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_hash": "45e530d40405ac9ef1d3be5efa3f3c14d0c4639cebdb66e29c3df26c9f349b33", "tx_index": 42, "block_index": 155, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4455,7 +4455,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730115889, + "block_time": 1730137766, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4464,10 +4464,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "tx_hash": "eadb025b64eec283ac9b50d8a861a332a325a0ef61b6e07e7458764b93b6020d", "tx_index": 22, "block_index": 135, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4492,7 +4492,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730115804, + "block_time": 1730137679, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4504,10 +4504,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "tx_hash": "13f2fc25ddd421978de8952f8cac7c2b08340f7331c519cb81df5b06fe433563", "tx_index": 18, "block_index": 131, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4532,7 +4532,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730115789, + "block_time": 1730137663, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4544,10 +4544,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", + "tx_hash": "6d64fafd67d16f229b872eef0a3dbe7296592188ed54a6cca955229900a159a6", "tx_index": 14, "block_index": 130, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4572,7 +4572,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730115785, + "block_time": 1730137659, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4584,10 +4584,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "tx_hash": "07c8c88a0d58b2c951166e33ea8752a2cd1c5e5dbcd16e1eab605ebd95158953", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4612,7 +4612,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730115766, + "block_time": 1730137640, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4630,22 +4630,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "2bf6f021e416ac68ff5f5776a8eddaebc2476fbc2754eb3779728e2029a3cee5", "tx_index": 23, "block_index": 136, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "eadb025b64eec283ac9b50d8a861a332a325a0ef61b6e07e7458764b93b6020d", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115808, + "block_time": 1730137683, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -4654,22 +4654,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "5da24fdc5b0f42414404df0110e4a3cd79789b5706be7b301d976f9eef623346", + "tx_hash": "d330faa610c5df11643cb18905cabc444da8d9cee67b5bad57295870604b42a9", "tx_index": 21, "block_index": 134, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "13f2fc25ddd421978de8952f8cac7c2b08340f7331c519cb81df5b06fe433563", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115800, + "block_time": 1730137675, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -4678,22 +4678,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "98840296af69b519b38aaa9663baa393849683e67da07ce11e4aa21df9259e2f", + "tx_hash": "ef10a55d23b24b9ac096dde81a12ab978e7fcead3a9ee74ab78af5a0715ffef7", "tx_index": 20, "block_index": 133, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "13f2fc25ddd421978de8952f8cac7c2b08340f7331c519cb81df5b06fe433563", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115797, + "block_time": 1730137671, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -4702,22 +4702,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "e26754ee3f011a743d3bd45d712d1fe4056c4b4f657f391b5d06c33191fe01d3", + "tx_hash": "befb90151b6b30ce9c50efd64fe22f86743242082625aa5878ade6f99b969054", "tx_index": 19, "block_index": 132, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "13f2fc25ddd421978de8952f8cac7c2b08340f7331c519cb81df5b06fe433563", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115793, + "block_time": 1730137667, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -4726,22 +4726,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "def4759ea9104304f15b30965786c66cdc8cfb7a6029cdc08a336d6306c065ab", + "tx_hash": "a5ef7944668386b354a8c3a6ee64627bc8f88fd838a0eee646195d22afa835e2", "tx_index": 15, "block_index": 127, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "6d64fafd67d16f229b872eef0a3dbe7296592188ed54a6cca955229900a159a6", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115774, + "block_time": 1730137648, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -4750,22 +4750,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_hash": "6f72bfe95700ba63c9ee4ecd95075759316a96a9b9245a3fb59d152bc26ff573", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "07c8c88a0d58b2c951166e33ea8752a2cd1c5e5dbcd16e1eab605ebd95158953", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115757, + "block_time": 1730137633, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -4780,22 +4780,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_hash": "6f72bfe95700ba63c9ee4ecd95075759316a96a9b9245a3fb59d152bc26ff573", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "07c8c88a0d58b2c951166e33ea8752a2cd1c5e5dbcd16e1eab605ebd95158953", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115757, + "block_time": 1730137633, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -4813,7 +4813,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4825,7 +4825,7 @@ "btc_out": 0, "btc_change": 4999985142, "btc_fee": 14858, - "rawtransaction": "02000000000101d3e144ab2332715d931607f1ecb24833c4b9a45585fe12f43332f7c73a129bf60000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff0200000000000000002b6a291d58000c120f53e521b5b05fb0e87895087ccf3efe597674c5aa3f7ccf38911c75cc5b8d24700ddac0f6b7052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101190d3e75876c6e75c94b2550b3b7dc13ac6df10ae992cdca1789f99c2748282d00000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff0200000000000000002b6a2956570410f281244057886202a327f842eece8db6b3ce97922a94595fc38563bea778a3e2d9f9fdbce3f6b7052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4843,23 +4843,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614" + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "order_match_id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483" }, "name": "btcpay", - "data": "434e5452505254590ba70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b50903810560268783a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "data": "434e5452505254590b85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d07f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978090, "btc_fee": 18910, - "rawtransaction": "02000000000101bd9316eab33fabb206193f04c3c50ab13a8abd6216de19a6c0961f00d3d615420000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff03b80b00000000000016001488638b12211ad2887d7013cdfa98b822eb7f220a00000000000000004b6a49f046fc5a1959206e926f59e82227fd923cabe7e968af1baad5abb587a412e4c8df215b2a2d9a5b3503ce52fdb5848339aa656b6f74c228373ce1809d813ad9cf4c41d5f20f2739395c6a9c052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "0200000000010151f2b066c9634e2c382e1327225a0107814459b3c42337d7ebd7cf63ddbbee3d00000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff03b80b000000000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90700000000000000004b6a49087ea24c81d149c75328117a3c3eebc4d8fe2a1db26460b5cec76e45abc2bbe1bbe699f09e2b523f19bd633d60c32128f94099deeeecbb8b447c9ae0c235f235553e488e9ee56487aa6a9c052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx0_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "tx1_hash": "7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", + "order_match_id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "status": "valid" } } @@ -4868,7 +4868,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "quantity": 1000, "overburn": false }, @@ -4878,27 +4878,27 @@ "btc_out": 1000, "btc_change": 4999985186, "btc_fee": 13814, - "rawtransaction": "02000000000101abf65b20ebfd1237da0f36f872c79db358b4cfbf1297b2ed7848fce5a7d985270000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac22b8052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000" + "rawtransaction": "02000000000101e5ec6730a9727a77aa29fd12cff72c82226ec9411860d68cfb7f63d2f3660b9000000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac22b8052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "offer_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8" + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "offer_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0" }, "name": "cancel", - "data": "434e545250525459465debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "data": "434e54525052545946f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985142, "btc_fee": 14858, - "rawtransaction": "02000000000101ea75efdc042b5696d84822dc36cd87c7fd9a0b28512b49461245667b61127bfa0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff0200000000000000002b6a29a3e663a2f9bd00bb0c85b9c374325d5573e86694ddb726062f8c530213552021c46ead41917b6938b4f6b7052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101e040bc967dbe155460784ab75c7cb3dba159eccfa1c450cd3dd811557e99924d00000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff0200000000000000002b6a2944f16c81495b3eecece50ac0bfb1aa26b65669f872439eb33d03c1ede129604da180875c21da739897f6b7052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "offer_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "status": "valid" } } @@ -4907,7 +4907,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4926,7 +4926,7 @@ "btc_out": 0, "btc_change": 4999985695, "btc_fee": 14305, - "rawtransaction": "02000000000101a452400ddde4da92b3635c69a88b5cd73e6f5351b1035de6c8acb68e8350e3540000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000226a204361a4695fd456d2d053a108447b7a62d60471b989b415d7824044331a550ada1fba052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101e28525e2c2457013bce6a0b3e272873a4f9bc128d797e2b449544ec8b14212da00000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff020000000000000000226a20bfada39da07cac83fc3cc65aba8af4ebad8476ce1418eeb5acf619b7ff1e1db41fba052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4942,7 +4942,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4966,7 +4966,7 @@ "btc_out": 0, "btc_change": 4949919581, "btc_fee": 14919, - "rawtransaction": "020000000001016182673802383c3dfbeed7dd1749f3b498f8e584fcfd406a5aa17b002ee7904b01000000160014fbcc5565cd7f2a35258ef40d6637506f0ce99fdbffffffff0200000000000000002c6a2a8c143ec5258db11ef95b2578f1c394ce761046911caf5c5472be4f258d5a148a45eb9d2e0476dbc475545dc7092701000000160014fbcc5565cd7f2a35258ef40d6637506f0ce99fdb02000000000000", + "rawtransaction": "02000000000101116549c7388fe54e5d4dae3b3651a06bf75ea76128a84ed653e11abc1ecc1905010000001600149e4026abe8eb6904f76fc99744eb269d04b4589effffffff0200000000000000002c6a2a91d411d98430b52b6acb88e22dfda26a4303ee6cebe21f868a082b864fd0094c731845436e842ba171d15dc70927010000001600149e4026abe8eb6904f76fc99744eb269d04b4589e02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4988,14 +4988,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -5014,7 +5014,7 @@ "btc_out": 0, "btc_change": 4999985634, "btc_fee": 14366, - "rawtransaction": "02000000000101d735a5a97da67446f40bb375c7bacff7ae44897f7b357a5bcef9d70280dfc6110000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000236a21a03fcd9fc46bcb4f3bf7ff58bc4a0eb125a43d3a551f7e1ceb32b36b7143d5bd87e2b9052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "0200000000010195418a96570cfa05b8b7ed72f69b49316e47b8dc9b69f785a5138eecab85832900000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff020000000000000000236a2174f98470dbd1b3802571c576b79cd0c447f8066d32e17225130f72eb66e5e3b2c2e2b9052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5031,10 +5031,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "transfer_destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "lock": false, "reset": false, @@ -5047,7 +5047,7 @@ "btc_out": 546, "btc_change": 4999983000, "btc_fee": 16454, - "rawtransaction": "020000000001013eb5a26d5fe5337ccfca78b68a43f9933a7ad20e3127554d960f6ff708c487d60000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff03220200000000000016001488638b12211ad2887d7013cdfa98b822eb7f220a0000000000000000236a21d1ca33cf4433fd66e117d12625616dc906928c7356b7202b8c38c6ece5cbbbf61a98af052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101283a5593ed3dc7c562f2bcf2fa2488563c7ca7a38adc197f7ffe59e8188557b000000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff032202000000000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df9070000000000000000236a215db4a76aee4e7b3c3dfb26c271da430642fcdba1dfdb0250910062ae7302acd37798af052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5072,16 +5072,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", 1 ], [ "MPMASSET", - "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", 2 ] ], @@ -5089,26 +5089,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e5452505254590300028088638b12211ad2887d7013cdfa98b822eb7f220a80a500a0204b6c11d32ab0bd14b78f9db63001989840000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280a8392a7ee1ff27fa75740f0b5c3119b09a4df90780a548b4d7c3faa3572780aa9b629ef0fab1613ce440000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999942989, "btc_fee": 55011, - "rawtransaction": "02000000000104c60cba2e8009b89a27f98afd970336d060fb80cc1169f8a9f26dd7ac5b8a7dfd0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff5cb37ed728a1783f00f380c510ff2108bf6796927d3302395641738997881b710000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff9cc56b3a54bde5e0b7fb83800bc84036f16ee99aeac4491de704b7f8f794c1a10000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff0f4711f98d37387476a466b7bf6964c28d870c7e940e1b02fb5795820960299e0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff03e8030000000000006951210338a7e3de6a76681a888a478f9c669e7a9f638cd384e2edf836ebd2f34158440e2103693a6379fc9675f11c9f519d3a54269240404cbe3f914fe22bb420c10df54ded2103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553aee8030000000000006951210327a7e3de6a76681a8859478d1ceefdf18d6696010c9f9debfb154a4b63b33b5221034b30e2dcfc3655ba708e82b78ae93225cfddfa8e3e09d7a22bb425226d7d89f12103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553ae4de916a80400000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000002000002000002000000000000", + "rawtransaction": "02000000000104dd306b8ce230c7b341847db7b3aa3257d6e9bbd10a50107b084caf72a15e10e700000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff41de21e760352426c678c2281480b763d0010178f8cf7bc8c958c2645d31ee5a00000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff6449bf21b39876242933cb41cbf51a055dbd7c8bfea564984b8deda5506e340f00000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff17793b3e139631db8f7ee750df46c2fe52d1566914b6add306c16bcef8e690c000000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff03e8030000000000006951210357c7d57e92af060b82058cfbd0a8c172bb555ec5f22598675f599f0f4e614910210299f15886427e67a81b4d0750f12097d938beb0d7336c9b9877314f9eb984adbc2103f34cec8b12ed0ecb49aac11f3a6b5c323c2d435491d7c9d300ebb7298ea2b35d53aee8030000000000006951210248c7d57e92af060b82d68cf95000f858c590a1e20850ec685401ae16fefb0407210360f6d9230acab06be1ee5077718a0cbba64e4a6652507fd877314a7dd90c690e2103f34cec8b12ed0ecb49aac11f3a6b5c323c2d435491d7c9d300ebb7298ea2b35d53ae4de916a804000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5120,7 +5120,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5137,7 +5137,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -5151,7 +5151,7 @@ "btc_out": 0, "btc_change": 4999984528, "btc_fee": 15472, - "rawtransaction": "02000000000101cf575d97277fbc0b3f884b49e7c0b8287ba8e0b4e5f4dd7e2d6e426502f4452c0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000356a334de8b15032fed03ecbb040c19ca15f53586192377670b513f6408556e6dd4e76a713c1550120fe9b40cb4140fa22d0446a03d390b5052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101fff5447874ed6cfe93bc8aa099068b877ef2eb06b3cf35fbb98303af4a79396000000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff020000000000000000356a33f668eafca02deed548fdd9918468900fce7e800d7c26d848ddc51f602f24de95cb1c5276038b786f73583bd35a0d87b7f7c25190b5052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5173,8 +5173,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5190,19 +5190,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880a500a0204b6c11d32ab0bd14b78f9db630019898", + "data": "434e54525052545902000000000000000100000000000003e880a548b4d7c3faa3572780aa9b629ef0fab1613ce4", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999984835, "btc_fee": 15165, - "rawtransaction": "020000000001019ed53bd0e7ff6981feb1b27c9556b9db3413d2a67ea7b8f2616a14fa73ed02d90000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000306a2ebe40c06091cfd95dd61d68e73ae5e96d8e96410698a8db380780e7d7268fe30fd5756bc9e8c2e4f3649989e08364c3b6052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "020000000001016a63ae2ca0a1afac837365603d28f6a91f2647ad9c0675e6fc61c63d48ee54a400000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff020000000000000000306a2e96b0d68e7f918ff3498d8a75e3582d1bf1ccc3d0a2edd3846571b100d787f476ad00e00a28fbf6084f940becfdb3c3b6052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "memo": null, "quantity_normalized": "0.00001000" } @@ -5212,23 +5212,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480a500a0204b6c11d32ab0bd14b78f9db63001989807ffff", + "data": "434e5452505254590480a548b4d7c3faa3572780aa9b629ef0fab1613ce407ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985634, "btc_fee": 14366, - "rawtransaction": "02000000000101c7c9854253dc41c3edd654589b82ee42a8a8d6a0c5a578062b89c4b876f2e14d0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000236a219323e5b3f1b8081e81abc14abc27d4b631b6398c37296f72874455fe3f7372918ae2b9052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101d901a93036e87d75512f7c4c41c918cc1f2e8ba677220a741b9335c8862a682e00000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff020000000000000000236a211e1d85fbe1cd4976a7a556242236e03cc1bf3ef60516a829a122c817765b432863e2b9052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "flags": 7, "memo": "ffff" } @@ -5238,8 +5238,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "quantity": 1000 }, "name": "dispense", @@ -5248,7 +5248,7 @@ "btc_out": 1000, "btc_change": 4949811958, "btc_fee": 15042, - "rawtransaction": "0200000000010157826d7417826b89717d2b03e0b6b7151d49cb2661b13212aa8064fe0194a77a03000000160014a500a0204b6c11d32ab0bd14b78f9db630019898ffffffff03e8030000000000001600142ae165e7b04a97caa52d91a46d89891d704370ff00000000000000000c6a0a24ebcd38485c9b2a0013f622082701000000160014a500a0204b6c11d32ab0bd14b78f9db63001989802000000000000", + "rawtransaction": "020000000001016faaad01f905785c4eece68fa7b575f28eaf98eddd4286cefe97c26ef132b9ff03000000160014a548b4d7c3faa3572780aa9b629ef0fab1613ce4ffffffff03e803000000000000160014eea22e429f2e4b5aa6b8e2c872ea3e8dbbc6c8dc00000000000000000c6a0afe07434d9143d04cf82ff622082701000000160014a548b4d7c3faa3572780aa9b629ef0fab1613ce402000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5261,7 +5261,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5292,7 +5292,7 @@ "btc_out": 0, "btc_change": 4999984774, "btc_fee": 15226, - "rawtransaction": "02000000000101c79e70d7c5ad9665ae957326d1dc832f162bc8f91fc08508a7aefd8decaffd230000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000316a2fdfa88a71933c8839247123e96b0a8bdb6b9d82d36ae6ade916ef886e41d9c0ec79824a742e64b47c3d995a7267e06986b6052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101d125f060bed470b97468b583ce6b7de27c161d76fac54e52357fbb400070868700000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff020000000000000000316a2f418303fc89a8b30278fe8ae673d47422e10ee8c2eff753193694bc6c06585669ac098f03c7c1b21c06aadf1766e8c486b6052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5327,13 +5327,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -5345,7 +5345,7 @@ "btc_out": 0, "btc_change": 4999986432, "btc_fee": 13568, - "rawtransaction": "020000000001017c64134589fec8915924dac30e82978fbd8537ab6caac5007618953859f6d0be0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000166a14be1d5b0358bbdd865615c155e83dfbe0f763564000bd052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "0200000000010183f5d22a9fc4c35bc79d5dce61d38a28430f9c56018945de7661c1f82bd53b5400000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff020000000000000000166a1492fe42fc7a475c6377374722ffba81a183b50dc000bd052a01000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5360,8 +5360,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5374,12 +5374,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171337033636b79337072746667736c74737a30786c347839637974346837677332706674647a727c356465626162326539366432356635663532613662653066626366363533613038623338333239386236663135336332306237356164653432626135626261383a317c5843507c31303030", + "data": "434e545250525459646263727431713471756a356c68706c756e6c3561743570753934637667656b7a64796d3767387667706664637c663032363335616663346133666136613361653931303435373665383630303833643236313933383334303634376162353932323234373837333465666563303a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999914790, "btc_fee": 82210, - "rawtransaction": "02000000000106ccc2aca722ded998449d59d7ed65df1ffc201fca9873209432c035e327dbbf980000000016001488638b12211ad2887d7013cdfa98b822eb7f220afffffffff14198fceb8a1347a752edee8a1477d3779c0bd7b03fc4bed4512f0223b17ee50000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff8c2cefa9f81e31d2f5260a72f968a6a38923fad3cdfd2ce15b00e722f5ea9d1a0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffffbee94a0365aaaba05f7f1e7cc8da517c430b3df96dc44a2e5148f46d0fc8c3920000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff1816fcbb08b784d42ce93b687fdc9248c0bb2c6319f18521b506ad7d4a98fd480000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff052b2b309bd984a5d88ce3c9f0e82c5513cfb0117d7fba088957e06d5136eb460000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff04e8030000000000006951210374b391adbe520df76abe10c17a35f73315c1bd9be2f07d7d6752ca726570ec6121037bc277b82f1a939ab105b243286840d4e72d3a04eccd75004f164e2b8767328d2103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553aee8030000000000006951210274b391adbe520df76abf4b946c73f32413d7bbcae8bf2c682540ce76702aad9e21033bd977f8211dd390e045fe1576391692e63e6e40ea80321d1e171f7b846435a12103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553aee803000000000000695121035eb391adbe520df76ab810c3307bf73e7ef2de84b8b97e3d1526ac15161c9826210208b847c0432eeba3d27cc677405f27a7d55d5c7088b7077c7a722b49e60500952103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553ae265f22fc0600000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000002000002000002000002000002000000000000", + "rawtransaction": "020000000001063b497cd423f64cbf086745ab93d5aed19cbf003d3a9356cfb6cc13c77f1a1a6300000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffffb5af5ce6ee5405d0a4d80a06feea9eb1bfd53651459c2b45cb1c53dca7d3664000000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffffe2cae7455c4cf50e506d1dfdbe7fbbac46d2a7a2abd4414d78c13fc7ab04fff900000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff547202965e94316e86af7d3ae2da7da640ee150525c02e6dc38aaf46902b7ccb00000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffffe75c48b7dabe83821f6781e0bbd85722688b36a080a76ca285c4f75673ee010300000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff1958e0bf20901d283b187368a4d0034de687fb3dff1dcf082b8bb859e73bf58a00000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df907ffffffff04e80300000000000069512102b12fa8acb201615bf826655240e29fe55cb0364ca5c97014894c8055816cbebb210324b798d879140f1ff90014898d22f0f88693ee0960607a1fd2331e8f3ba0c1222103f34cec8b12ed0ecb49aac11f3a6b5c323c2d435491d7c9d300ebb7298ea2b35d53aee80300000000000069512102b12fa8acb201615bf824640553a5c8f55ea07047f59c2954d10cd90fd135fc65210321f7d5d229454f49a55856dec07ff1ab8984eb4c3f362b518034148e3ba1c5502103f34cec8b12ed0ecb49aac11f3a6b5c323c2d435491d7c9d300ebb7298ea2b35d53aee803000000000000695121029b2fa8acb201615bf824625202ac9fe83082135aa1952854e539ee39b40dcaad210311c7ede14d7779789c6b6eedf44fc79fbee5897906041963b4032cb90895a0932103f34cec8b12ed0ecb49aac11f3a6b5c323c2d435491d7c9d300ebb7298ea2b35d53ae265f22fc06000000160014a8392a7ee1ff27fa75740f0b5c3119b09a4df90702000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5392,8 +5392,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5406,12 +5406,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964373930633033373533623864333063326634363431393835616637396538633566666135383431633834343761376463396566346333666132316634626166383a307c626372743171337033636b79337072746667736c74737a30786c347839637974346837677332706674647a727c5843507c31303030", + "data": "434e54525052545964356666616432306162343965303538656565376561343036656134316437383932636564376632313434623335613362613136393162613766623264623839373a307c6263727431713471756a356c68706c756e6c3561743570753934637667656b7a64796d3767387667706664637c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950028128, "btc_fee": 48872, - "rawtransaction": "02000000000103800dc6faffbce0f8de654c2c591a32293ab5d576ca6f5b9557fc8bf479baad0201000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e1ffffffff9334508606a39f9c29ed55dd1dd1289168342407aa97b6e5608c19377c1fee2000000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e1ffffffff7615312ced3fa25183d8cd654833e6e1d1595a0ebcdbe6957fa6a0449b57496201000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e1ffffffff04e803000000000000695121037535204461c50e0ec922545f777754f1e842928e3474efba5b213259f1e2643d2103b5bb5075cac0fc5ca4254da8744888c9eb70a87155638ae3cd8a0add587a64972103a5aa4d46065ce4a08c9ef90270ed78d57213c383f35d84424771c41fe83a132653aee803000000000000695121037535204461c50e0ec9255000262655a4eb15c08a342aecf65a702619f6a766da2102fcb0067fd5c4b54be8201fbd7e5dce8bef39a77d196edefb8eda01d35a6f62e72103a5aa4d46065ce4a08c9ef90270ed78d57213c383f35d84424771c41fe83a132653aee803000000000000695121035f35204461c50e0ec9360512236e16be8734f1903d20ecba3813546dc7d655b421028c836514acf7c5399c4678ce1229bdf1df41cb496157bd82faee69e43d1c50a82103a5aa4d46065ce4a08c9ef90270ed78d57213c383f35d84424771c41fe83a132653ae606f0b2701000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e102000002000002000000000000", + "rawtransaction": "020000000001038d1609ceea0d3ab7764e3a869053cbdf156a4cfc74c70cb42f93a50e85cd673501000000160014b0ffc155367a55fd45223389eb27cc866c81e132fffffffff092eeee5223f7c6d70c463d529e4c7882a1cd1683ec3c2c6f4464071b4e493300000000160014b0ffc155367a55fd45223389eb27cc866c81e132ffffffffa3c01cf2bf28033b14391064f9caaa9557ef3672ee97ba4123b838a90ba1da3201000000160014b0ffc155367a55fd45223389eb27cc866c81e132ffffffff04e80300000000000069512103bc1b5db09376985087219eb67c937acd3a52aa63c34f1bac051a2cba0876a89f2103b6b529ce47220f1ad1544d14232e9e683c3b8db790548d24ac81d9ce904c230421033a20c38c145a62543fafc7fe49ecf0d8c71a8f0a93103c8c0646718d11e8c01253aee80300000000000069512103bc1b5db0937698508774c9b12d947ccd6e51f06ecd101be55f1c3bab0e62fdeb2102f3f0759e4a7e4e1293021813213fcf2f2f3088e0d251db7ab7d6c2c2961d22f721033a20c38c145a62543fafc7fe49ecf0d8c71a8f0a93103c8c0646718d11e8c01253aee80300000000000069512102961b5db0937698508733cca07c967d835270982bcb1a1ba93d7f49df3f13c923210382851fab26163e7ee66c7426404bfa5f5a09bc83a436be11cdb2bbafa17a1a9b21033a20c38c145a62543fafc7fe49ecf0d8c71a8f0a93103c8c0646718d11e8c01253ae606f0b2701000000160014b0ffc155367a55fd45223389eb27cc866c81e13202000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5427,8 +5427,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 100000000000, @@ -5436,16 +5436,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730116077, - "last_issuance_block_time": 1730116077, + "first_issuance_block_time": 1730137948, + "last_issuance_block_time": 1730137948, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", - "owner": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "issuer": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m", + "owner": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m", "divisible": true, "locked": false, "supply": 100000000000, @@ -5453,16 +5453,16 @@ "first_issuance_block_index": 198, "last_issuance_block_index": 198, "confirmed": true, - "first_issuance_block_time": 1730116060, - "last_issuance_block_time": 1730116060, + "first_issuance_block_time": 1730137933, + "last_issuance_block_time": 1730137933, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 10000000000, @@ -5470,16 +5470,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730115900, - "last_issuance_block_time": 1730115918, + "first_issuance_block_time": 1730137779, + "last_issuance_block_time": 1730137787, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "owner": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "issuer": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", + "owner": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "divisible": true, "locked": false, "supply": 100000000000, @@ -5487,16 +5487,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730115896, - "last_issuance_block_time": 1730115896, + "first_issuance_block_time": 1730137775, + "last_issuance_block_time": 1730137775, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 100000000000, @@ -5504,8 +5504,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730115851, - "last_issuance_block_time": 1730115851, + "first_issuance_block_time": 1730137739, + "last_issuance_block_time": 1730137739, "supply_normalized": "1000.00000000" } ], @@ -5517,8 +5517,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "owner": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false, "supply": 10000000000, @@ -5526,15 +5526,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730115754, - "last_issuance_block_time": 1730115766, + "first_issuance_block_time": 1730137630, + "last_issuance_block_time": 1730137640, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5542,14 +5542,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5557,7 +5557,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -5570,7 +5570,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -5592,9 +5592,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx_hash": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092", "block_index": 184, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5609,7 +5609,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730115936, + "block_time": 1730137805, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5635,9 +5635,9 @@ }, { "tx_index": 51, - "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5652,7 +5652,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730116110, + "block_time": 1730137979, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5678,9 +5678,9 @@ }, { "tx_index": 57, - "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "tx_hash": "697d9fe9bf571bc39676614a50f1490b53a0ee0b8b20776717636fe7ad5bb762", "block_index": 192, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5695,7 +5695,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730116037, + "block_time": 1730137911, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5721,9 +5721,9 @@ }, { "tx_index": 59, - "tx_hash": "9d6f69deab8decbb02e247c2a2e19611f0931fb91c9bd48d5dad2bfae5328ffe", + "tx_hash": "347387317119572ec5cd0ff178a3530caee267541f5e02c90750835cd176720a", "block_index": 193, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5738,7 +5738,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116041, + "block_time": 1730137914, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5764,9 +5764,9 @@ }, { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5781,7 +5781,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116110, + "block_time": 1730137979, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5812,13 +5812,13 @@ "/v2/assets//matches": { "result": [ { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 54, - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", - "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "tx1_hash": "7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", + "tx1_address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5832,7 +5832,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730116023, + "block_time": 1730137896, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5852,13 +5852,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 52, - "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", + "tx1_address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5872,7 +5872,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730116019, + "block_time": 1730137893, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5892,13 +5892,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "id": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092_c1575db45cd83abcffebd4c99d8f3559be17e5dac7243236e5f1880313accca5", "tx0_index": 49, - "tx0_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 50, - "tx1_hash": "6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "c1575db45cd83abcffebd4c99d8f3559be17e5dac7243236e5f1880313accca5", + "tx1_address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5912,7 +5912,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730115936, + "block_time": 1730137805, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5939,20 +5939,20 @@ "result": [ { "block_index": 194, - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "event": "e8d7da48b9ce9e612be4e1f2e60d819f89facd419df15b19825c2b1788dfbacd", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116045, + "block_time": 1730137917, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -5960,20 +5960,20 @@ }, { "block_index": 125, - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "633a29ddd1d5f12a25cad17061eaf217c3d3255f32284361eec6745ecebb5d8b", + "event": "505f34698eac95f4789603ab4d531fb8b50527412db05efd1791fc4558b5259d", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730115766, + "block_time": 1730137640, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -5981,20 +5981,20 @@ }, { "block_index": 124, - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", + "event": "3a17766db55e3c55598371c8a5dfb1451de8c1036d46d44afc33eaabd0747fcc", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730115762, + "block_time": 1730137636, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -6002,20 +6002,20 @@ }, { "block_index": 124, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "event": "6f72bfe95700ba63c9ee4ecd95075759316a96a9b9245a3fb59d152bc26ff573", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730115762, + "block_time": 1730137636, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -6027,16 +6027,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", + "event": "3a17766db55e3c55598371c8a5dfb1451de8c1036d46d44afc33eaabd0747fcc", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730115762, + "block_time": 1730137636, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -6054,12 +6054,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "utxo": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "utxo_address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -6071,16 +6071,16 @@ }, { "block_index": 207, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "event": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116110, + "block_time": 1730137979, "asset_info": { "divisible": true, "asset_longname": null, @@ -6092,16 +6092,16 @@ }, { "block_index": 206, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "event": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730137976, "asset_info": { "divisible": true, "asset_longname": null, @@ -6113,16 +6113,16 @@ }, { "block_index": 205, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "event": "1ff0761a97319d2a01ea6914b4c2e6a1f8f6381836ce932c653a8c4815df9cb7", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116102, + "block_time": 1730137973, "asset_info": { "divisible": true, "asset_longname": null, @@ -6134,16 +6134,16 @@ }, { "block_index": 204, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "event": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730137968, "asset_info": { "divisible": true, "asset_longname": null, @@ -6166,14 +6166,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "633a29ddd1d5f12a25cad17061eaf217c3d3255f32284361eec6745ecebb5d8b", + "tx_hash": "505f34698eac95f4789603ab4d531fb8b50527412db05efd1791fc4558b5259d", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -6188,20 +6188,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730115766, + "block_time": 1730137640, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", + "tx_hash": "3a17766db55e3c55598371c8a5dfb1451de8c1036d46d44afc33eaabd0747fcc", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -6216,20 +6216,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730115762, + "block_time": 1730137636, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_hash": "6f72bfe95700ba63c9ee4ecd95075759316a96a9b9245a3fb59d152bc26ff573", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -6244,20 +6244,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730115757, + "block_time": 1730137633, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "tx_hash": "07c8c88a0d58b2c951166e33ea8752a2cd1c5e5dbcd16e1eab605ebd95158953", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -6272,7 +6272,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730115754, + "block_time": 1730137630, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6284,10 +6284,10 @@ "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "destination": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6295,7 +6295,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -6308,10 +6308,10 @@ }, { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "block_index": 206, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6319,7 +6319,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730137976, "asset_info": { "divisible": true, "asset_longname": null, @@ -6332,10 +6332,10 @@ }, { "tx_index": 72, - "tx_hash": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "tx_hash": "1ff0761a97319d2a01ea6914b4c2e6a1f8f6381836ce932c653a8c4815df9cb7", "block_index": 205, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6343,7 +6343,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730116102, + "block_time": 1730137973, "asset_info": { "divisible": true, "asset_longname": null, @@ -6356,10 +6356,10 @@ }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "8d3660841e514f273289bc6dcb2dbd15f1286b31de34202fa37d37ccf3783132", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6367,7 +6367,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730137968, "asset_info": { "divisible": true, "asset_longname": null, @@ -6380,10 +6380,10 @@ }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "a646d25d874494fe1aed6c921d6cb846843dc3d9a215a56e13344279dfacb409", "block_index": 203, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6391,7 +6391,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730137955, "asset_info": { "divisible": true, "asset_longname": null, @@ -6410,9 +6410,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6421,7 +6421,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6431,7 +6431,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -6447,9 +6447,9 @@ }, { "tx_index": 29, - "tx_hash": "ccb421515f869082058aa6d0f05423e1c6ce8751d4146c89dee14e26c1c3130b", + "tx_hash": "b99f67e73c446486b352531d70a5147a2412bdab7acdaba08cd93c51f655166d", "block_index": 142, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6458,7 +6458,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "origin": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6468,7 +6468,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115828, + "block_time": 1730137705, "asset_info": { "divisible": true, "asset_longname": null, @@ -6484,9 +6484,9 @@ }, { "tx_index": 30, - "tx_hash": "a809a9c0b667c336b61ce3e892a7f2d80231121804f3f7db594da58d9ded5a52", + "tx_hash": "f1eb75ae9c8f99b5c2562708de555a361d426f74779665cc776feff098698019", "block_index": 150, - "source": "mrTk1ThfTwE2f6PUY5vjkJvga5VgZXf4bk", + "source": "mmMUyxURvPd5MuCnixQbs49A4GK7CvK1JN", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6494,10 +6494,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "73d6215c951c71f26d391d50b72497e72188efc109135e95b1f58a4374c30be0", - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "last_status_tx_hash": "3951d3d276b0caac2bb7c00d102b63163b230b67535dd6a2790d4a8214674b4e", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 0, - "last_status_tx_source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "last_status_tx_source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6505,7 +6505,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115869, + "block_time": 1730137747, "asset_info": { "divisible": true, "asset_longname": null, @@ -6521,18 +6521,18 @@ }, { "tx_index": 33, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6542,7 +6542,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -6563,9 +6563,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6574,7 +6574,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6584,7 +6584,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -6612,7 +6612,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -6620,7 +6620,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6629,7 +6629,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -6637,7 +6637,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6646,7 +6646,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -6654,7 +6654,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6663,7 +6663,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -6678,27 +6678,27 @@ { "tx_index": 75, "dispense_index": 0, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "destination": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6713,7 +6713,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -6727,27 +6727,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "20ee1f7c37198c60e5b697aa072434689128d11ddd55ed299c9fa30686503493", + "tx_hash": "33494e1b0764446f2c3cec8316cda182784c9e523d460cd7c6f72352eeee92f0", "block_index": 147, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "destination": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6762,7 +6762,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730115848, + "block_time": 1730137735, "asset_info": { "divisible": true, "asset_longname": null, @@ -6776,19 +6776,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "69a80e02531ce3205a58f83d468e6564d8d9daf4cbba3c45f3612ab9ac3a2f61", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6796,7 +6796,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6811,7 +6811,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -6825,19 +6825,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "f3e345e80e0ba6371f2e384ce4fe33c5ab5c0ee74d5ddd52cb85774560d040a7", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6845,7 +6845,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6860,7 +6860,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730137696, "asset_info": { "divisible": true, "asset_longname": null, @@ -6883,10 +6883,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "tx_hash": "07c8c88a0d58b2c951166e33ea8752a2cd1c5e5dbcd16e1eab605ebd95158953", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6911,7 +6911,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730115766, + "block_time": 1730137640, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6929,22 +6929,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "633a29ddd1d5f12a25cad17061eaf217c3d3255f32284361eec6745ecebb5d8b", + "tx_hash": "505f34698eac95f4789603ab4d531fb8b50527412db05efd1791fc4558b5259d", "tx_index": 13, "block_index": 125, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", + "fairminter_tx_hash": "07c8c88a0d58b2c951166e33ea8752a2cd1c5e5dbcd16e1eab605ebd95158953", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115766, + "block_time": 1730137640, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -6953,22 +6953,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", + "tx_hash": "3a17766db55e3c55598371c8a5dfb1451de8c1036d46d44afc33eaabd0747fcc", "tx_index": 12, "block_index": 124, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", + "fairminter_tx_hash": "07c8c88a0d58b2c951166e33ea8752a2cd1c5e5dbcd16e1eab605ebd95158953", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115762, + "block_time": 1730137636, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -6977,22 +6977,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_hash": "6f72bfe95700ba63c9ee4ecd95075759316a96a9b9245a3fb59d152bc26ff573", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "07c8c88a0d58b2c951166e33ea8752a2cd1c5e5dbcd16e1eab605ebd95158953", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115757, + "block_time": 1730137633, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -7007,22 +7007,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_hash": "6f72bfe95700ba63c9ee4ecd95075759316a96a9b9245a3fb59d152bc26ff573", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "07c8c88a0d58b2c951166e33ea8752a2cd1c5e5dbcd16e1eab605ebd95158953", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115757, + "block_time": 1730137633, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -7038,9 +7038,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx_hash": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092", "block_index": 184, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7055,7 +7055,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730115936, + "block_time": 1730137805, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7081,9 +7081,9 @@ }, { "tx_index": 52, - "tx_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx_hash": "c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", "block_index": 187, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7098,7 +7098,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730116019, + "block_time": 1730137893, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7124,9 +7124,9 @@ }, { "tx_index": 54, - "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx_hash": "7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "block_index": 188, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7141,7 +7141,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116023, + "block_time": 1730137896, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7167,9 +7167,9 @@ }, { "tx_index": 57, - "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "tx_hash": "697d9fe9bf571bc39676614a50f1490b53a0ee0b8b20776717636fe7ad5bb762", "block_index": 192, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7184,7 +7184,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730116037, + "block_time": 1730137911, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7210,9 +7210,9 @@ }, { "tx_index": 59, - "tx_hash": "9d6f69deab8decbb02e247c2a2e19611f0931fb91c9bd48d5dad2bfae5328ffe", + "tx_hash": "347387317119572ec5cd0ff178a3530caee267541f5e02c90750835cd176720a", "block_index": 193, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7227,7 +7227,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116041, + "block_time": 1730137914, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7258,9 +7258,9 @@ "/v2/orders/": { "result": { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7275,7 +7275,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116110, + "block_time": 1730137979, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7303,13 +7303,13 @@ "/v2/orders//matches": { "result": [ { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 54, - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", - "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "tx1_hash": "7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", + "tx1_address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7323,7 +7323,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730116023, + "block_time": 1730137896, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7343,13 +7343,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 52, - "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", + "tx1_address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7363,7 +7363,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730116019, + "block_time": 1730137893, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7390,15 +7390,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "5ca9410dca98770144ee5afe5dcbf1afe4253bf161ee77b9b576832b8ccb09a7", "block_index": 187, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "btc_amount": 2000, - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "order_match_id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", "status": "valid", "confirmed": true, - "block_time": 1730116019, + "block_time": 1730137893, "btc_amount_normalized": "0.00002000" } ], @@ -7409,9 +7409,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx_hash": "c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", "block_index": 187, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7429,7 +7429,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730116019, + "block_time": 1730137893, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7455,9 +7455,9 @@ }, { "tx_index": 54, - "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx_hash": "7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "block_index": 188, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7475,7 +7475,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730116023, + "block_time": 1730137896, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7501,9 +7501,9 @@ }, { "tx_index": 49, - "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx_hash": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092", "block_index": 184, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7521,7 +7521,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730115936, + "block_time": 1730137805, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7547,9 +7547,9 @@ }, { "tx_index": 51, - "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7567,7 +7567,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730116110, + "block_time": 1730137979, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7593,9 +7593,9 @@ }, { "tx_index": 57, - "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "tx_hash": "697d9fe9bf571bc39676614a50f1490b53a0ee0b8b20776717636fe7ad5bb762", "block_index": 192, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7613,7 +7613,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730116037, + "block_time": 1730137911, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7644,13 +7644,13 @@ "/v2/orders///matches": { "result": [ { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 54, - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", - "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "tx1_hash": "7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", + "tx1_address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7667,7 +7667,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730116023, + "block_time": 1730137896, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7687,13 +7687,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 52, - "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", + "tx1_address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7710,7 +7710,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730116019, + "block_time": 1730137893, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7730,13 +7730,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "id": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092_c1575db45cd83abcffebd4c99d8f3559be17e5dac7243236e5f1880313accca5", "tx0_index": 49, - "tx0_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 50, - "tx1_hash": "6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "c1575db45cd83abcffebd4c99d8f3559be17e5dac7243236e5f1880313accca5", + "tx1_address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7753,7 +7753,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730115936, + "block_time": 1730137805, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7779,13 +7779,13 @@ "/v2/order_matches": { "result": [ { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 54, - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", - "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "tx1_hash": "7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", + "tx1_address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7799,7 +7799,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730116023, + "block_time": 1730137896, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7819,13 +7819,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 52, - "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", + "tx1_address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7839,7 +7839,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730116019, + "block_time": 1730137893, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7859,13 +7859,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "id": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092_c1575db45cd83abcffebd4c99d8f3559be17e5dac7243236e5f1880313accca5", "tx0_index": 49, - "tx0_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx1_index": 50, - "tx1_hash": "6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "c1575db45cd83abcffebd4c99d8f3559be17e5dac7243236e5f1880313accca5", + "tx1_address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7879,7 +7879,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730115936, + "block_time": 1730137805, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7924,66 +7924,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "40efc8e4de6bc24410016279eb759071c80e3ac3ee8fc7a52725555c3f89979e", + "tx_hash": "0c3e7108498a93127a58266d9a33694fe5ba9d597bcec7ee030eb257eb2e2b2b", "block_index": 121, - "source": "bcrt1qrac7m6sqdzx9h798y52wk0qj5205d7vtqfjyds", + "source": "bcrt1qy8gyrwsx82ar0edlxqygx5tcjkstq7ct0gal7z", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730115749, + "block_time": 1730137624, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "b3899728f4fbe6971190ca0558018b101f89d77a0a686dc9b3ccc415ca018e8b", + "tx_hash": "b767702dbbb707a5e8982cfccfcd7b548a9e55a5595232481b2a97f11d16aa92", "block_index": 120, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "source": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730115746, + "block_time": 1730137621, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "3a7a3f1159a9cfa190b40ae0aeea74f6e7bb59e77c72bf9dfcd020f2cf08b918", + "tx_hash": "e9d618308230a8e35f8ce9d3b457a1e4869728cb9903a038054a22d6fa97e901", "block_index": 119, - "source": "bcrt1qlzwnh8crxz0ezlqgv69hf4g482dp7lmzd8rrxl", + "source": "bcrt1qnrzpzecy2gs54nmeq34kk4pgsxqfhfwfe7jcrm", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730115741, + "block_time": 1730137617, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "6315228e07c37718a4a5b514e8966e340617b45669cadb46b87c79fde9c61081", + "tx_hash": "bfcc3e66f91b8bfb6da42e80c3066601e8ad00a181f030475ea8565d004b866f", "block_index": 118, - "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730115738, + "block_time": 1730137613, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "62015459a282a1c5ce61590bf6a13d1cc03908e59d02d09d8bb4327c8e8349f9", + "tx_hash": "226660c07de378ea4503bdcef5c47487358b3c7a5b4634c8590a81041a808cc8", "block_index": 117, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730115735, + "block_time": 1730137610, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7995,9 +7995,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8006,7 +8006,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8016,7 +8016,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -8032,9 +8032,9 @@ }, { "tx_index": 29, - "tx_hash": "ccb421515f869082058aa6d0f05423e1c6ce8751d4146c89dee14e26c1c3130b", + "tx_hash": "b99f67e73c446486b352531d70a5147a2412bdab7acdaba08cd93c51f655166d", "block_index": 142, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8043,7 +8043,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "origin": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8053,7 +8053,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115828, + "block_time": 1730137705, "asset_info": { "divisible": true, "asset_longname": null, @@ -8069,9 +8069,9 @@ }, { "tx_index": 30, - "tx_hash": "a809a9c0b667c336b61ce3e892a7f2d80231121804f3f7db594da58d9ded5a52", + "tx_hash": "f1eb75ae9c8f99b5c2562708de555a361d426f74779665cc776feff098698019", "block_index": 150, - "source": "mrTk1ThfTwE2f6PUY5vjkJvga5VgZXf4bk", + "source": "mmMUyxURvPd5MuCnixQbs49A4GK7CvK1JN", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8079,10 +8079,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "73d6215c951c71f26d391d50b72497e72188efc109135e95b1f58a4374c30be0", - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "last_status_tx_hash": "3951d3d276b0caac2bb7c00d102b63163b230b67535dd6a2790d4a8214674b4e", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 0, - "last_status_tx_source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "last_status_tx_source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -8090,7 +8090,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115869, + "block_time": 1730137747, "asset_info": { "divisible": true, "asset_longname": null, @@ -8106,9 +8106,9 @@ }, { "tx_index": 62, - "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "tx_hash": "7ea649660ab8f930cd86bcb45928b49ee1c329482afd913b2b853c8956119f47", "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8117,7 +8117,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8127,11 +8127,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730116055, + "block_time": 1730137929, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -8143,18 +8143,18 @@ }, { "tx_index": 33, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8164,7 +8164,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -8185,9 +8185,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8196,7 +8196,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8206,7 +8206,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -8226,19 +8226,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "69a80e02531ce3205a58f83d468e6564d8d9daf4cbba3c45f3612ab9ac3a2f61", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8246,7 +8246,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8261,7 +8261,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -8275,19 +8275,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "f3e345e80e0ba6371f2e384ce4fe33c5ab5c0ee74d5ddd52cb85774560d040a7", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8295,7 +8295,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8310,7 +8310,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730137696, "asset_info": { "divisible": true, "asset_longname": null, @@ -8329,20 +8329,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "751e21b82410acd34989da9ec113ea38677f8352c49fb6ab389e95f8869bb68f", "block_index": 154, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730115885, + "block_time": 1730137763, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -8363,20 +8363,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "751e21b82410acd34989da9ec113ea38677f8352c49fb6ab389e95f8869bb68f", "block_index": 154, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730115885, + "block_time": 1730137763, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -8399,12 +8399,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "event": "751e21b82410acd34989da9ec113ea38677f8352c49fb6ab389e95f8869bb68f", "tx_index": 41, - "utxo": "98dc74f499bab33d7568cbb80cf2844a2c7c56b8c2f77d240c55b6583f71505a:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "utxo": "b60a144e8864c8631a79280b1e4dc9aec9afc5f3fa5c81f7a8e8643cf3fd8c9a:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "confirmed": true, - "block_time": 1730115885, + "block_time": 1730137763, "asset_info": { "divisible": true, "asset_longname": null, @@ -8416,16 +8416,16 @@ }, { "block_index": 154, - "address": "bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz", + "address": "bcrt1qapctycl5mggmtdn3fduyg3d88tdak2petar6nh", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "event": "751e21b82410acd34989da9ec113ea38677f8352c49fb6ab389e95f8869bb68f", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730115885, + "block_time": 1730137763, "asset_info": { "divisible": true, "asset_longname": null, @@ -8446,27 +8446,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "6015875cc121bdf7e65521f6912035fa5d4764525e808d663a668cd632d1c783", + "messages_hash": "9521566d8ccd8d04d106def7434303634dee67ad512e16a70021e7df6bc909cf", "transaction_count": 1, - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "block_time": 1730116123 + "txlist_hash": "f2e1468800e212edd8d4c1582e8920a4e1e07b21a6c009c64b80d873405ace7c", + "block_time": 1730137988 }, "tx_hash": null, "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 674, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75 }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 673, @@ -8475,14 +8475,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -8493,9 +8493,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 672, @@ -8504,9 +8504,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "status": 0, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "asset_info": { "divisible": true, "asset_longname": null, @@ -8516,24 +8516,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -8543,9 +8543,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 670, @@ -8557,15 +8557,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "6015875cc121bdf7e65521f6912035fa5d4764525e808d663a668cd632d1c783", + "messages_hash": "9521566d8ccd8d04d106def7434303634dee67ad512e16a70021e7df6bc909cf", "transaction_count": 1, - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "block_time": 1730116123 + "txlist_hash": "f2e1468800e212edd8d4c1582e8920a4e1e07b21a6c009c64b80d873405ace7c", + "block_time": 1730137988 }, "tx_hash": null, "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } }, "/v2/events/counts": { @@ -8600,16 +8600,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -8619,9 +8619,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 669, @@ -8631,12 +8631,12 @@ "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -8646,9 +8646,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 666, @@ -8658,39 +8658,39 @@ "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", + "utxo_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "block_time": 1730137988, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 }, { "event_index": 656, "event": "CREDIT", "params": { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "block_index": 207, "calling_function": "cancel order", - "event": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "event": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730116110, + "block_time": 1730137979, "asset_info": { "divisible": true, "asset_longname": null, @@ -8700,24 +8700,24 @@ }, "quantity_normalized": "0.00005000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730137979 }, { "event_index": 645, "event": "CREDIT", "params": { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "block_index": 206, "calling_function": "mpma send", - "event": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "event": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "quantity": 10, "tx_index": 73, "utxo": null, "utxo_address": null, - "block_time": 1730116106, + "block_time": 1730137976, "asset_info": { "divisible": true, "asset_longname": null, @@ -8727,9 +8727,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "block_index": 206, - "block_time": 1730116106 + "block_time": 1730137976 } ], "next_cursor": 644, @@ -8746,27 +8746,27 @@ { "tx_index": 75, "dispense_index": 0, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "destination": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8781,7 +8781,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -8795,19 +8795,19 @@ { "tx_index": 63, "dispense_index": 0, - "tx_hash": "6afc6887d0234625af2de1aad7aa4588fb3aa054b9f1df4e9de8cd43df5794ae", + "tx_hash": "aacf983aa69a35ede968b26e5fa61476a91d41b13010a74ccb216d31681d84ea", "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "dispenser_tx_hash": "7ea649660ab8f930cd86bcb45928b49ee1c329482afd913b2b853c8956119f47", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8815,7 +8815,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8830,11 +8830,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730116055, + "block_time": 1730137929, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -8844,27 +8844,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "20ee1f7c37198c60e5b697aa072434689128d11ddd55ed299c9fa30686503493", + "tx_hash": "33494e1b0764446f2c3cec8316cda182784c9e523d460cd7c6f72352eeee92f0", "block_index": 147, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "destination": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8879,7 +8879,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730115848, + "block_time": 1730137735, "asset_info": { "divisible": true, "asset_longname": null, @@ -8893,19 +8893,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "69a80e02531ce3205a58f83d468e6564d8d9daf4cbba3c45f3612ab9ac3a2f61", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8913,7 +8913,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8928,7 +8928,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730137700, "asset_info": { "divisible": true, "asset_longname": null, @@ -8942,19 +8942,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "f3e345e80e0ba6371f2e384ce4fe33c5ab5c0ee74d5ddd52cb85774560d040a7", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "417d97e6fc254e5ecc7b04c3b4fcbddd479fefd57a96460f26caf0c3c9e36a05", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8962,7 +8962,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8977,7 +8977,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730137696, "asset_info": { "divisible": true, "asset_longname": null, @@ -8996,10 +8996,10 @@ "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "destination": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -9007,7 +9007,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -9020,10 +9020,10 @@ }, { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "destination": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -9031,11 +9031,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -9044,10 +9044,10 @@ }, { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "block_index": 206, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9055,7 +9055,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730137976, "asset_info": { "divisible": true, "asset_longname": null, @@ -9068,10 +9068,10 @@ }, { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "block_index": 206, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9079,11 +9079,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730137976, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -9092,10 +9092,10 @@ }, { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "block_index": 206, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9103,11 +9103,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730137976, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -9122,14 +9122,14 @@ "result": [ { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -9144,20 +9144,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730116077, + "block_time": 1730137948, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 64, - "tx_hash": "c915023b8b26fc3eb938d496087a062745ad462fccab637368bddfd4fb29c4ba", + "tx_hash": "7b9a01a66bb26bb7e7c88b9714df68994dfd24d2873ca6f548195f000bab8e41", "msg_index": 0, "block_index": 198, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", - "issuer": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m", + "issuer": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m", "transfer": false, "callable": false, "call_date": 0, @@ -9172,20 +9172,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730116060, + "block_time": 1730137933, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "92d810aacd89aaed4756618250d3df3739516fda551847d01a705a57cf250e1c", + "tx_hash": "85a852563d5afa55ea5b9b03d3ad3910dff4fa778937b152c02349f998af12ab", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -9200,20 +9200,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730115921, + "block_time": 1730137790, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "652fa348e445bedc79af7c8da7e9edd116fc6586bb2896968234ade2b0de91c4", + "tx_hash": "e71c6886b8fb7827f156ba7baf8343a37f485ece9a8bbb6ecb78f8258a174502", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -9228,20 +9228,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730115918, + "block_time": 1730137787, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "a9640b7ef998e1287a94371074ed8dd399613638ecb6a9c1a406fd5ce29727e0", + "tx_hash": "28cc682041280cb3872d5c474d5c57f96e893560bee0b27d4897aa1a9c78b49f", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -9256,7 +9256,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730115914, + "block_time": 1730137783, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9267,14 +9267,14 @@ "/v2/issuances/": { "result": { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "transfer": false, "callable": false, "call_date": 0, @@ -9289,7 +9289,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730116077, + "block_time": 1730137948, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9298,16 +9298,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "e8d7da48b9ce9e612be4e1f2e60d819f89facd419df15b19825c2b1788dfbacd", "block_index": 194, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730116045, + "block_time": 1730137917, "fee_paid_normalized": "0.00600000" } ], @@ -9318,16 +9318,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "e8d7da48b9ce9e612be4e1f2e60d819f89facd419df15b19825c2b1788dfbacd", "block_index": 194, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730116045, + "block_time": 1730137917, "fee_paid_normalized": "0.00600000" } ], @@ -9338,9 +9338,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "tx_hash": "d27438775220976f2a9340ddb138ba7675d2051df33331a42becbba2f96f2738", "block_index": 138, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9348,14 +9348,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730115814, + "block_time": 1730137690, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "261b5785cc07a1f7000bee3be198f5d90393f35ed50ad3c8656eafadf5e468dc", + "tx_hash": "3ee82eaec6bfaa791579394d101585d4fa2bef31e29c27d9f58abfe63a99450e", "block_index": 137, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9363,7 +9363,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730115811, + "block_time": 1730137686, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9373,9 +9373,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "tx_hash": "d27438775220976f2a9340ddb138ba7675d2051df33331a42becbba2f96f2738", "block_index": 138, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9383,17 +9383,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730115814, + "block_time": 1730137690, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_hash": "45e530d40405ac9ef1d3be5efa3f3c14d0c4639cebdb66e29c3df26c9f349b33", "tx_index": 42, "block_index": 155, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9418,7 +9418,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730115889, + "block_time": 1730137766, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9427,10 +9427,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "tx_hash": "eadb025b64eec283ac9b50d8a861a332a325a0ef61b6e07e7458764b93b6020d", "tx_index": 22, "block_index": 135, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9455,7 +9455,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730115804, + "block_time": 1730137679, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9467,10 +9467,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "tx_hash": "13f2fc25ddd421978de8952f8cac7c2b08340f7331c519cb81df5b06fe433563", "tx_index": 18, "block_index": 131, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9495,7 +9495,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730115789, + "block_time": 1730137663, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9507,10 +9507,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", + "tx_hash": "6d64fafd67d16f229b872eef0a3dbe7296592188ed54a6cca955229900a159a6", "tx_index": 14, "block_index": 130, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9535,7 +9535,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730115785, + "block_time": 1730137659, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9547,10 +9547,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "tx_hash": "07c8c88a0d58b2c951166e33ea8752a2cd1c5e5dbcd16e1eab605ebd95158953", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9575,7 +9575,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730115766, + "block_time": 1730137640, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9593,22 +9593,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "2bf6f021e416ac68ff5f5776a8eddaebc2476fbc2754eb3779728e2029a3cee5", "tx_index": 23, "block_index": 136, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "eadb025b64eec283ac9b50d8a861a332a325a0ef61b6e07e7458764b93b6020d", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115808, + "block_time": 1730137683, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -9617,22 +9617,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "5da24fdc5b0f42414404df0110e4a3cd79789b5706be7b301d976f9eef623346", + "tx_hash": "d330faa610c5df11643cb18905cabc444da8d9cee67b5bad57295870604b42a9", "tx_index": 21, "block_index": 134, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "13f2fc25ddd421978de8952f8cac7c2b08340f7331c519cb81df5b06fe433563", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115800, + "block_time": 1730137675, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -9641,22 +9641,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "98840296af69b519b38aaa9663baa393849683e67da07ce11e4aa21df9259e2f", + "tx_hash": "ef10a55d23b24b9ac096dde81a12ab978e7fcead3a9ee74ab78af5a0715ffef7", "tx_index": 20, "block_index": 133, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "13f2fc25ddd421978de8952f8cac7c2b08340f7331c519cb81df5b06fe433563", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115797, + "block_time": 1730137671, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -9665,22 +9665,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "e26754ee3f011a743d3bd45d712d1fe4056c4b4f657f391b5d06c33191fe01d3", + "tx_hash": "befb90151b6b30ce9c50efd64fe22f86743242082625aa5878ade6f99b969054", "tx_index": 19, "block_index": 132, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "13f2fc25ddd421978de8952f8cac7c2b08340f7331c519cb81df5b06fe433563", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115793, + "block_time": 1730137667, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -9689,22 +9689,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "c2ff22176088f20d29376840755983b7b85d64f16b7c262e35059b6ee5a80208", + "tx_hash": "133e630a33483de8315d26c74a955430d9b11785ec44f78d673dd29cc626af6b", "tx_index": 17, "block_index": 129, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "fairminter_tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", + "fairminter_tx_hash": "6d64fafd67d16f229b872eef0a3dbe7296592188ed54a6cca955229900a159a6", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115781, + "block_time": 1730137655, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -9718,22 +9718,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "2bf6f021e416ac68ff5f5776a8eddaebc2476fbc2754eb3779728e2029a3cee5", "tx_index": 23, "block_index": 136, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "fairminter_tx_hash": "eadb025b64eec283ac9b50d8a861a332a325a0ef61b6e07e7458764b93b6020d", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115808, + "block_time": 1730137683, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -9750,8 +9750,8 @@ "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "260f8515d5cf01148f41d85cf4e21251e532277b3c37ba22a3c72be4cd065b05", - "address": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg" + "txid": "07a065a6ca4ce9514d8f76e6a24c8f265cddd5b80478a519a5c2d38070427c24", + "address": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m" }, { "vout": 1, @@ -9759,8 +9759,8 @@ "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "4b90e72e007ba15a6a40fdfc84e5f898b4f34917ddd7eefb3d3c380238678261", - "address": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg" + "txid": "0519cc1ebc1ae153d64ea82861a75ef76ba051363bae4d5d4ee58f38c7496511", + "address": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m" }, { "vout": 2, @@ -9768,8 +9768,8 @@ "value": 100000, "confirmations": 52, "amount": 0.001, - "txid": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e", - "address": "bcrt1qlzwnh8crxz0ezlqgv69hf4g482dp7lmzd8rrxl" + "txid": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f", + "address": "bcrt1qnrzpzecy2gs54nmeq34kk4pgsxqfhfwfe7jcrm" } ], "next_cursor": null, @@ -9778,28 +9778,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "46275b59a76a524ece7bbe93bdce57ca07ca43cb22ad6592ae00e7f1ab310111" + "tx_hash": "00e83b822a152266f1317b41ea0d12862451a6d5caa82e6ca120b6267c962f0a" }, { - "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614" + "tx_hash": "e36624800c24414edc8772e207996a8706c60f837ca517d2c929cd63b66ef51e" }, { - "tx_hash": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28" + "tx_hash": "4d7775f61d7e7512827f42efab3680307193b255ec33cc92307369faa843a635" }, { - "tx_hash": "befc407b97cc222e3e9fadff546d543c02db387adea45dd405c48f173c37b6ba" + "tx_hash": "25836416d2ff0e71940bfd09ca1c2ad6354d1a837854c3a0a1240155927ab665" }, { - "tx_hash": "5d1e44b8239fc1804e1dfb41c0ff24d1b9fe50fdd26c0a080ddcc73e152633bd" + "tx_hash": "f8030e846db7b0f26a242c79e8c0d6e38f245ecf6cf203de8579071ecd8d7374" }, { - "tx_hash": "ebdd9911ac289e537ed7c712b293decfb0d690c1b2390873d53383b30979e9c8" + "tx_hash": "7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483" }, { - "tx_hash": "54cb02f91cc1d54472f02930f57a18f5e5c9fbd699b1c40339fa0b223b3c2af1" + "tx_hash": "3a17766db55e3c55598371c8a5dfb1451de8c1036d46d44afc33eaabd0747fcc" }, { - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4" + "tx_hash": "e8d7da48b9ce9e612be4e1f2e60d819f89facd419df15b19825c2b1788dfbacd" } ], "next_cursor": null, @@ -9807,37 +9807,37 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 3, - "tx_hash": "538e56b094f8dbba32f0ec9a3e237582b618490767ec074bc8a822c4657988a8" + "block_index": 2, + "tx_hash": "2d307c4cfb8e63d518ad736ebd832cfe80c56ccc78333da6beb952ab7ba2bbf9" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ { - "vout": 0, + "vout": 1, "height": 200, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "260f8515d5cf01148f41d85cf4e21251e532277b3c37ba22a3c72be4cd065b05" + "amount": 49.499345, + "txid": "0519cc1ebc1ae153d64ea82861a75ef76ba051363bae4d5d4ee58f38c7496511" }, { - "vout": 1, + "vout": 0, "height": 200, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "4b90e72e007ba15a6a40fdfc84e5f898b4f34917ddd7eefb3d3c380238678261" + "amount": 5.46e-05, + "txid": "07a065a6ca4ce9514d8f76e6a24c8f265cddd5b80478a519a5c2d38070427c24" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "03998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f5" + "result": "03f34cec8b12ed0ecb49aac11f3a6b5c323c2d435491d7c9d300ebb7298ea2b35d" }, "/v2/bitcoin/transactions/": { - "result": "020000000001016e888e762a5bf751913b28c9af990e94615e21052e49580e84f3926bebd9fca50100000000ffffffff03e803000000000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e100000000000000000c6a0aa390177068284096dde5dced082701000000160014d950bc5f9180ecff106845a230a250af93710c9a02473044022075c5b31202028752fbe4fef802a6100e72659ca2b61b87ead38c4cd1b7a3951102203037bfa13cc2fc1f3130ab74ee5aedde6649fb33ec0c628e7e9afba8fc8010c00121029bf65cc180612a741a06643bfa5b68c3dce8915d289aea03ca0bdbaa4d03e70700000000" + "result": "020000000001018f03aa788a48040fce466911ae455551d73902420f6d22525afd516e5bd7b53e0100000000ffffffff03e803000000000000160014b0ffc155367a55fd45223389eb27cc866c81e13200000000000000000c6a0aaadd2234157c4b5b9c04dced08270100000016001458964f1fb2b0bfc4d008b8f6cf5a9238be37b7ef0247304402202f40bc0355237d350882bf41a5065e0f27ea3361af3e5055552e25a9a1e5cf7f02206f3ce8c56d426feaf218495242994710d63a1d0a56106cd6887f31e575d2c00a012102c91f612de7780b366af0f838824fe459a606f94839f2e9e65bc54828f94174b700000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 61397 @@ -9860,27 +9860,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "tx_index": 76 }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "memo": null, "quantity": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "status": "valid", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "tx_index": 76, "asset_info": { "divisible": true, @@ -9891,22 +9891,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "CREDIT", "params": { - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -9916,22 +9916,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "XCP", "block_index": 208, - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -9941,30 +9941,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730116127.587877, + "block_time": 1730137992.2259407, "btc_amount": 0, - "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", + "data": "020000000000000001000000000000271080d366a43686c88a15c961c4f50af139cd14944206", "destination": "", "fee": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "tx_index": 76, - "utxos_info": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f:1", + "utxos_info": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "memo": null, "asset_info": { "divisible": true, @@ -9978,7 +9978,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 } ], "next_cursor": null, @@ -9987,19 +9987,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "CREDIT", "params": { - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -10009,7 +10009,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 } ], "next_cursor": null, @@ -10018,27 +10018,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "tx_index": 76 }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "memo": null, "quantity": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "status": "valid", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "tx_index": 76, "asset_info": { "divisible": true, @@ -10049,22 +10049,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "CREDIT", "params": { - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -10074,22 +10074,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "asset": "XCP", "block_index": 208, - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -10099,30 +10099,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730116127.587877, + "block_time": 1730137992.2259407, "btc_amount": 0, - "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", + "data": "020000000000000001000000000000271080d366a43686c88a15c961c4f50af139cd14944206", "destination": "", "fee": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", + "tx_hash": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277", "tx_index": 76, - "utxos_info": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f:1", + "utxos_info": "7051d36f4d40709168db092139b672b4ba581e585b59c5be2791abf1b82aa277:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "memo": null, "asset_info": { "divisible": true, @@ -10136,7 +10136,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730137992.2259407 } ], "next_cursor": null, @@ -10158,15 +10158,15 @@ "event_index": 662, "event": "NEW_BLOCK", "params": { - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_hash": "266c0972d4f52810f8433bf2b54fda3541b96eb40ae53f21abe721b535dfb5ef", "block_index": 208, - "block_time": 1730116123, + "block_time": 1730137988, "difficulty": 545259519, - "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb" + "previous_block_hash": "70ba7089afff84e271f6e7d5e9c822765acfd2cb6166952a11578079921a3ca2" }, "tx_hash": null, "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 653, @@ -10178,17 +10178,17 @@ "event_index": 663, "event": "NEW_TRANSACTION", "params": { - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_hash": "266c0972d4f52810f8433bf2b54fda3541b96eb40ae53f21abe721b535dfb5ef", "block_index": 208, - "block_time": 1730116123, + "block_time": 1730137988, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "destination": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "fee": 0, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "source": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1 5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10198,9 +10198,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 654, @@ -10214,16 +10214,16 @@ "params": { "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "destination": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "out_index": 0, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730137988, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 558, @@ -10236,15 +10236,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "6015875cc121bdf7e65521f6912035fa5d4764525e808d663a668cd632d1c783", + "messages_hash": "9521566d8ccd8d04d106def7434303634dee67ad512e16a70021e7df6bc909cf", "transaction_count": 1, - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "block_time": 1730116123 + "txlist_hash": "f2e1468800e212edd8d4c1582e8920a4e1e07b21a6c009c64b80d873405ace7c", + "block_time": 1730137988 }, "tx_hash": null, "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 661, @@ -10257,12 +10257,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75 }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 660, @@ -10278,12 +10278,12 @@ "address": null, "asset": "XCP", "block_index": 208, - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 1500000000, "tx_index": 75, - "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "block_time": 1730116123, + "utxo": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", + "utxo_address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -10293,9 +10293,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 665, @@ -10307,16 +10307,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -10326,9 +10326,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 669, @@ -10342,26 +10342,26 @@ "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "memo": null, "quantity": 1000, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "status": "valid", - "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "tx_hash": "315c6064b2897e22ff0c1467169f516d2d30571587f022e17fdde9e4f0eac872", "tx_index": 69, - "block_time": 1730116081, + "block_time": 1730137952, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "tx_hash": "315c6064b2897e22ff0c1467169f516d2d30571587f022e17fdde9e4f0eac872", "block_index": 202, - "block_time": 1730116081 + "block_time": 1730137952 } ], "next_cursor": 498, @@ -10375,15 +10375,15 @@ "params": { "asset": "XCP", "block_index": 206, - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "status": "valid", - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "tx_index": 73, - "block_time": 1730116106, + "block_time": 1730137976, "asset_info": { "divisible": true, "asset_longname": null, @@ -10393,9 +10393,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "ffb932f16ec297fece8642dded98af8ef275b5a78fe6ec4e5c7805f901adaa6f", "block_index": 206, - "block_time": 1730116106 + "block_time": 1730137976 } ], "next_cursor": 649, @@ -10418,20 +10418,20 @@ "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "destination": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "status": "valid", - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "e8d7da48b9ce9e612be4e1f2e60d819f89facd419df15b19825c2b1788dfbacd", "tx_index": 60, - "block_time": 1730116045, + "block_time": 1730137917, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "e8d7da48b9ce9e612be4e1f2e60d819f89facd419df15b19825c2b1788dfbacd", "block_index": 194, - "block_time": 1730116045 + "block_time": 1730137917 } ], "next_cursor": null, @@ -10448,15 +10448,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "status": "valid", - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "751e21b82410acd34989da9ec113ea38677f8352c49fb6ab389e95f8869bb68f", "tx_index": 41, - "block_time": 1730115885, + "block_time": 1730137763, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -10470,9 +10470,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "751e21b82410acd34989da9ec113ea38677f8352c49fb6ab389e95f8869bb68f", "block_index": 154, - "block_time": 1730115885 + "block_time": 1730137763 } ], "next_cursor": null, @@ -10493,11 +10493,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 201, - "block_time": 1730116077 + "block_time": 1730137948 }, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23", "block_index": 201, - "block_time": 1730116077 + "block_time": 1730137948 } ], "next_cursor": 567, @@ -10520,22 +10520,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "status": "valid", "transfer": false, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23", "tx_index": 68, - "block_time": 1730116077, + "block_time": 1730137948, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "c5248fdf6e3155242e00821fd12860e02aae41d3f892218bad11150e6fa51f23", "block_index": 201, - "block_time": 1730116077 + "block_time": 1730137948 } ], "next_cursor": 568, @@ -10550,12 +10550,12 @@ "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qa63zus5l9e944f4cuty896373kaudjxurcwlft", "status": "valid", "tag": "64657374726f79", - "tx_hash": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c", + "tx_hash": "5ddd69d96e90dd52e5459771dbe9d79a574e9a0a1c1d06a1aeb97add894857c1", "tx_index": 61, - "block_time": 1730116049, + "block_time": 1730137922, "asset_info": { "divisible": true, "asset_longname": null, @@ -10565,9 +10565,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c", + "tx_hash": "5ddd69d96e90dd52e5459771dbe9d79a574e9a0a1c1d06a1aeb97add894857c1", "block_index": 195, - "block_time": 1730116049 + "block_time": 1730137922 } ], "next_cursor": 157, @@ -10592,11 +10592,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "status": "open", - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "tx_index": 74, - "block_time": 1730116110, + "block_time": 1730137979, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10620,9 +10620,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730137979 } ], "next_cursor": 529, @@ -10640,20 +10640,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx0_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", "tx0_index": 51, - "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "tx1_address": "bcrt1q6dn2gd5xez9ptjtpcn6s4ufee52fgssxal9z5e", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx1_hash": "7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "tx1_index": 54, - "block_time": 1730116023, + "block_time": 1730137896, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10672,9 +10672,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx_hash": "7f684acc5133010f6ad093c52be58549509b207e12c5f6f878cc9b5e715b8483", "block_index": 188, - "block_time": 1730116023 + "block_time": 1730137896 } ], "next_cursor": 475, @@ -10687,11 +10687,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878" + "tx_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730137979 } ], "next_cursor": 521, @@ -10704,11 +10704,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed" + "tx_hash": "c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e" }, - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "5ca9410dca98770144ee5afe5dcbf1afe4253bf161ee77b9b576832b8ccb09a7", "block_index": 187, - "block_time": 1730116019 + "block_time": 1730137893 } ], "next_cursor": null, @@ -10720,13 +10720,13 @@ "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", + "order_match_id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", "status": "completed" }, - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "5ca9410dca98770144ee5afe5dcbf1afe4253bf161ee77b9b576832b8ccb09a7", "block_index": 187, - "block_time": 1730116019 + "block_time": 1730137893 } ], "next_cursor": 454, @@ -10740,18 +10740,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "order_match_id": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0_c081bdbda638022bed271372f3ebdc36c46ffef33658d916f3e202af4207ab6e", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "status": "valid", - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "5ca9410dca98770144ee5afe5dcbf1afe4253bf161ee77b9b576832b8ccb09a7", "tx_index": 53, - "block_time": 1730116019, + "block_time": 1730137893, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "5ca9410dca98770144ee5afe5dcbf1afe4253bf161ee77b9b576832b8ccb09a7", "block_index": 187, - "block_time": 1730116019 + "block_time": 1730137893 } ], "next_cursor": null, @@ -10764,16 +10764,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "offer_hash": "697d9fe9bf571bc39676614a50f1490b53a0ee0b8b20776717636fe7ad5bb762", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "status": "valid", - "tx_hash": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603", + "tx_hash": "4a12595a90692d8d75833b767c77779efb65f193bc0f1e5e366e52be29fdc5b3", "tx_index": 58, - "block_time": 1730116037 + "block_time": 1730137911 }, - "tx_hash": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603", + "tx_hash": "4a12595a90692d8d75833b767c77779efb65f193bc0f1e5e366e52be29fdc5b3", "block_index": 192, - "block_time": 1730116037 + "block_time": 1730137911 } ], "next_cursor": null, @@ -10786,13 +10786,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 207, - "order_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "block_time": 1730116110 + "order_hash": "85be1af01d7206dd70b88dae38b8c6ca89792df7b75153597d652ca50b3965d0", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "block_time": 1730137979 }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "f02635afc4a3fa6a3ae9104576e860083d261938340647ab59222478734efec0", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730137979 } ], "next_cursor": 462, @@ -10805,14 +10805,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "block_time": 1730115936 + "order_match_id": "32ac2bd39da48619a18e773def84b6fec9018b41deb1cc519634b75fc4f20092_c1575db45cd83abcffebd4c99d8f3559be17e5dac7243236e5f1880313accca5", + "tx0_address": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "tx1_address": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", + "block_time": 1730137805 }, "tx_hash": null, "block_index": 184, - "block_time": 1730115936 + "block_time": 1730137805 } ], "next_cursor": null, @@ -10831,17 +10831,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "satoshirate": 1, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "status": 0, - "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "tx_hash": "7ea649660ab8f930cd86bcb45928b49ee1c329482afd913b2b853c8956119f47", "tx_index": 62, - "block_time": 1730116052, + "block_time": 1730137926, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -10850,9 +10850,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "tx_hash": "7ea649660ab8f930cd86bcb45928b49ee1c329482afd913b2b853c8956119f47", "block_index": 196, - "block_time": 1730116052 + "block_time": 1730137926 } ], "next_cursor": 272, @@ -10867,9 +10867,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "status": 0, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", "asset_info": { "divisible": true, "asset_longname": null, @@ -10879,9 +10879,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 560, @@ -10895,13 +10895,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mrTk1ThfTwE2f6PUY5vjkJvga5VgZXf4bk", + "destination": "mmMUyxURvPd5MuCnixQbs49A4GK7CvK1JN", "dispense_quantity": 10, - "dispenser_tx_hash": "a809a9c0b667c336b61ce3e892a7f2d80231121804f3f7db594da58d9ded5a52", - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "tx_hash": "a623caab6512fc5492719029eb7ec34044e6fe307b96362340125090670d3242", + "dispenser_tx_hash": "f1eb75ae9c8f99b5c2562708de555a361d426f74779665cc776feff098698019", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", + "tx_hash": "10b3e6e863ce3a3669c78f22acd8013cb82443d83ccdd84429a436d8ea57997c", "tx_index": 31, - "block_time": 1730115837, + "block_time": 1730137723, "asset_info": { "divisible": true, "asset_longname": null, @@ -10911,9 +10911,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "a623caab6512fc5492719029eb7ec34044e6fe307b96362340125090670d3242", + "tx_hash": "10b3e6e863ce3a3669c78f22acd8013cb82443d83ccdd84429a436d8ea57997c", "block_index": 144, - "block_time": 1730115837 + "block_time": 1730137723 } ], "next_cursor": null, @@ -10928,14 +10928,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qtzty78ajkzluf5qghrmv7k5j8zlr0dl0yap63a", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "dispenser_tx_hash": "3567cd850ea5932fb40cc774fc4c6a15dfcb5390863a4e76b73a0deace09168d", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -10946,9 +10946,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 561, @@ -10963,19 +10963,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qkrluz4fk0f2l63fzxwy7kf7vsekgrcfjsld5sh", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "tx_hash": "d27438775220976f2a9340ddb138ba7675d2051df33331a42becbba2f96f2738", "tx_index": 25, "value": 66600.0, - "block_time": 1730115814, + "block_time": 1730137690, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "tx_hash": "d27438775220976f2a9340ddb138ba7675d2051df33331a42becbba2f96f2738", "block_index": 138, - "block_time": 1730115814 + "block_time": 1730137690 } ], "next_cursor": 213, @@ -11006,12 +11006,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "start_block": 0, "status": "open", - "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_hash": "45e530d40405ac9ef1d3be5efa3f3c14d0c4639cebdb66e29c3df26c9f349b33", "tx_index": 42, - "block_time": 1730115889, + "block_time": 1730137766, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11019,9 +11019,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_hash": "45e530d40405ac9ef1d3be5efa3f3c14d0c4639cebdb66e29c3df26c9f349b33", "block_index": 155, - "block_time": 1730115889 + "block_time": 1730137766 } ], "next_cursor": 196, @@ -11034,11 +11034,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc" + "tx_hash": "6d64fafd67d16f229b872eef0a3dbe7296592188ed54a6cca955229900a159a6" }, "tx_hash": null, "block_index": 130, - "block_time": 1730115785 + "block_time": 1730137659 } ], "next_cursor": 110, @@ -11054,17 +11054,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "fairminter_tx_hash": "eadb025b64eec283ac9b50d8a861a332a325a0ef61b6e07e7458764b93b6020d", "paid_quantity": 34, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q54ytf47rl234wfuq42dk98hsl2ckz08y8perv3", "status": "valid", - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "2bf6f021e416ac68ff5f5776a8eddaebc2476fbc2754eb3779728e2029a3cee5", "tx_index": 23, - "block_time": 1730115808, + "block_time": 1730137683, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, @@ -11072,9 +11072,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "2bf6f021e416ac68ff5f5776a8eddaebc2476fbc2754eb3779728e2029a3cee5", "block_index": 136, - "block_time": 1730115808 + "block_time": 1730137683 } ], "next_cursor": 190, @@ -11088,28 +11088,28 @@ "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "f703cfe223c19e062e103d02c092a7eeb75f16c14dc6840c066ea940ddab89ed:1", + "destination": "20ea8e2d55d7c5d09a47e21a8ac568d3209ca0695bcb43bcc47ed85b677edfad:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m", "status": "valid", - "tx_hash": "f703cfe223c19e062e103d02c092a7eeb75f16c14dc6840c066ea940ddab89ed", + "tx_hash": "20ea8e2d55d7c5d09a47e21a8ac568d3209ca0695bcb43bcc47ed85b677edfad", "tx_index": 65, - "block_time": 1730116064, + "block_time": 1730137936, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "issuer": "bcrt1qneqzd2lgad5sfam0ext5f6exn5ztgky7ss5p2m", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "f703cfe223c19e062e103d02c092a7eeb75f16c14dc6840c066ea940ddab89ed", + "tx_hash": "20ea8e2d55d7c5d09a47e21a8ac568d3209ca0695bcb43bcc47ed85b677edfad", "block_index": 199, - "block_time": 1730116064 + "block_time": 1730137936 } ], "next_cursor": 319, @@ -11123,28 +11123,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz", + "destination": "bcrt1qapctycl5mggmtdn3fduyg3d88tdak2petar6nh", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "ebdd9911ac289e537ed7c712b293decfb0d690c1b2390873d53383b30979e9c8:0", + "source": "f8030e846db7b0f26a242c79e8c0d6e38f245ecf6cf203de8579071ecd8d7374:0", "status": "valid", - "tx_hash": "16c2e31138126762962006973bfedc1ced24b4fc3d41616f4ea36346add19de5", + "tx_hash": "0219565c850d1b3ed0785de60440d96852e3308ca6d678feb74e44506de760df", "tx_index": 38, - "block_time": 1730115873, + "block_time": 1730137751, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q4quj5lhplunl5at5pu94cvgekzdym7g8vgpfdc", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "16c2e31138126762962006973bfedc1ced24b4fc3d41616f4ea36346add19de5", + "tx_hash": "0219565c850d1b3ed0785de60440d96852e3308ca6d678feb74e44506de760df", "block_index": 151, - "block_time": 1730115873 + "block_time": 1730137751 } ], "next_cursor": null, @@ -11158,14 +11158,14 @@ "params": { "asset": "XCP", "block_index": 208, - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "destination": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897:0", "msg_index": 1, "quantity": 1500000000, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "source": "3eb5d75b6e51fd5a52226d0f420239d7515545ae116946ce0f04488a78aa038f:1", "status": "valid", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730137988, "asset_info": { "divisible": true, "asset_longname": null, @@ -11175,9 +11175,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "5ffad20ab49e058eee7ea406ea41d7892ced7f2144b35a3ba1691ba7fb2db897", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730137988 } ], "next_cursor": 667, @@ -11192,17 +11192,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qrac7m6sqdzx9h798y52wk0qj5205d7vtqfjyds", + "source": "bcrt1qy8gyrwsx82ar0edlxqygx5tcjkstq7ct0gal7z", "status": "valid", - "tx_hash": "40efc8e4de6bc24410016279eb759071c80e3ac3ee8fc7a52725555c3f89979e", + "tx_hash": "0c3e7108498a93127a58266d9a33694fe5ba9d597bcec7ee030eb257eb2e2b2b", "tx_index": 9, - "block_time": 1730115749, + "block_time": 1730137624, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "40efc8e4de6bc24410016279eb759071c80e3ac3ee8fc7a52725555c3f89979e", + "tx_hash": "0c3e7108498a93127a58266d9a33694fe5ba9d597bcec7ee030eb257eb2e2b2b", "block_index": 121, - "block_time": 1730115749 + "block_time": 1730137624 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py index 56a80c3927..543c1c5558 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_18_utxo.py @@ -108,7 +108,7 @@ "params": { "asset": "UTXOASSET", "block_index": "$BLOCK_INDEX", - "destination": "$TX_HASH:1", + "destination": "$TX_HASH:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, @@ -140,7 +140,7 @@ "event": "$TX_HASH", "quantity": 1000000000, "tx_index": "$TX_INDEX", - "utxo": "$TX_HASH:1", + "utxo": "$TX_HASH:0", "utxo_address": "$ADDRESS_7", }, "tx_hash": "$TX_HASH", @@ -168,10 +168,11 @@ { "title": "Move assets from UTXO to UTXO", "transaction": "movetoutxo", - "source": "$UTXOASSET_UTXO_1_TX_HASH:1", + "source": "$UTXOASSET_UTXO_1_TX_HASH:0", # first output of attach transaction, second is OP_RETURN "no_confirmation": True, "params": { "destination": "$ADDRESS_8", + "more_utxos": "$UTXOASSET_UTXO_1_TX_HASH:2", # third output is change of attach transaction }, "set_variables": { "UTXOASSET_UTXO_2_TX_HASH": "$TX_HASH", @@ -189,7 +190,7 @@ "destination": "$TX_HASH:0", "msg_index": 0, "quantity": 1000000000, - "source": "$UTXOASSET_UTXO_1_TX_HASH:1", + "source": "$UTXOASSET_UTXO_1_TX_HASH:0", "status": "valid", "tx_hash": "$TX_HASH", "tx_index": "$TX_INDEX", @@ -221,7 +222,7 @@ "event": "$TX_HASH", "quantity": 1000000000, "tx_index": "$TX_INDEX", - "utxo": "$UTXOASSET_UTXO_1_TX_HASH:1", + "utxo": "$UTXOASSET_UTXO_1_TX_HASH:0", "utxo_address": "$ADDRESS_7", }, "tx_hash": "$TX_HASH", @@ -299,7 +300,7 @@ "destination": "$UTXOASSET_UTXO_2_TX_HASH:0", "msg_index": 0, "quantity": 1000000000, - "source": "$UTXOASSET_UTXO_1_TX_HASH:1", + "source": "$UTXOASSET_UTXO_1_TX_HASH:0", "status": "valid", "tx_hash": "$UTXOASSET_UTXO_2_TX_HASH", "tx_index": "$UTXOASSET_UTXO_2_TX_INDEX", @@ -333,7 +334,7 @@ "event": "$UTXOASSET_UTXO_2_TX_HASH", "quantity": 1000000000, "tx_index": "$UTXOASSET_UTXO_2_TX_INDEX", - "utxo": "$UTXOASSET_UTXO_1_TX_HASH:1", + "utxo": "$UTXOASSET_UTXO_1_TX_HASH:0", "utxo_address": "$ADDRESS_7", }, "tx_hash": "$UTXOASSET_UTXO_2_TX_HASH", From 4d3ab441354f3b2125b5d16214554766d1cf6cd9 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 28 Oct 2024 18:15:38 +0000 Subject: [PATCH 16/23] Endpoint for UTXO Balances --- apiary.apib | 3878 +++++++++-------- .../counterpartycore/lib/api/queries.py | 19 + .../counterpartycore/lib/api/routes.py | 1 + .../test/fixtures/api_v2_fixtures.json | 52 + .../test/regtest/apidoc/apicache.json | 3515 +++++++-------- dredd.yml | 1 + release-notes/release-notes-v10.6.1.md | 1 + 7 files changed, 3876 insertions(+), 3591 deletions(-) diff --git a/apiary.apib b/apiary.apib index e2335d58e2..f14671341a 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-28 11:48:59.812262. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-28 18:12:35.689896. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -11,6 +11,7 @@ API routes are divided into groups: - [`blocks`](#/reference/blocks) - [`transactions`](#/reference/transactions) - [`addresses`](#/reference/addresses) +- [`utxos`](#/reference/utxos) - [`compose`](#/reference/compose) - [`assets`](#/reference/assets) - [`orders`](#/reference/orders) @@ -180,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 662, "event": "NEW_BLOCK", "params": { - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_hash": "533aa13765b9bc05a46027d588d5a5aa368bfe2ab91d51fe1fcb93aa9b7d2836", "block_index": 208, - "block_time": 1730116123, + "block_time": 1730139139, "difficulty": 545259519, - "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb" + "previous_block_hash": "39f247e162c2a49b3fc5bb01c5374ad7a6c0e7e4573dc5511953a7a7586c5a8b" }, "tx_hash": null, "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 653, @@ -205,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 663, "event": "NEW_TRANSACTION", "params": { - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_hash": "533aa13765b9bc05a46027d588d5a5aa368bfe2ab91d51fe1fcb93aa9b7d2836", "block_index": 208, - "block_time": 1730116123, + "block_time": 1730139139, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "destination": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "fee": 0, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "source": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1 46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -225,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 654, @@ -246,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "destination": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "out_index": 0, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730139139, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 558, @@ -273,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "aca158120f73c7579de95c79be6418a95a5fa8f657f40712bb994d8c10f77cfc", + "messages_hash": "4b067e65e521582a964aef05b8d26b6c46e1bd27305b02a262268e210166750c", "transaction_count": 1, - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "block_time": 1730116123 + "txlist_hash": "df142cc3f0075757b9e9cb9353ce0032b8a9348592893c3daa8f8c40a72ebd2c", + "block_time": 1730139139 }, "tx_hash": null, "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 661, @@ -299,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75 }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 660, @@ -327,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 208, - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 1500000000, "tx_index": 75, - "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "block_time": 1730116123, + "utxo": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "utxo_address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -342,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 665, @@ -361,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -380,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 669, @@ -401,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "memo": null, "quantity": 1000, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "status": "valid", - "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "tx_hash": "50eccc0ccb786046b629ea7cae6bbe7cd918c75a76eef840e931e44865e2d2e6", "tx_index": 69, - "block_time": 1730116081, + "block_time": 1730139103, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "tx_hash": "50eccc0ccb786046b629ea7cae6bbe7cd918c75a76eef840e931e44865e2d2e6", "block_index": 202, - "block_time": 1730116081 + "block_time": 1730139103 } ], "next_cursor": 498, @@ -439,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 206, - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "status": "valid", - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "tx_index": 73, - "block_time": 1730116106, + "block_time": 1730139120, "asset_info": { "divisible": true, "asset_longname": null, @@ -457,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "block_index": 206, - "block_time": 1730116106 + "block_time": 1730139120 } ], "next_cursor": 649, @@ -497,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "status": "valid", - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "71e2343f1a4a660b6eb55c68b383b81198dd1d707df3675c0a345046cc94c411", "tx_index": 60, - "block_time": 1730116045, + "block_time": 1730139058, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "71e2343f1a4a660b6eb55c68b383b81198dd1d707df3675c0a345046cc94c411", "block_index": 194, - "block_time": 1730116045 + "block_time": 1730139058 } ], "next_cursor": null, @@ -532,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "status": "valid", - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "faecdff4961a9fd6da312f456cc6b09157b6d1d851f27819c1c8588c1dd9f23f", "tx_index": 41, - "block_time": 1730115885, + "block_time": 1730138884, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -554,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "faecdff4961a9fd6da312f456cc6b09157b6d1d851f27819c1c8588c1dd9f23f", "block_index": 154, - "block_time": 1730115885 + "block_time": 1730138884 } ], "next_cursor": null, @@ -589,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 201, - "block_time": 1730116077 + "block_time": 1730139090 }, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5", "block_index": 201, - "block_time": 1730116077 + "block_time": 1730139090 } ], "next_cursor": 567, @@ -621,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "status": "valid", "transfer": false, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5", "tx_index": 68, - "block_time": 1730116077, + "block_time": 1730139090, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5", "block_index": 201, - "block_time": 1730116077 + "block_time": 1730139090 } ], "next_cursor": 568, @@ -656,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "status": "valid", "tag": "64657374726f79", - "tx_hash": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c", + "tx_hash": "f7581615776ca9cceecb5482c116c218eab369f2443e471d45cacade6987ffbb", "tx_index": 61, - "block_time": 1730116049, + "block_time": 1730139062, "asset_info": { "divisible": true, "asset_longname": null, @@ -671,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c", + "tx_hash": "f7581615776ca9cceecb5482c116c218eab369f2443e471d45cacade6987ffbb", "block_index": 195, - "block_time": 1730116049 + "block_time": 1730139062 } ], "next_cursor": 157, @@ -705,11 +706,11 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "status": "open", - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "tx_index": 74, - "block_time": 1730116110, + "block_time": 1730139124, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -733,9 +734,9 @@ Here is a list of events classified by theme and for each an example response: "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730139124 } ], "next_cursor": 529, @@ -758,20 +759,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx0_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", "tx0_index": 51, - "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "tx1_address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx1_hash": "8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "tx1_index": 54, - "block_time": 1730116023, + "block_time": 1730139035, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -790,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx_hash": "8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "block_index": 188, - "block_time": 1730116023 + "block_time": 1730139035 } ], "next_cursor": 475, @@ -810,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878" + "tx_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730139124 } ], "next_cursor": 521, @@ -832,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed" + "tx_hash": "0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109" }, - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "777b8db294c20301c6be44567366a7ae2c5f42c92f70002c4a90100213e13d88", "block_index": 187, - "block_time": 1730116019 + "block_time": 1730139032 } ], "next_cursor": null, @@ -853,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", + "order_match_id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", "status": "completed" }, - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "777b8db294c20301c6be44567366a7ae2c5f42c92f70002c4a90100213e13d88", "block_index": 187, - "block_time": 1730116019 + "block_time": 1730139032 } ], "next_cursor": 454, @@ -878,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "order_match_id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "status": "valid", - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "777b8db294c20301c6be44567366a7ae2c5f42c92f70002c4a90100213e13d88", "tx_index": 53, - "block_time": 1730116019, + "block_time": 1730139032, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "777b8db294c20301c6be44567366a7ae2c5f42c92f70002c4a90100213e13d88", "block_index": 187, - "block_time": 1730116019 + "block_time": 1730139032 } ], "next_cursor": null, @@ -907,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "offer_hash": "1ef850048fccd57ed5563510f4f5dac7cfad13dc69f2ada5428f5fe52c58568a", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "status": "valid", - "tx_hash": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603", + "tx_hash": "6fe15c08049a8f5a9d8d40647fdea6088c7fa39f240ce1fc7ddf3720b1806e20", "tx_index": 58, - "block_time": 1730116037 + "block_time": 1730139050 }, - "tx_hash": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603", + "tx_hash": "6fe15c08049a8f5a9d8d40647fdea6088c7fa39f240ce1fc7ddf3720b1806e20", "block_index": 192, - "block_time": 1730116037 + "block_time": 1730139050 } ], "next_cursor": null, @@ -934,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 207, - "order_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "block_time": 1730116110 + "order_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "block_time": 1730139124 }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730139124 } ], "next_cursor": 462, @@ -958,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "block_time": 1730115936 + "order_match_id": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c_2c9739c4b32a49f1a690d13a7cb87c3d70603a1c26d9b9e702a96442bd657671", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "tx1_address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "block_time": 1730138958 }, "tx_hash": null, "block_index": 184, - "block_time": 1730115936 + "block_time": 1730138958 } ], "next_cursor": null, @@ -991,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "satoshirate": 1, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "status": 0, - "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "tx_hash": "d9ebbde4d57e28e43829a23e320e99bd09a0cc05ea6b0c59351e0aee002c241f", "tx_index": 62, - "block_time": 1730116052, + "block_time": 1730139065, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -1010,9 +1011,9 @@ Here is a list of events classified by theme and for each an example response: "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "tx_hash": "d9ebbde4d57e28e43829a23e320e99bd09a0cc05ea6b0c59351e0aee002c241f", "block_index": 196, - "block_time": 1730116052 + "block_time": 1730139065 } ], "next_cursor": 272, @@ -1032,9 +1033,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "status": 0, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "asset_info": { "divisible": true, "asset_longname": null, @@ -1044,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 560, @@ -1065,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mrTk1ThfTwE2f6PUY5vjkJvga5VgZXf4bk", + "destination": "muiEfYPpvbgzQs92KTRehUaij59RKHzNSo", "dispense_quantity": 10, - "dispenser_tx_hash": "a809a9c0b667c336b61ce3e892a7f2d80231121804f3f7db594da58d9ded5a52", - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "tx_hash": "a623caab6512fc5492719029eb7ec34044e6fe307b96362340125090670d3242", + "dispenser_tx_hash": "26ebc0b3d811f899208f2fd859858a2f4c5ffc200c40b4a93bd969c6d36a3b8e", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "tx_hash": "9df76050313158d384d2259e1d729943c97dc2ed63ced9beeb2c11b4e00fa430", "tx_index": 31, - "block_time": 1730115837, + "block_time": 1730138846, "asset_info": { "divisible": true, "asset_longname": null, @@ -1081,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "a623caab6512fc5492719029eb7ec34044e6fe307b96362340125090670d3242", + "tx_hash": "9df76050313158d384d2259e1d729943c97dc2ed63ced9beeb2c11b4e00fa430", "block_index": 144, - "block_time": 1730115837 + "block_time": 1730138846 } ], "next_cursor": null, @@ -1103,14 +1104,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -1121,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 561, @@ -1145,19 +1146,19 @@ Here is a list of events classified by theme and for each an example response: "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "tx_hash": "b62b9151ddb7d171028938e3fa175d44f647c4d938dd939a62f845796c500c47", "tx_index": 25, "value": 66600.0, - "block_time": 1730115814, + "block_time": 1730138821, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "tx_hash": "b62b9151ddb7d171028938e3fa175d44f647c4d938dd939a62f845796c500c47", "block_index": 138, - "block_time": 1730115814 + "block_time": 1730138821 } ], "next_cursor": 213, @@ -1195,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "start_block": 0, "status": "open", - "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_hash": "42a285d407b0482a81904545dacac2ecf78dd87157cdc4ff5c37086b078ee059", "tx_index": 42, - "block_time": 1730115889, + "block_time": 1730138899, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1208,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_hash": "42a285d407b0482a81904545dacac2ecf78dd87157cdc4ff5c37086b078ee059", "block_index": 155, - "block_time": 1730115889 + "block_time": 1730138899 } ], "next_cursor": 196, @@ -1228,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc" + "tx_hash": "484463111a0414fb5c61a2480486d42e52aa4fcb1316ab426dcf72d369af3cc8" }, "tx_hash": null, "block_index": 130, - "block_time": 1730115785 + "block_time": 1730138790 } ], "next_cursor": 110, @@ -1253,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "fairminter_tx_hash": "29b7175f8cb8f4c4676752ff62c91262d377175a6994145c8fb27e832eadcd98", "paid_quantity": 34, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "status": "valid", - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "cb3f7778d2be0cdafe509a5da15d6a13ccbd7acb72821744a6bd3fc15571b4bd", "tx_index": 23, - "block_time": 1730115808, + "block_time": 1730138813, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -1271,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "cb3f7778d2be0cdafe509a5da15d6a13ccbd7acb72821744a6bd3fc15571b4bd", "block_index": 136, - "block_time": 1730115808 + "block_time": 1730138813 } ], "next_cursor": 190, @@ -1294,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "f703cfe223c19e062e103d02c092a7eeb75f16c14dc6840c066ea940ddab89ed:1", + "destination": "6f1e63822f8db7e05983b10e5eccb809a113ddc5d101ffbf44b9987ff6cbc53e:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen", "status": "valid", - "tx_hash": "f703cfe223c19e062e103d02c092a7eeb75f16c14dc6840c066ea940ddab89ed", + "tx_hash": "6f1e63822f8db7e05983b10e5eccb809a113ddc5d101ffbf44b9987ff6cbc53e", "tx_index": 65, - "block_time": 1730116064, + "block_time": 1730139077, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "issuer": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "f703cfe223c19e062e103d02c092a7eeb75f16c14dc6840c066ea940ddab89ed", + "tx_hash": "6f1e63822f8db7e05983b10e5eccb809a113ddc5d101ffbf44b9987ff6cbc53e", "block_index": 199, - "block_time": 1730116064 + "block_time": 1730139077 } ], "next_cursor": 319, @@ -1334,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz", + "destination": "bcrt1qmpe9apwn620rg688seeaa0u2u4mlmu5w6f3x4x", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "ebdd9911ac289e537ed7c712b293decfb0d690c1b2390873d53383b30979e9c8:0", + "source": "a7551034f9a746afa2c8901b415aea2b7f64f7d6b6a15a1f71c78c6a66c99a84:0", "status": "valid", - "tx_hash": "16c2e31138126762962006973bfedc1ced24b4fc3d41616f4ea36346add19de5", + "tx_hash": "f4b6a4879fbd453a637c6317d28e351780e0bdf59819076f1c14710cf8a1e649", "tx_index": 38, - "block_time": 1730115873, + "block_time": 1730138872, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "16c2e31138126762962006973bfedc1ced24b4fc3d41616f4ea36346add19de5", + "tx_hash": "f4b6a4879fbd453a637c6317d28e351780e0bdf59819076f1c14710cf8a1e649", "block_index": 151, - "block_time": 1730115873 + "block_time": 1730138872 } ], "next_cursor": null, @@ -1374,14 +1375,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 208, - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "destination": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "msg_index": 1, "quantity": 1500000000, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "source": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", "status": "valid", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -1391,9 +1392,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 667, @@ -1415,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qrac7m6sqdzx9h798y52wk0qj5205d7vtqfjyds", + "source": "bcrt1qvvlvuw98tvd8xzd0yrsvzfzhgypmh20dkl87yf", "status": "valid", - "tx_hash": "40efc8e4de6bc24410016279eb759071c80e3ac3ee8fc7a52725555c3f89979e", + "tx_hash": "979d8c9a2ebdf389de52fa1660a98b1137ec6da41c097f2a1b0570a06bb4feba", "tx_index": 9, - "block_time": 1730115749, + "block_time": 1730138755, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "40efc8e4de6bc24410016279eb759071c80e3ac3ee8fc7a52725555c3f89979e", + "tx_hash": "979d8c9a2ebdf389de52fa1660a98b1137ec6da41c097f2a1b0570a06bb4feba", "block_index": 121, - "block_time": 1730115749 + "block_time": 1730138755 } ], "next_cursor": 65, @@ -1482,61 +1483,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_hash": "533aa13765b9bc05a46027d588d5a5aa368bfe2ab91d51fe1fcb93aa9b7d2836", + "block_time": 1730139139, + "previous_block_hash": "39f247e162c2a49b3fc5bb01c5374ad7a6c0e7e4573dc5511953a7a7586c5a8b", "difficulty": 545259519, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "aca158120f73c7579de95c79be6418a95a5fa8f657f40712bb994d8c10f77cfc", + "txlist_hash": "df142cc3f0075757b9e9cb9353ce0032b8a9348592893c3daa8f8c40a72ebd2c", + "messages_hash": "4b067e65e521582a964aef05b8d26b6c46e1bd27305b02a262268e210166750c", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", - "block_time": 1730116110, - "previous_block_hash": "43e679712b4649bc798af14df94c86578f3b408d04178a5c2fc175d41a020122", + "block_hash": "39f247e162c2a49b3fc5bb01c5374ad7a6c0e7e4573dc5511953a7a7586c5a8b", + "block_time": 1730139124, + "previous_block_hash": "66c82fc9d180c1057e14fd160979e231193160194e5868ccede7270fb1dcf083", "difficulty": 545259519, - "ledger_hash": "ba02d6708a382d3713cfcfcccac729b1e7e29a6a2aa1c7d19685ccc856890da8", - "txlist_hash": "790b35ebd56c4d625af0345f72bd428d1cb0c0318f9935ae19163367f47cbd3a", - "messages_hash": "1933b8e86c5aad6c5816ac34109db0a5f96f3f784097419eaa5909389373eb47", + "ledger_hash": "da3f4d527c6889db639613b719e5e1ff7769160a38421e23f955e574ceee6c70", + "txlist_hash": "d59fa4308871bfe8a408fd5c26be1f5b5be971484cf2b243eff0aff83384ed68", + "messages_hash": "99013b35255969fc692263b8d647012d710b84809c42ea53e3b169bd3ddd923d", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "43e679712b4649bc798af14df94c86578f3b408d04178a5c2fc175d41a020122", - "block_time": 1730116106, - "previous_block_hash": "4a895299665e1f654c5117e9c4b133cbccccd6db23134dca896fa8a620b81d38", + "block_hash": "66c82fc9d180c1057e14fd160979e231193160194e5868ccede7270fb1dcf083", + "block_time": 1730139120, + "previous_block_hash": "68212fdfd0bce2152a8a3cf0e64966ac7466cb2f07bb0c26a3a60244c9e71395", "difficulty": 545259519, - "ledger_hash": "5191f4352b18e0244b417732e8ca9a2f4099e82fe6378941d597a9d0f44a35eb", - "txlist_hash": "11ed68e7e561ca9c47bd5e3b49cb3a916edd7b0565c99186172ce08b245266b6", - "messages_hash": "6d6616e6036b35108a1433422b6728e8e7184fe366730d6c4167cf4f128f3957", + "ledger_hash": "8ce953386a7efd7bbc292a4dc9f937a1c50ffefc941afae9794ee2b6406cf032", + "txlist_hash": "b8ca9f13b362b9da41bdd4766842547fbea35f015698597cb3e1436aa8b8884c", + "messages_hash": "96ab2200d849f4da4343511c128ba4d3233ef2ee6e86020414d72342a0a090c7", "transaction_count": 1, "confirmed": true }, { "block_index": 205, - "block_hash": "4a895299665e1f654c5117e9c4b133cbccccd6db23134dca896fa8a620b81d38", - "block_time": 1730116102, - "previous_block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", + "block_hash": "68212fdfd0bce2152a8a3cf0e64966ac7466cb2f07bb0c26a3a60244c9e71395", + "block_time": 1730139116, + "previous_block_hash": "5dc2fe5f12af98d66aeeddf67a1ba33af07b6858039b9750e6c7fe9edc2d7f38", "difficulty": 545259519, - "ledger_hash": "9bc1700e61ef5a091713fdba122f7f916443a27ccc0f6f8962ebd916f77b09fe", - "txlist_hash": "447c3368dca8d934fd7757b6f897b5f6060d596592dc32123ae0664d1286d758", - "messages_hash": "933776eb7aae2e8246e02f0527252645708affea8a2cfcee96ed6a4022a47ab8", + "ledger_hash": "43e6b9351b5e6eaa13eb4319f97f63e50e98bf2254c6094cc3fff189ad1f1573", + "txlist_hash": "9874a139c94d5d5cfc5c8ef5751f49d3ebb211defd1f48a6387e89cf4def6de5", + "messages_hash": "7e00471c9b7f4754fd02c72d99889c117296c9d4aa0524470bc63d9a1234bdd1", "transaction_count": 1, "confirmed": true }, { "block_index": 204, - "block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", - "block_time": 1730116099, - "previous_block_hash": "37274251a093028e8065cbc9af85901d3961a9e5e04f4e726b13a0506a915652", + "block_hash": "5dc2fe5f12af98d66aeeddf67a1ba33af07b6858039b9750e6c7fe9edc2d7f38", + "block_time": 1730139112, + "previous_block_hash": "47a1ccf817137291edd203e6184d0835b27cfa48469ac7c1a77ab098d39d113b", "difficulty": 545259519, - "ledger_hash": "aa1ba152bb405e250dbe4f7276f155e4c10345fbf42243536809bc9a0ca0307a", - "txlist_hash": "757b7ab2907208b3a7d0202f310e15a22fd7dd5205a5acef4262a2c013a56c84", - "messages_hash": "f866e444026dcc12e65fad983a1b2435470977f04f7668204304a707a604c729", + "ledger_hash": "f2635765d5eafc03bfeb510cbdbc85d49ecc6ced91d993bee4b9667d21a5351c", + "txlist_hash": "fca85ffa1707737c4751184090137ead1aea54fa2d557f89760b2e3f95b757e1", + "messages_hash": "d5b17fbaa2cf25b484dda76184831beb75074eb84e8e14a79e00aede3e13b551", "transaction_count": 1, "confirmed": true } @@ -1573,13 +1574,13 @@ Return the information of a block { "result": { "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_hash": "533aa13765b9bc05a46027d588d5a5aa368bfe2ab91d51fe1fcb93aa9b7d2836", + "block_time": 1730139139, + "previous_block_hash": "39f247e162c2a49b3fc5bb01c5374ad7a6c0e7e4573dc5511953a7a7586c5a8b", "difficulty": 545259519, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "aca158120f73c7579de95c79be6418a95a5fa8f657f40712bb994d8c10f77cfc", + "txlist_hash": "df142cc3f0075757b9e9cb9353ce0032b8a9348592893c3daa8f8c40a72ebd2c", + "messages_hash": "4b067e65e521582a964aef05b8d26b6c46e1bd27305b02a262268e210166750c", "transaction_count": 1, "confirmed": true } @@ -1591,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d` (str, required) - The index of the block to return + + block_hash: `533aa13765b9bc05a46027d588d5a5aa368bfe2ab91d51fe1fcb93aa9b7d2836` (str, required) - The index of the block to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -1603,13 +1604,13 @@ Return the information of a block { "result": { "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_hash": "533aa13765b9bc05a46027d588d5a5aa368bfe2ab91d51fe1fcb93aa9b7d2836", + "block_time": 1730139139, + "previous_block_hash": "39f247e162c2a49b3fc5bb01c5374ad7a6c0e7e4573dc5511953a7a7586c5a8b", "difficulty": 545259519, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "aca158120f73c7579de95c79be6418a95a5fa8f657f40712bb994d8c10f77cfc", + "txlist_hash": "df142cc3f0075757b9e9cb9353ce0032b8a9348592893c3daa8f8c40a72ebd2c", + "messages_hash": "4b067e65e521582a964aef05b8d26b6c46e1bd27305b02a262268e210166750c", "transaction_count": 1, "confirmed": true } @@ -1640,17 +1641,17 @@ Returns the transactions of a block "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_hash": "533aa13765b9bc05a46027d588d5a5aa368bfe2ab91d51fe1fcb93aa9b7d2836", + "block_time": 1730139139, + "source": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", + "destination": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1 46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1696,11 +1697,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "aca158120f73c7579de95c79be6418a95a5fa8f657f40712bb994d8c10f77cfc", + "messages_hash": "4b067e65e521582a964aef05b8d26b6c46e1bd27305b02a262268e210166750c", "transaction_count": 1, - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "block_time": 1730116123 + "txlist_hash": "df142cc3f0075757b9e9cb9353ce0032b8a9348592893c3daa8f8c40a72ebd2c", + "block_time": 1730139139 }, "tx_hash": null }, @@ -1709,10 +1710,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75 }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67" }, { "event_index": 673, @@ -1721,14 +1722,14 @@ Returns the events of a block "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -1739,7 +1740,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67" }, { "event_index": 672, @@ -1748,9 +1749,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "status": 0, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "asset_info": { "divisible": true, "asset_longname": null, @@ -1760,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67" }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -1785,7 +1786,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67" } ], "next_cursor": 670, @@ -1868,16 +1869,16 @@ Returns the events of a block filtered by event "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -1887,7 +1888,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67" }, { "event_index": 669, @@ -1897,12 +1898,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -1912,7 +1913,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67" }, { "event_index": 666, @@ -1922,22 +1923,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "block_time": 1730139139, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67" } ], "next_cursor": null, @@ -2000,16 +2001,16 @@ Returns the credits of a block "result": [ { "block_index": 208, - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -2025,12 +2026,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -2046,16 +2047,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -2115,12 +2116,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "utxo": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "utxo_address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -2136,16 +2137,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "utxo": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "utxo_address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -2181,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "object_id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", "block_index": 207, "confirmed": true, - "block_time": 1730116110 + "block_time": 1730139124 } ], "next_cursor": null, @@ -2216,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 58, - "tx_hash": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603", + "tx_hash": "6fe15c08049a8f5a9d8d40647fdea6088c7fa39f240ce1fc7ddf3720b1806e20", "block_index": 192, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "offer_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "offer_hash": "1ef850048fccd57ed5563510f4f5dac7cfad13dc69f2ada5428f5fe52c58568a", "status": "valid", "confirmed": true, - "block_time": 1730116037 + "block_time": 1730139050 } ], "next_cursor": null, @@ -2254,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 61, - "tx_hash": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c", + "tx_hash": "f7581615776ca9cceecb5482c116c218eab369f2443e471d45cacade6987ffbb", "block_index": 195, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730116049, + "block_time": 1730139062, "asset_info": { "divisible": true, "asset_longname": null, @@ -2315,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -2337,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730116077, + "block_time": 1730139090, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2371,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "destination": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2382,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -2395,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "destination": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2406,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -2448,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 75, "dispense_index": 0, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "destination": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2483,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -2524,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 60, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "71e2343f1a4a660b6eb55c68b383b81198dd1d707df3675c0a345046cc94c411", "block_index": 194, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730116045, + "block_time": 1730139058, "fee_paid_normalized": "0.00600000" } ], @@ -2572,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_hash": "42a285d407b0482a81904545dacac2ecf78dd87157cdc4ff5c37086b078ee059", "tx_index": 42, "block_index": 155, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2600,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730115889, + "block_time": 1730138899, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2637,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "cb3f7778d2be0cdafe509a5da15d6a13ccbd7acb72821744a6bd3fc15571b4bd", "tx_index": 23, "block_index": 136, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "29b7175f8cb8f4c4676752ff62c91262d377175a6994145c8fb27e832eadcd98", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115808, + "block_time": 1730138813, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -2691,17 +2692,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "tx_hash": "b62b9151ddb7d171028938e3fa175d44f647c4d938dd939a62f845796c500c47", "block_index": 138, - "block_hash": "408b3669259efe9231a8e85810fa01da28c68182a7e963e48f10de4b8073293b", - "block_time": 1730115814, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_hash": "452c6eaee9480d8d8687a34ffb081a832dbcc55c894d1a3d815cc2404a15e04d", + "block_time": 1730138821, + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9:1", + "utxos_info": "b62b9151ddb7d171028938e3fa175d44f647c4d938dd939a62f845796c500c47:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2726,25 +2727,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "777b8db294c20301c6be44567366a7ae2c5f42c92f70002c4a90100213e13d88", "block_index": 187, - "block_hash": "1477c68770e237147df656e4057175af51d384211889daf8c50bc0ac4ee012ef", - "block_time": 1730116019, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "0f35369e82a6bf1c7edb4581640e123b634462d25a7a3a1205cc8e763c468e03", + "block_time": 1730139032, + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "btc_amount": 2000, "fee": 10000, - "data": "0ba70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "data": "0b6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", "supported": true, - "utxos_info": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8:0", + "utxos_info": "777b8db294c20301c6be44567366a7ae2c5f42c92f70002c4a90100213e13d88:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx0_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "tx1_hash": "0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", + "order_match_id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", "status": "valid" } }, @@ -2759,23 +2760,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603", + "tx_hash": "6fe15c08049a8f5a9d8d40647fdea6088c7fa39f240ce1fc7ddf3720b1806e20", "block_index": 192, - "block_hash": "085b3661fde628077cb1bd06946cdbd6a2d4949cc0e15cb4bb02f80a02476132", - "block_time": 1730116037, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "6d35805c9329bb5b71941edbbfabdd876c33eb441bc337b79eddc005914278fe", + "block_time": 1730139050, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4608d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "data": "461ef850048fccd57ed5563510f4f5dac7cfad13dc69f2ada5428f5fe52c58568a", "supported": true, - "utxos_info": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603:1", + "utxos_info": "6fe15c08049a8f5a9d8d40647fdea6088c7fa39f240ce1fc7ddf3720b1806e20:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "offer_hash": "1ef850048fccd57ed5563510f4f5dac7cfad13dc69f2ada5428f5fe52c58568a", "status": "valid" } }, @@ -2790,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c", + "tx_hash": "f7581615776ca9cceecb5482c116c218eab369f2443e471d45cacade6987ffbb", "block_index": 195, - "block_hash": "649f35ce9b812cca25395a6080f41d14c2205deae73e39df344a44c884c252cd", - "block_time": 1730116049, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "block_hash": "047b691f15ab9a8162c61d043d8fcf28a7c9c16894759d1d00e3c2ef95531e5c", + "block_time": 1730139062, + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c:1", + "utxos_info": "f7581615776ca9cceecb5482c116c218eab369f2443e471d45cacade6987ffbb:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2830,17 +2831,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "tx_hash": "d9ebbde4d57e28e43829a23e320e99bd09a0cc05ea6b0c59351e0aee002c241f", "block_index": 196, - "block_hash": "1d9437f22b219d286914a85937f404bce390a88d6cc143f5576fd47635dc7b6d", - "block_time": 1730116052, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "5464b39cdbe2ac9e498deaae1a64288b6f674514cddc7885cf94d580bcce7afb", + "block_time": 1730139065, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109:1", + "utxos_info": "d9ebbde4d57e28e43829a23e320e99bd09a0cc05ea6b0c59351e0aee002c241f:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2857,7 +2858,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -2876,17 +2877,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_hash": "533aa13765b9bc05a46027d588d5a5aa368bfe2ab91d51fe1fcb93aa9b7d2836", + "block_time": 1730139139, + "source": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", + "destination": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1 46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2906,17 +2907,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "faecdff4961a9fd6da312f456cc6b09157b6d1d851f27819c1c8588c1dd9f23f", "block_index": 154, - "block_hash": "6567d716135b76f23ac9e738a9a7cc690af701105e6da61c96461b8c14580cfb", - "block_time": 1730115885, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "490fc4ba5a7417780c4464375292de61b61fc0aa6f76d9ba4318478f563c30b2", + "block_time": 1730138884, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a:1", + "utxos_info": "faecdff4961a9fd6da312f456cc6b09157b6d1d851f27819c1c8588c1dd9f23f:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2929,7 +2930,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -2954,17 +2955,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5", "block_index": 201, - "block_hash": "31229cfb58723faf819c8772e47a52c5cc4c531fdef4370ba12b94679b292486", - "block_time": 1730116077, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "694aa66fa4c17d2199fcbf7cb6959804aa1c8853c87be1b7755746868c1e81f9", + "block_time": 1730139090, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc:1", + "utxos_info": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2996,17 +2997,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", - "block_time": 1730116110, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "39f247e162c2a49b3fc5bb01c5374ad7a6c0e7e4573dc5511953a7a7586c5a8b", + "block_time": 1730139124, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "utxos_info": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3049,17 +3050,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 69, - "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "tx_hash": "50eccc0ccb786046b629ea7cae6bbe7cd918c75a76eef840e931e44865e2d2e6", "block_index": 202, - "block_hash": "13a7856636590644ca049ed5074ccb96a6b9694cf0a3187ec4d3b50111b76353", - "block_time": 1730116081, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "792b9905de3e7d2dce2f4bd6005c6a47209f579e2bd92a800b5e2efa9b1a467c", + "block_time": 1730139103, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880a500a0204b6c11d32ab0bd14b78f9db630019898", + "data": "02000000178d82231300000000000003e880ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a5", "supported": true, - "utxos_info": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02:1", + "utxos_info": "50eccc0ccb786046b629ea7cae6bbe7cd918c75a76eef840e931e44865e2d2e6:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3067,12 +3068,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -3090,17 +3091,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "block_index": 206, - "block_hash": "43e679712b4649bc798af14df94c86578f3b408d04178a5c2fc175d41a020122", - "block_time": 1730116106, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "block_hash": "66c82fc9d180c1057e14fd160979e231193160194e5868ccede7270fb1dcf083", + "block_time": 1730139120, + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038088638b12211ad2887d7013cdfa98b822eb7f220a802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380abfde7e500a8fa0b913a29a15b6144de743eac8e804edee264e437d1df26c6d93c307e7ff097166b848048856eb8c17951dac58843912376a31fe76b958e88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257:0", + "utxos_info": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3108,14 +3109,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -3123,7 +3124,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3149,23 +3150,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 60, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "71e2343f1a4a660b6eb55c68b383b81198dd1d707df3675c0a345046cc94c411", "block_index": 194, - "block_hash": "59079c23beb8663ec42bf5ef0e77bfe0a1acd003e0ccddfe92b0611464c57038", - "block_time": 1730116045, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "block_hash": "62438d5c0469adf0c9b497b7f1a90f77d6cf28955149d5bf654f0fa6b51034c3", + "block_time": 1730139058, + "source": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04802ae165e7b04a97caa52d91a46d89891d704370ff017377656570206d7920617373657473", + "data": "048048856eb8c17951dac58843912376a31fe76b958e017377656570206d7920617373657473", "supported": true, - "utxos_info": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4:1", + "utxos_info": "71e2343f1a4a660b6eb55c68b383b81198dd1d707df3675c0a345046cc94c411:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "flags": 1, "memo": "sweep my assets" } @@ -3198,17 +3199,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_hash": "533aa13765b9bc05a46027d588d5a5aa368bfe2ab91d51fe1fcb93aa9b7d2836", + "block_time": 1730139139, + "source": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", + "destination": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1 46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3221,17 +3222,17 @@ Returns the list of the last ten transactions }, { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", - "block_time": 1730116110, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "39f247e162c2a49b3fc5bb01c5374ad7a6c0e7e4573dc5511953a7a7586c5a8b", + "block_time": 1730139124, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "utxos_info": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3276,7 +3277,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `0200000000010122235f2d650a226bf825e40c3473b0e86f83f9343173f94cbc4a32f87c65de5a0000000000ffffffff020000000000000000356a33092deefc89a2a67b64e4c655a20092a63cf5fe4084982c805fb233a2bc65b00a4ef01528b34993cb1af6dde83d6b01746fbf64f0ca052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02473044022021eba1988ce97e426258deed9b863cd2f5e51abed055fc30eafdd9d5673ebbca022035367d00fdbc15592a449b1d3aceb36faeb59a30b022c4120fe5ae511cdf3b44012103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f500000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001064a80f53fb06e8e843721f0f8ea70694c200bbcf43ca693e31d5e6ad26ede86370000000000fffffffffbf2072f9f531905c8cacac06d0607a4467947f9904bd397d520d46436bb188e0000000000ffffffffc16bda00e0d2ce1c43ed87cd029084baf0c296465a072a3b2ddadf6fab4c52740000000000ffffffff269f505ed13beecc05a11a28d74ff01ff362b72da17732e7de0d20d725551af50000000000ffffffff076d5570db434ef35d4217936b13eed5e7b897a6ee16eed93f57728818b36abc0000000000ffffffff58386364a4a7a0dbace5ca0cd7cd9439c3e486a76a149822250c2ee867ae0e1d0000000000ffffffff04e8030000000000006951210397b22feb51a90b63a8dd411831c3f1d272662b94d56e332e1f53c6292602956c2102d6bc3297327b6fc712629e89d721fbe1b2bd62443370b3fad573e53c50aca3162103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d553aee8030000000000006951210397b22feb51a90b63a8048493f2be6b77f82f11c33fe673f8c673da0283cd1b492102df19b2d9ec990b093006d41aad32c7d1ccc292d32511b217f89be4b711d5f2b72103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d553aee80300000000000069512102b6b22feb51a90b63a8de411bb12fc8015b30f6a8aa6867d3ad5d521b8309cfbb2103df19b2d9ec990b2325b341af11f8c7d1ccc292d3251b377a9df68b8491d5f2132103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d553ae387923fc06000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e0247304402201fe5a81fb7c91cbec09001e1e9991828d8635c06ee548e869b2b5a65a5ace087022073bb82138c58c025956de4cccfd14dcff24ba0911aa3833560d76429faa81108012103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d50247304402204abf58638b752657a4583c4f8c83892d6e104aaaa3e64e0d4bc010752050076602202ee66a83c8f2e4ae83d1baddbf7ed306e756f2d4512ab69d03e9ab2ba58b1b9a012103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d50247304402203f17fcca4c6ac873d85eb35e6bd018f8c713fb9abb1062e6dc813944fa45cebd02207aaf34ba059cc0be55025d6c01bad010a6a90e6883575ae3d535c6dfcff9743a012103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d5024730440220487bff45fe83cc9247bf2cb3bca2130eb6af76718930b72b422b4bd09690b7ab022030294ba5959385153e07eb6f06556f6e38c71ff8a4b382877141e0e765347e1d012103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d5024730440220023f0ee5cd164d7cba26cb1f07bf6db3dab4fa2c35d994d0ec2d4ddac627f68202207f8eebfa05d619303380d92972974299d01d3ddf1c8754e00a25c5c9ab81d487012103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d50247304402206cf2314f154e05433faf62cb333451e397e26b6c8f7353f2e58496c45caeefad02201151aa8603e66752dcd141dd9a735766855ea5aede63e5049dbe0c7ddfe8ce45012103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d500000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -3289,18 +3290,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "03000380ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a5804edee264e437d1df26c6d93c307e7ff097166b848048856eb8c17951dac58843912376a31fe76b958e40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "22235f2d650a226bf825e40c3473b0e86f83f9343173f94cbc4a32f87c65de5a", + "hash": "4a80f53fb06e8e843721f0f8ea70694c200bbcf43ca693e31d5e6ad26ede8637", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "fbf2072f9f531905c8cacac06d0607a4467947f9904bd397d520d46436bb188e", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "c16bda00e0d2ce1c43ed87cd029084baf0c296465a072a3b2ddadf6fab4c5274", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "269f505ed13beecc05a11a28d74ff01ff362b72da17732e7de0d20d725551af5", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "076d5570db434ef35d4217936b13eed5e7b897a6ee16eed93f57728818b36abc", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "58386364a4a7a0dbace5ca0cd7cd9439c3e486a76a149822250c2ee867ae0e1d", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3309,51 +3345,75 @@ Returns Counterparty information from a raw transaction in hex format. ], "vout": [ { - "value": 0, - "script_pub_key": "6a33092deefc89a2a67b64e4c655a20092a63cf5fe4084982c805fb233a2bc65b00a4ef01528b34993cb1af6dde83d6b01746fbf64" + "value": 1000, + "script_pub_key": "51210397b22feb51a90b63a8dd411831c3f1d272662b94d56e332e1f53c6292602956c2102d6bc3297327b6fc712629e89d721fbe1b2bd62443370b3fad573e53c50aca3162103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d553ae" }, { - "value": 4999990000, - "script_pub_key": "001488638b12211ad2887d7013cdfa98b822eb7f220a" + "value": 1000, + "script_pub_key": "51210397b22feb51a90b63a8048493f2be6b77f82f11c33fe673f8c673da0283cd1b492102df19b2d9ec990b093006d41aad32c7d1ccc292d32511b217f89be4b711d5f2b72103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d553ae" + }, + { + "value": 1000, + "script_pub_key": "512102b6b22feb51a90b63a8de411bb12fc8015b30f6a8aa6867d3ad5d521b8309cfbb2103df19b2d9ec990b2325b341af11f8c7d1ccc292d3251b377a9df68b8491d5f2132103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d553ae" + }, + { + "value": 29999987000, + "script_pub_key": "0014abfde7e500a8fa0b913a29a15b6144de743eac8e" } ], "vtxinwit": [ - "3044022021eba1988ce97e426258deed9b863cd2f5e51abed055fc30eafdd9d5673ebbca022035367d00fdbc15592a449b1d3aceb36faeb59a30b022c4120fe5ae511cdf3b4401", - "03998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f5" + "304402201fe5a81fb7c91cbec09001e1e9991828d8635c06ee548e869b2b5a65a5ace087022073bb82138c58c025956de4cccfd14dcff24ba0911aa3833560d76429faa8110801", + "03f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d5", + "304402204abf58638b752657a4583c4f8c83892d6e104aaaa3e64e0d4bc010752050076602202ee66a83c8f2e4ae83d1baddbf7ed306e756f2d4512ab69d03e9ab2ba58b1b9a01", + "03f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d5", + "304402203f17fcca4c6ac873d85eb35e6bd018f8c713fb9abb1062e6dc813944fa45cebd02207aaf34ba059cc0be55025d6c01bad010a6a90e6883575ae3d535c6dfcff9743a01", + "03f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d5", + "30440220487bff45fe83cc9247bf2cb3bca2130eb6af76718930b72b422b4bd09690b7ab022030294ba5959385153e07eb6f06556f6e38c71ff8a4b382877141e0e765347e1d01", + "03f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d5", + "30440220023f0ee5cd164d7cba26cb1f07bf6db3dab4fa2c35d994d0ec2d4ddac627f68202207f8eebfa05d619303380d92972974299d01d3ddf1c8754e00a25c5c9ab81d48701", + "03f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d5", + "304402206cf2314f154e05433faf62cb333451e397e26b6c8f7353f2e58496c45caeefad02201151aa8603e66752dcd141dd9a735766855ea5aede63e5049dbe0c7ddfe8ce4501", + "03f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d5" ], "lock_time": 0, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", - "tx_id": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8" + "tx_hash": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", + "tx_id": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5" }, "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", + "quantity": 10, + "memo": "memo2", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } + { + "asset": "XCP", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "quantity": 10, + "memo": "memo1", + "memo_is_hex": false, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] }, "btc_amount_normalized": "0.00000000" } @@ -3365,7 +3425,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f` (str, required) - Transaction hash + + tx_hash: `20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92` (str, required) - Transaction hash + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3376,18 +3436,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", + "data": "0200000000000000010000000000002710804edee264e437d1df26c6d93c307e7ff097166b84", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "5a50713f58b6550c247df7c2b8567c2c4a84f20cb8cb68753db3ba99f474dc98", + "hash": "099f03ff171e5290bcd6f63a02d94b77a126b27d2671868605825c39545430a4", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3397,20 +3457,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2eb84b152a827bd18cceeba1308198de9799d937904e165fafd90b85dbc93bc1a08b3043d21b9b815079166ecce04f" + "script_pub_key": "6a2eba63eff47ceba9025a13583127759e6923444e07520830825cf7beffd3aa855368baf088e40e3b0d12c0c70a4588" }, { "value": 4999970000, - "script_pub_key": "00142ae165e7b04a97caa52d91a46d89891d704370ff" + "script_pub_key": "001448856eb8c17951dac58843912376a31fe76b958e" } ], "vtxinwit": [ - "3044022041d4d57109cb06f7743adf5e31ff61ae4d4d8e4b0aa597e866693a4ec0db1e4b022068a38087d86e8473a3601cb134cb4a9cdee4c11ec669e3e4c9f0234ab4f7a9c101", - "02d9ed6b0141de6dd60aa82fcd650f0ea18a84a8c9069b9ff072e09c8174a59ea3" + "304402201138335bbf3256bf1fc670bd9161ee095cd0e8d02163fe68f50b6d4f5f3fe46902203a6e53b1de7ae5b545cbe748eb78af090e2262fccdc3e0523ee571cc09e9617301", + "02d3229b39c8715b21714d9f14d45f549465a5ec79969751d34fb773af56b7b34d" ], "lock_time": 0, - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", - "tx_id": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f" + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", + "tx_id": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3418,7 +3478,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "memo": null, "asset_info": { "divisible": true, @@ -3479,17 +3539,17 @@ Returns a transaction by its index. { "result": { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_hash": "533aa13765b9bc05a46027d588d5a5aa368bfe2ab91d51fe1fcb93aa9b7d2836", + "block_time": 1730139139, + "source": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", + "destination": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1 46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3508,7 +3568,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8` (str, required) - The hash of the transaction + + tx_hash: `46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67` (str, required) - The hash of the transaction + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3520,17 +3580,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_hash": "533aa13765b9bc05a46027d588d5a5aa368bfe2ab91d51fe1fcb93aa9b7d2836", + "block_time": 1730139139, + "source": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", + "destination": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1 46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3573,12 +3633,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75 }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 673, @@ -3587,14 +3647,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -3605,9 +3665,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 672, @@ -3616,9 +3676,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "status": 0, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "asset_info": { "divisible": true, "asset_longname": null, @@ -3628,24 +3688,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -3655,9 +3715,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 670, @@ -3665,14 +3725,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 208, - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "destination": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "msg_index": 1, "quantity": 1500000000, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "source": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", "status": "valid", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -3682,9 +3742,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 669, @@ -3697,7 +3757,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8` (str, required) - The hash of the transaction to return + + tx_hash: `46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `675` (str, optional) - The last event index to return @@ -3721,12 +3781,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75 }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 673, @@ -3735,14 +3795,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -3753,9 +3813,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 672, @@ -3764,9 +3824,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "status": 0, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "asset_info": { "divisible": true, "asset_longname": null, @@ -3776,24 +3836,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -3803,9 +3863,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 670, @@ -3813,14 +3873,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 208, - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "destination": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "msg_index": 1, "quantity": 1500000000, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "source": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", "status": "valid", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -3830,9 +3890,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 669, @@ -3845,7 +3905,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8` (str, required) - The hash of the transaction to return + + tx_hash: `46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67` (str, required) - The hash of the transaction to return + cursor (str, optional) - The last index of the debits to return + Default: `None` + limit: `5` (int, optional) - The maximum number of debits to return @@ -3864,10 +3924,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "destination": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3875,7 +3935,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -3888,10 +3948,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "destination": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3899,11 +3959,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -3921,7 +3981,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8` (str, required) - The hash of the transaction to return + + tx_hash: `46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67` (str, required) - The hash of the transaction to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -3941,27 +4001,27 @@ Returns the dispenses of a block { "tx_index": 75, "dispense_index": 0, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "destination": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3976,7 +4036,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -4020,16 +4080,16 @@ Returns the events of a transaction "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -4039,9 +4099,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 669, @@ -4051,12 +4111,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -4066,9 +4126,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 666, @@ -4078,24 +4138,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "block_time": 1730139139, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": null, @@ -4108,7 +4168,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8` (str, required) - The hash of the transaction to return + + tx_hash: `46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `675` (str, optional) - The last event index to return + Default: `None` @@ -4130,16 +4190,16 @@ Returns the events of a transaction "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -4149,9 +4209,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 669, @@ -4161,12 +4221,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -4176,9 +4236,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 666, @@ -4188,24 +4248,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "block_time": 1730139139, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": null, @@ -4220,7 +4280,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr,bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c,bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy` (str, required) - Comma separated list of addresses + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -4244,7 +4304,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4254,7 +4314,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -4265,7 +4325,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4275,7 +4335,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -4286,7 +4346,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4296,7 +4356,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -4307,7 +4367,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4317,7 +4377,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -4328,7 +4388,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4338,7 +4398,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -4349,7 +4409,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4359,7 +4419,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -4376,7 +4436,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr,bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c,bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy` (str, required) - Comma separated list of addresses to return + cursor: `75` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4395,17 +4455,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", - "block_time": 1730116110, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "39f247e162c2a49b3fc5bb01c5374ad7a6c0e7e4573dc5511953a7a7586c5a8b", + "block_time": 1730139124, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "utxos_info": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4441,17 +4501,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "block_index": 206, - "block_hash": "43e679712b4649bc798af14df94c86578f3b408d04178a5c2fc175d41a020122", - "block_time": 1730116106, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "block_hash": "66c82fc9d180c1057e14fd160979e231193160194e5868ccede7270fb1dcf083", + "block_time": 1730139120, + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038088638b12211ad2887d7013cdfa98b822eb7f220a802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380abfde7e500a8fa0b913a29a15b6144de743eac8e804edee264e437d1df26c6d93c307e7ff097166b848048856eb8c17951dac58843912376a31fe76b958e88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257:0", + "utxos_info": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4459,14 +4519,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -4474,7 +4534,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4493,17 +4553,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 72, - "tx_hash": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "tx_hash": "ad6acaa7ce5c591cc3f7630eaf35dd7ad07861746f4f0dacb964a334a3cc7951", "block_index": 205, - "block_hash": "4a895299665e1f654c5117e9c4b133cbccccd6db23134dca896fa8a620b81d38", - "block_time": 1730116102, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "block_hash": "68212fdfd0bce2152a8a3cf0e64966ac7466cb2f07bb0c26a3a60244c9e71395", + "block_time": 1730139116, + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038088638b12211ad2887d7013cdfa98b822eb7f220a802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ffc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380abfde7e500a8fa0b913a29a15b6144de743eac8e804edee264e437d1df26c6d93c307e7ff097166b848048856eb8c17951dac58843912376a31fe76b958ec8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0:0", + "utxos_info": "ad6acaa7ce5c591cc3f7630eaf35dd7ad07861746f4f0dacb964a334a3cc7951:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4511,14 +4571,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -4526,7 +4586,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4545,17 +4605,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "block_index": 204, - "block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", - "block_time": 1730116099, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "5dc2fe5f12af98d66aeeddf67a1ba33af07b6858039b9750e6c7fe9edc2d7f38", + "block_time": 1730139112, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a5804edee264e437d1df26c6d93c307e7ff097166b848048856eb8c17951dac58843912376a31fe76b958e40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5:0", + "utxos_info": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4563,14 +4623,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -4578,7 +4638,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4597,17 +4657,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb", "block_index": 203, - "block_hash": "37274251a093028e8065cbc9af85901d3961a9e5e04f4e726b13a0506a915652", - "block_time": 1730116095, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "47a1ccf817137291edd203e6184d0835b27cfa48469ac7c1a77ab098d39d113b", + "block_time": 1730139107, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a5804edee264e437d1df26c6d93c307e7ff097166b848048856eb8c17951dac58843912376a31fe76b958e88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354:0", + "utxos_info": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4615,14 +4675,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -4630,7 +4690,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4658,7 +4718,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr,bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c,bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `675` (str, optional) - The last event index to return @@ -4694,11 +4754,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "status": "open", - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "tx_index": 74, - "block_time": 1730116110, + "block_time": 1730139124, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4722,24 +4782,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730139124 }, { "event_index": 658, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "block_index": 207, - "event": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "event": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "quantity": 1000, "tx_index": 74, "utxo": null, "utxo_address": null, - "block_time": 1730116110, + "block_time": 1730139124, "asset_info": { "divisible": true, "asset_longname": null, @@ -4749,37 +4809,37 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730139124 }, { "event_index": 657, "event": "ORDER_EXPIRATION", "params": { "block_index": 207, - "order_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "block_time": 1730116110 + "order_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "block_time": 1730139124 }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730139124 }, { "event_index": 656, "event": "CREDIT", "params": { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "block_index": 207, "calling_function": "cancel order", - "event": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "event": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730116110, + "block_time": 1730139124, "asset_info": { "divisible": true, "asset_longname": null, @@ -4789,25 +4849,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00005000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730139124 }, { "event_index": 654, "event": "NEW_TRANSACTION", "params": { - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_hash": "39f247e162c2a49b3fc5bb01c5374ad7a6c0e7e4573dc5511953a7a7586c5a8b", "block_index": 207, - "block_time": 1730116110, + "block_time": 1730139124, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "tx_index": 74, - "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "utxos_info": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4839,9 +4899,9 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730139124 } ], "next_cursor": 650, @@ -4854,7 +4914,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu,bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9,bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge` (str, required) - Comma separated list of addresses to return + cursor (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return @@ -4870,17 +4930,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "memo": null, "quantity": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "status": "valid", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "tx_index": 76, "asset_info": { "divisible": true, @@ -4891,22 +4951,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "CREDIT", "params": { - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -4916,22 +4976,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "XCP", "block_index": 208, - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -4941,30 +5001,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730116127.587877, + "block_time": 1730139143.3448281, "btc_amount": 0, - "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", + "data": "0200000000000000010000000000002710804edee264e437d1df26c6d93c307e7ff097166b84", "destination": "", "fee": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "tx_index": 76, - "utxos_info": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f:1", + "utxos_info": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "memo": null, "asset_info": { "divisible": true, @@ -4978,7 +5038,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 } ], "next_cursor": null, @@ -4991,7 +5051,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -5011,7 +5071,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5019,14 +5079,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5034,14 +5094,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5049,14 +5109,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -5071,7 +5131,7 @@ Returns the balances of an address "quantity_normalized": "826.49941000" }, { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5079,7 +5139,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -5096,7 +5156,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -5109,7 +5169,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -5134,7 +5194,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5184,16 +5244,16 @@ Returns the credits of an address "result": [ { "block_index": 207, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "event": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116110, + "block_time": 1730139124, "asset_info": { "divisible": true, "asset_longname": null, @@ -5205,16 +5265,16 @@ Returns the credits of an address }, { "block_index": 206, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "event": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730139120, "asset_info": { "divisible": true, "asset_longname": null, @@ -5226,16 +5286,16 @@ Returns the credits of an address }, { "block_index": 205, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "event": "ad6acaa7ce5c591cc3f7630eaf35dd7ad07861746f4f0dacb964a334a3cc7951", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116102, + "block_time": 1730139116, "asset_info": { "divisible": true, "asset_longname": null, @@ -5247,20 +5307,20 @@ Returns the credits of an address }, { "block_index": 201, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "event": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5", "tx_index": 68, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116077, + "block_time": 1730139090, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -5268,16 +5328,16 @@ Returns the credits of an address }, { "block_index": 192, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "event": "1ef850048fccd57ed5563510f4f5dac7cfad13dc69f2ada5428f5fe52c58568a", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116037, + "block_time": 1730139050, "asset_info": { "divisible": true, "asset_longname": null, @@ -5298,7 +5358,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5337,16 +5397,16 @@ Returns the debits of an address "result": [ { "block_index": 207, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "event": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116110, + "block_time": 1730139124, "asset_info": { "divisible": true, "asset_longname": null, @@ -5358,16 +5418,16 @@ Returns the debits of an address }, { "block_index": 204, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "event": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730139112, "asset_info": { "divisible": true, "asset_longname": null, @@ -5379,20 +5439,20 @@ Returns the debits of an address }, { "block_index": 204, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "event": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730139112, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -5400,16 +5460,16 @@ Returns the debits of an address }, { "block_index": 203, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "event": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730139107, "asset_info": { "divisible": true, "asset_longname": null, @@ -5421,20 +5481,20 @@ Returns the debits of an address }, { "block_index": 203, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "event": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730139107, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -5451,7 +5511,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address of the feed + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5486,7 +5546,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address to return + cursor (str, optional) - The last index of the broadcasts to return + Default: `None` + limit: `5` (int, optional) - The maximum number of broadcasts to return @@ -5505,9 +5565,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "261b5785cc07a1f7000bee3be198f5d90393f35ed50ad3c8656eafadf5e468dc", + "tx_hash": "249d7545e6d4ac34989f93c91683e943579bbff7ce734459d67bb521e134c5ab", "block_index": 137, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5515,7 +5575,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730115811, + "block_time": 1730138818, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5529,7 +5589,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address to return + cursor (str, optional) - The last index of the burns to return + Default: `None` + limit: `5` (int, optional) - The maximum number of burns to return @@ -5548,14 +5608,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "4e51590e06d15e411d148775427a365b6d8b79fe62e2bddbc21caf33d13f1998", + "tx_hash": "7e77c481689bb721aff9b32fa380ec127ade43e229c51bf7684b29c233428bde", "block_index": 112, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730115719, + "block_time": 1730138723, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5570,7 +5630,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address to return + cursor (str, optional) - The last index of the sends to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sends to return @@ -5589,10 +5649,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5600,7 +5660,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730139112, "asset_info": { "divisible": true, "asset_longname": null, @@ -5613,10 +5673,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5624,11 +5684,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730139112, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -5637,10 +5697,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5648,11 +5708,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730139112, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -5661,10 +5721,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb", "block_index": 203, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5672,7 +5732,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730139107, "asset_info": { "divisible": true, "asset_longname": null, @@ -5685,10 +5745,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb", "block_index": 203, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5696,11 +5756,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730139107, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -5718,7 +5778,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz` (str, required) - The address to return + + address: `bcrt1qmpe9apwn620rg688seeaa0u2u4mlmu5w6f3x4x` (str, required) - The address to return + cursor (str, optional) - The last index of the sends to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sends to return @@ -5737,10 +5797,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "16c2e31138126762962006973bfedc1ced24b4fc3d41616f4ea36346add19de5", + "tx_hash": "f4b6a4879fbd453a637c6317d28e351780e0bdf59819076f1c14710cf8a1e649", "block_index": 151, - "source": "ebdd9911ac289e537ed7c712b293decfb0d690c1b2390873d53383b30979e9c8:0", - "destination": "bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz", + "source": "a7551034f9a746afa2c8901b415aea2b7f64f7d6b6a15a1f71c78c6a66c99a84:0", + "destination": "bcrt1qmpe9apwn620rg688seeaa0u2u4mlmu5w6f3x4x", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5748,11 +5808,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730115873, + "block_time": 1730138872, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -5770,7 +5830,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5790,10 +5850,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5801,11 +5861,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730139112, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -5814,10 +5874,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5825,11 +5885,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730139112, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -5838,10 +5898,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb", "block_index": 203, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5849,11 +5909,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730139107, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -5862,10 +5922,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb", "block_index": 203, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5873,11 +5933,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730139107, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -5886,10 +5946,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 69, - "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "tx_hash": "50eccc0ccb786046b629ea7cae6bbe7cd918c75a76eef840e931e44865e2d2e6", "block_index": 202, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5897,11 +5957,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116081, + "block_time": 1730139103, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -5919,7 +5979,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz` (str, required) - The address to return + + address: `bcrt1qmpe9apwn620rg688seeaa0u2u4mlmu5w6f3x4x` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5947,7 +6007,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5976,9 +6036,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5987,7 +6047,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5997,7 +6057,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -6013,9 +6073,9 @@ Returns the dispensers of an address }, { "tx_index": 62, - "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "tx_hash": "d9ebbde4d57e28e43829a23e320e99bd09a0cc05ea6b0c59351e0aee002c241f", "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6024,7 +6084,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6034,11 +6094,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730116055, + "block_time": 1730139069, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -6059,7 +6119,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -6072,9 +6132,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6083,7 +6143,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6093,7 +6153,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -6115,7 +6175,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -6135,19 +6195,19 @@ Returns the dispenses of a source { "tx_index": 63, "dispense_index": 0, - "tx_hash": "6afc6887d0234625af2de1aad7aa4588fb3aa054b9f1df4e9de8cd43df5794ae", + "tx_hash": "e9caa143d2b32587a41f3183a44bf80222940ae76a0971fb1533667751cf7d5a", "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "dispenser_tx_hash": "d9ebbde4d57e28e43829a23e320e99bd09a0cc05ea6b0c59351e0aee002c241f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6155,7 +6215,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6170,11 +6230,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730116055, + "block_time": 1730139069, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -6184,19 +6244,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "7a4c44d71545a4556d59db3caa34caf7de69c38085266b8f5ea4ce1723d55aa8", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6204,7 +6264,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6219,7 +6279,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -6233,19 +6293,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "901a08fbae97fe2160697f1a26dd121e99535032168302051e6f3200df15a665", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6253,7 +6313,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6268,7 +6328,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730138829, "asset_info": { "divisible": true, "asset_longname": null, @@ -6290,7 +6350,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address to return + + address: `bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -6310,19 +6370,19 @@ Returns the dispenses of a destination { "tx_index": 63, "dispense_index": 0, - "tx_hash": "6afc6887d0234625af2de1aad7aa4588fb3aa054b9f1df4e9de8cd43df5794ae", + "tx_hash": "e9caa143d2b32587a41f3183a44bf80222940ae76a0971fb1533667751cf7d5a", "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "dispenser_tx_hash": "d9ebbde4d57e28e43829a23e320e99bd09a0cc05ea6b0c59351e0aee002c241f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6330,7 +6390,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6345,11 +6405,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730116055, + "block_time": 1730139069, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -6359,19 +6419,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "7a4c44d71545a4556d59db3caa34caf7de69c38085266b8f5ea4ce1723d55aa8", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6379,7 +6439,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6394,7 +6454,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -6408,19 +6468,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "901a08fbae97fe2160697f1a26dd121e99535032168302051e6f3200df15a665", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6428,7 +6488,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6443,7 +6503,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730138829, "asset_info": { "divisible": true, "asset_longname": null, @@ -6465,7 +6525,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` @@ -6486,19 +6546,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "7a4c44d71545a4556d59db3caa34caf7de69c38085266b8f5ea4ce1723d55aa8", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6506,7 +6566,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6521,7 +6581,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -6535,19 +6595,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "901a08fbae97fe2160697f1a26dd121e99535032168302051e6f3200df15a665", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6555,7 +6615,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6570,7 +6630,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730138829, "asset_info": { "divisible": true, "asset_longname": null, @@ -6592,7 +6652,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address to return + + address: `bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` @@ -6613,19 +6673,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "7a4c44d71545a4556d59db3caa34caf7de69c38085266b8f5ea4ce1723d55aa8", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6633,7 +6693,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6648,7 +6708,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -6662,19 +6722,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "901a08fbae97fe2160697f1a26dd121e99535032168302051e6f3200df15a665", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6682,7 +6742,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6697,7 +6757,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730138829, "asset_info": { "divisible": true, "asset_longname": null, @@ -6719,7 +6779,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu` (str, required) - The address to return + + address: `bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9` (str, required) - The address to return + cursor (str, optional) - The last index of the sweeps to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sweeps to return @@ -6738,16 +6798,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 60, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "71e2343f1a4a660b6eb55c68b383b81198dd1d707df3675c0a345046cc94c411", "block_index": 194, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730116045, + "block_time": 1730139058, "fee_paid_normalized": "0.00600000" } ], @@ -6761,7 +6821,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6793,14 +6853,14 @@ Returns the issuances of an address "result": [ { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -6815,20 +6875,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730116077, + "block_time": 1730139090, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "92d810aacd89aaed4756618250d3df3739516fda551847d01a705a57cf250e1c", + "tx_hash": "2cf2f6adb24fe9a7be38a9d3f3d1031e31d13d9c9802e1bb5d7666d98e13c3e9", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -6843,20 +6903,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730115921, + "block_time": 1730138943, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "652fa348e445bedc79af7c8da7e9edd116fc6586bb2896968234ade2b0de91c4", + "tx_hash": "57cdd83d521d29f8483683c177b56cd0dd6910de4cfd2709dcabad68c77f1032", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -6871,20 +6931,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730115918, + "block_time": 1730138929, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "a9640b7ef998e1287a94371074ed8dd399613638ecb6a9c1a406fd5ce29727e0", + "tx_hash": "75572517365df9448cdf1643368ee288e155a812cdf80dd46fdf74abafa5cf95", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -6899,20 +6959,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730115914, + "block_time": 1730138915, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "3b8ccc6e7a34c3d602643f13d9ce884ecd2831847f6eab4961146b4a71491ad1", + "tx_hash": "aa8f7edb7468ca5f902df226f2e332d812401e0d2f9001dc4bb9369ee7945de7", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -6927,7 +6987,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730115900, + "block_time": 1730138911, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6942,7 +7002,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The issuer or owner to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6965,8 +7025,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 100000000000, @@ -6974,16 +7034,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730116077, - "last_issuance_block_time": 1730116077, + "first_issuance_block_time": 1730139090, + "last_issuance_block_time": 1730139090, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 10000000000, @@ -6991,16 +7051,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730115900, - "last_issuance_block_time": 1730115918, + "first_issuance_block_time": 1730138911, + "last_issuance_block_time": 1730138929, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 100000000000, @@ -7008,16 +7068,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730115851, - "last_issuance_block_time": 1730115851, + "first_issuance_block_time": 1730138861, + "last_issuance_block_time": 1730138861, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 40, @@ -7025,16 +7085,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730115804, - "last_issuance_block_time": 1730115808, + "first_issuance_block_time": 1730138810, + "last_issuance_block_time": 1730138813, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 19, @@ -7042,8 +7102,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730115789, - "last_issuance_block_time": 1730115800, + "first_issuance_block_time": 1730138794, + "last_issuance_block_time": 1730138806, "supply_normalized": "0.00000019" } ], @@ -7057,7 +7117,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The issuer to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The issuer to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7080,8 +7140,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 100000000000, @@ -7089,16 +7149,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730116077, - "last_issuance_block_time": 1730116077, + "first_issuance_block_time": 1730139090, + "last_issuance_block_time": 1730139090, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 10000000000, @@ -7106,16 +7166,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730115900, - "last_issuance_block_time": 1730115918, + "first_issuance_block_time": 1730138911, + "last_issuance_block_time": 1730138929, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 100000000000, @@ -7123,16 +7183,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730115851, - "last_issuance_block_time": 1730115851, + "first_issuance_block_time": 1730138861, + "last_issuance_block_time": 1730138861, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 40, @@ -7140,16 +7200,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730115804, - "last_issuance_block_time": 1730115808, + "first_issuance_block_time": 1730138810, + "last_issuance_block_time": 1730138813, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 19, @@ -7157,8 +7217,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730115789, - "last_issuance_block_time": 1730115800, + "first_issuance_block_time": 1730138794, + "last_issuance_block_time": 1730138806, "supply_normalized": "0.00000019" } ], @@ -7172,7 +7232,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The owner to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7195,8 +7255,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 100000000000, @@ -7204,16 +7264,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730116077, - "last_issuance_block_time": 1730116077, + "first_issuance_block_time": 1730139090, + "last_issuance_block_time": 1730139090, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 10000000000, @@ -7221,16 +7281,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730115900, - "last_issuance_block_time": 1730115918, + "first_issuance_block_time": 1730138911, + "last_issuance_block_time": 1730138929, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 100000000000, @@ -7238,16 +7298,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730115851, - "last_issuance_block_time": 1730115851, + "first_issuance_block_time": 1730138861, + "last_issuance_block_time": 1730138861, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 40, @@ -7255,16 +7315,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730115804, - "last_issuance_block_time": 1730115808, + "first_issuance_block_time": 1730138810, + "last_issuance_block_time": 1730138813, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 19, @@ -7272,8 +7332,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730115789, - "last_issuance_block_time": 1730115800, + "first_issuance_block_time": 1730138794, + "last_issuance_block_time": 1730138806, "supply_normalized": "0.00000019" } ], @@ -7287,7 +7347,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address to return + cursor: `75` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7306,17 +7366,17 @@ Returns the transactions of an address "result": [ { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", - "block_time": 1730116110, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "39f247e162c2a49b3fc5bb01c5374ad7a6c0e7e4573dc5511953a7a7586c5a8b", + "block_time": 1730139124, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "utxos_info": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7352,17 +7412,17 @@ Returns the transactions of an address }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "block_index": 204, - "block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", - "block_time": 1730116099, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "5dc2fe5f12af98d66aeeddf67a1ba33af07b6858039b9750e6c7fe9edc2d7f38", + "block_time": 1730139112, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a5804edee264e437d1df26c6d93c307e7ff097166b848048856eb8c17951dac58843912376a31fe76b958e40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5:0", + "utxos_info": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7370,14 +7430,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -7385,7 +7445,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7404,17 +7464,17 @@ Returns the transactions of an address }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb", "block_index": 203, - "block_hash": "37274251a093028e8065cbc9af85901d3961a9e5e04f4e726b13a0506a915652", - "block_time": 1730116095, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "47a1ccf817137291edd203e6184d0835b27cfa48469ac7c1a77ab098d39d113b", + "block_time": 1730139107, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a5804edee264e437d1df26c6d93c307e7ff097166b848048856eb8c17951dac58843912376a31fe76b958e88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354:0", + "utxos_info": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7422,14 +7482,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -7437,7 +7497,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7456,17 +7516,17 @@ Returns the transactions of an address }, { "tx_index": 69, - "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "tx_hash": "50eccc0ccb786046b629ea7cae6bbe7cd918c75a76eef840e931e44865e2d2e6", "block_index": 202, - "block_hash": "13a7856636590644ca049ed5074ccb96a6b9694cf0a3187ec4d3b50111b76353", - "block_time": 1730116081, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "792b9905de3e7d2dce2f4bd6005c6a47209f579e2bd92a800b5e2efa9b1a467c", + "block_time": 1730139103, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880a500a0204b6c11d32ab0bd14b78f9db630019898", + "data": "02000000178d82231300000000000003e880ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a5", "supported": true, - "utxos_info": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02:1", + "utxos_info": "50eccc0ccb786046b629ea7cae6bbe7cd918c75a76eef840e931e44865e2d2e6:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7474,12 +7534,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -7490,17 +7550,17 @@ Returns the transactions of an address }, { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5", "block_index": 201, - "block_hash": "31229cfb58723faf819c8772e47a52c5cc4c531fdef4370ba12b94679b292486", - "block_time": 1730116077, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "694aa66fa4c17d2199fcbf7cb6959804aa1c8853c87be1b7755746868c1e81f9", + "block_time": 1730139090, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc:1", + "utxos_info": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7534,7 +7594,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address to return + cursor (str, optional) - The last index of the assets to return + Default: `None` + limit: `5` (int, optional) - The maximum number of assets to return @@ -7553,20 +7613,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "faecdff4961a9fd6da312f456cc6b09157b6d1d851f27819c1c8588c1dd9f23f", "block_index": 154, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730115885, + "block_time": 1730138884, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -7591,7 +7651,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7620,9 +7680,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx_hash": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c", "block_index": 184, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7637,7 +7697,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730115936, + "block_time": 1730138958, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7663,9 +7723,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7680,7 +7740,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730116110, + "block_time": 1730139124, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7706,9 +7766,9 @@ Returns the orders of an address }, { "tx_index": 57, - "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "tx_hash": "1ef850048fccd57ed5563510f4f5dac7cfad13dc69f2ada5428f5fe52c58568a", "block_index": 192, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7723,7 +7783,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730116037, + "block_time": 1730139050, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7749,9 +7809,9 @@ Returns the orders of an address }, { "tx_index": 59, - "tx_hash": "9d6f69deab8decbb02e247c2a2e19611f0931fb91c9bd48d5dad2bfae5328ffe", + "tx_hash": "991fd8e540a9a1eb3bfad5f52ba033e88c6377c22da6d62d3f2e93ef312acf48", "block_index": 193, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7766,7 +7826,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116041, + "block_time": 1730139054, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7792,9 +7852,9 @@ Returns the orders of an address }, { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7809,7 +7869,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116110, + "block_time": 1730139124, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7844,7 +7904,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The source of the fairminter to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7869,10 +7929,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_hash": "42a285d407b0482a81904545dacac2ecf78dd87157cdc4ff5c37086b078ee059", "tx_index": 42, "block_index": 155, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7897,7 +7957,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730115889, + "block_time": 1730138899, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7906,10 +7966,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "tx_hash": "29b7175f8cb8f4c4676752ff62c91262d377175a6994145c8fb27e832eadcd98", "tx_index": 22, "block_index": 135, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7934,7 +7994,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730115804, + "block_time": 1730138810, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7946,10 +8006,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "tx_hash": "022f35c10f14c2ea46ee28369585bf5e4f9d527b2f0f551680c699bba7b5067f", "tx_index": 18, "block_index": 131, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7974,7 +8034,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730115789, + "block_time": 1730138794, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7986,10 +8046,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", + "tx_hash": "484463111a0414fb5c61a2480486d42e52aa4fcb1316ab426dcf72d369af3cc8", "tx_index": 14, "block_index": 130, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8014,7 +8074,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730115785, + "block_time": 1730138790, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8026,10 +8086,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "tx_hash": "79aace64fffe0222b602a1c6209eda6252182a30bd6aad873f434c1d3e52fdcb", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8054,7 +8114,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730115766, + "block_time": 1730138770, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8076,7 +8136,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address of the mints to return + + address: `bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8094,22 +8154,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "cb3f7778d2be0cdafe509a5da15d6a13ccbd7acb72821744a6bd3fc15571b4bd", "tx_index": 23, "block_index": 136, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "29b7175f8cb8f4c4676752ff62c91262d377175a6994145c8fb27e832eadcd98", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115808, + "block_time": 1730138813, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -8118,22 +8178,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "5da24fdc5b0f42414404df0110e4a3cd79789b5706be7b301d976f9eef623346", + "tx_hash": "8f63058af67e1d6bfbca9dcdc44be48390cee42fd957142c3dbb6349a9249027", "tx_index": 21, "block_index": 134, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "022f35c10f14c2ea46ee28369585bf5e4f9d527b2f0f551680c699bba7b5067f", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115800, + "block_time": 1730138806, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -8142,22 +8202,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "98840296af69b519b38aaa9663baa393849683e67da07ce11e4aa21df9259e2f", + "tx_hash": "28655ebccabe82e70af2497d724e2b88df44b5ef7acda995ffa12e8e70bbe855", "tx_index": 20, "block_index": 133, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "022f35c10f14c2ea46ee28369585bf5e4f9d527b2f0f551680c699bba7b5067f", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115797, + "block_time": 1730138801, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -8166,22 +8226,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "e26754ee3f011a743d3bd45d712d1fe4056c4b4f657f391b5d06c33191fe01d3", + "tx_hash": "e189d65f18255b300aa1a11aa1190533fc1611876bfe6e77c7cee8d842affd09", "tx_index": 19, "block_index": 132, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "022f35c10f14c2ea46ee28369585bf5e4f9d527b2f0f551680c699bba7b5067f", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115793, + "block_time": 1730138797, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -8190,22 +8250,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "def4759ea9104304f15b30965786c66cdc8cfb7a6029cdc08a336d6306c065ab", + "tx_hash": "db50ebd0742a64f1cb1fffc5e6c6cb8edb25dbdae92cf770994544c03a86b3f2", "tx_index": 15, "block_index": 127, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "484463111a0414fb5c61a2480486d42e52aa4fcb1316ab426dcf72d369af3cc8", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115774, + "block_time": 1730138778, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -8214,22 +8274,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_hash": "af7c1e95741f86b44041a459c1c42d2215f7da4faf59a0125361611a60d87478", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "79aace64fffe0222b602a1c6209eda6252182a30bd6aad873f434c1d3e52fdcb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115757, + "block_time": 1730138763, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -8248,7 +8308,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address of the mints to return + + address: `bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy` (str, required) - The address of the mints to return + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -8267,22 +8327,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_hash": "af7c1e95741f86b44041a459c1c42d2215f7da4faf59a0125361611a60d87478", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "79aace64fffe0222b602a1c6209eda6252182a30bd6aad873f434c1d3e52fdcb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115757, + "block_time": 1730138763, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -8296,6 +8356,64 @@ Returns the mints by address and asset } ``` +## Group Utxos + +### Get Utxo Balances [GET /v2/utxos/{utxo}/balances{?cursor}{&limit}{&offset}{&verbose}{&show_unconfirmed}] + +Returns the balances of an utxo + ++ Parameters + + utxo: `46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0` (str, required) - The utxo to return + + cursor (str, optional) - The last index of the balances to return + + Default: `None` + + limit: `5` (int, optional) - The maximum number of balances to return + + Default: `100` + + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) + + Default: `None` + + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + + Default: `false` + + show_unconfirmed (bool, optional) - Include results from Mempool. + + Default: `false` + ++ Response 200 (application/json) + + ``` + { + "result": [ + { + "asset": "XCP", + "quantity": 1500000000, + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + { + "asset": "MYASSETA", + "quantity": 1500000000, + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "divisible": true, + "locked": false + }, + "quantity_normalized": "15.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + } + ``` + ## Group Compose **Notes about the Optional `encoding` Parameter.** @@ -8324,8 +8442,8 @@ By default the default value of the `encoding` parameter detailed above is `auto Composes a transaction to issue a bet against a feed. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will make the bet - + feed_address: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address that will make the bet + + feed_address: `bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy` (str, required) - The address that hosts the feed to be bet on + bet_type: `2` (int, required) - Bet 0 for Bullish CFD (deprecated), 1 for Bearish CFD (deprecated), 2 for Equal, 3 for NotEqual + deadline: `3000000000` (int, required) - The time at which the bet should be decided/settled, in Unix time (seconds since epoch) + wager_quantity: `1000` (int, required) - The quantities of XCP to wager (in satoshis, hence integer) @@ -8393,7 +8511,7 @@ Composes a transaction to issue a bet against a feed. Composes a transaction to broadcast textual and numerical information to the network. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + timestamp: `4003903985` (int, required) - The timestamp of the broadcast, in Unix time + value: `100` (float, required) - Numerical value of the broadcast + fee_fraction: `0.05` (float, required) - How much of every bet on this feed should go to its operator; a fraction of 1, (i.e. 0.05 is five percent) @@ -8449,7 +8567,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8461,7 +8579,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985142, "btc_fee": 14858, - "rawtransaction": "02000000000101d3e144ab2332715d931607f1ecb24833c4b9a45585fe12f43332f7c73a129bf60000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff0200000000000000002b6a291d58000c120f53e521b5b05fb0e87895087ccf3efe597674c5aa3f7ccf38911c75cc5b8d24700ddac0f6b7052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "020000000001018ddc94d536ce56797b4d425229261cddb0afed726b125835b540dc8f942582fc00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff0200000000000000002b6a299995fbbf518497b86c3e2426ef0e7c7ee317081e80084289e87197e5f028d6cb70420e7b444f059fcdf6b7052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8483,8 +8601,8 @@ Composes a transaction to broadcast textual and numerical information to the net Composes a transaction to pay for a BTC order match. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be sending the payment - + order_match_id: `a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614` (str, required) - The ID of the order match to pay for + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address that will be sending the payment + + order_match_id: `6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363` (str, required) - The ID of the order match to pay for + encoding (str, optional) - The encoding method to use + Default: `auto` + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis) @@ -8536,23 +8654,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614" + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "order_match_id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363" }, "name": "btcpay", - "data": "434e5452505254590ba70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b50903810560268783a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "data": "434e5452505254590b6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978090, "btc_fee": 18910, - "rawtransaction": "02000000000101bd9316eab33fabb206193f04c3c50ab13a8abd6216de19a6c0961f00d3d615420000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff03b80b00000000000016001488638b12211ad2887d7013cdfa98b822eb7f220a00000000000000004b6a49f046fc5a1959206e926f59e82227fd923cabe7e968af1baad5abb587a412e4c8df215b2a2d9a5b3503ce52fdb5848339aa656b6f74c228373ce1809d813ad9cf4c41d5f20f2739395c6a9c052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "020000000001016364e356e73b6023dd135a1582267390cf6ac995f158ef911a8907cc876c465e00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff03b80b000000000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e00000000000000004b6a49f5ddaa766301470fecf76497eb38c98d0920c016756cf2ed3adff5a4d6fe8014619a695dc6e21ee9d685b29766b545396e2f870736eb8d9fa88260534eada3130d1030ccba009df0776a9c052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx0_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "tx1_hash": "8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", + "order_match_id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "status": "valid" } } @@ -8565,7 +8683,7 @@ Composes a transaction to pay for a BTC order match. Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, possible between blocks 278310 and 283810; on testnet it is still available). + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address with the BTC to burn + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address with the BTC to burn + quantity: `1000` (int, required) - The quantities of BTC to burn (in satoshis, hence integer) (1 BTC maximum burn per address) + overburn (bool, optional) - Whether to allow the burn to exceed 1 BTC for the address + Default: `False` @@ -8620,7 +8738,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "quantity": 1000, "overburn": false }, @@ -8630,7 +8748,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985186, "btc_fee": 13814, - "rawtransaction": "02000000000101abf65b20ebfd1237da0f36f872c79db358b4cfbf1297b2ed7848fce5a7d985270000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac22b8052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000" + "rawtransaction": "02000000000101589753c921ad110f44e7131f779c39ec7d20244f8e94250e0e13dc9c826a313f00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac22b8052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000" } } ``` @@ -8640,8 +8758,8 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss Composes a transaction to cancel an open order or bet. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199` (str, required) - The hash of the order/bet to be cancelled + encoding (str, optional) - The encoding method to use + Default: `auto` + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis) @@ -8693,21 +8811,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "offer_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8" + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "offer_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199" }, "name": "cancel", - "data": "434e545250525459465debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "data": "434e5452505254594699faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985142, "btc_fee": 14858, - "rawtransaction": "02000000000101ea75efdc042b5696d84822dc36cd87c7fd9a0b28512b49461245667b61127bfa0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff0200000000000000002b6a29a3e663a2f9bd00bb0c85b9c374325d5573e86694ddb726062f8c530213552021c46ead41917b6938b4f6b7052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101a819703e25717aea0ef3f6478c6963d70172ec8e72b758978bc2c4cad6f2444000000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff0200000000000000002b6a29ca64cd2577374eaaeaddb7976e7e21e9c749aa0a24f4c229b374fb951e4baee8d77b3f334180688963f6b7052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "offer_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "status": "valid" } } @@ -8720,7 +8838,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address that will be sending the asset to be destroyed + asset: `XCP` (str, required) - The asset to be destroyed + quantity: `1000` (int, required) - The quantity of the asset to be destroyed (in satoshis, hence integer) + tag: `"bugs!"` (str, required) - A tag for the destruction @@ -8775,7 +8893,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8794,7 +8912,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999985695, "btc_fee": 14305, - "rawtransaction": "02000000000101a452400ddde4da92b3635c69a88b5cd73e6f5351b1035de6c8acb68e8350e3540000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000226a204361a4695fd456d2d053a108447b7a62d60471b989b415d7824044331a550ada1fba052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101c06a48678610b8dd7be639905a431e8375b210671f1b0642ad7908fd0abf1fb200000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff020000000000000000226a2009d4f246f293b90dcce887b938a07bc73994ab1e535f62cdaf5fdd6ff4ea27d31fba052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8814,7 +8932,7 @@ Composes a transaction to destroy a quantity of an asset. Composes a transaction to opens or closes a dispenser for a given asset at a given rate of main chain asset (BTC). Escrowed quantity on open must be equal or greater than give_quantity. It is suggested that you escrow multiples of give_quantity to ease dispenser operation. + Parameters - + address: `bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + asset: `XCP` (str, required) - The asset or subasset to dispense + give_quantity: `1000` (int, required) - The quantity of the asset to dispense (in satoshis, hence integer) + escrow_quantity: `1000` (int, required) - The quantity of the asset to reserve for this dispenser (in satoshis, hence integer) @@ -8875,7 +8993,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -8899,7 +9017,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949919581, "btc_fee": 14919, - "rawtransaction": "020000000001016182673802383c3dfbeed7dd1749f3b498f8e584fcfd406a5aa17b002ee7904b01000000160014fbcc5565cd7f2a35258ef40d6637506f0ce99fdbffffffff0200000000000000002c6a2a8c143ec5258db11ef95b2578f1c394ce761046911caf5c5472be4f258d5a148a45eb9d2e0476dbc475545dc7092701000000160014fbcc5565cd7f2a35258ef40d6637506f0ce99fdb02000000000000", + "rawtransaction": "020000000001015b7e206464aa6ae40f435c024c354d3cb43c061ff7708f3a22e079bde4e6254601000000160014047390184b11332c15c0ac8a95373e56912957baffffffff0200000000000000002c6a2a18032c5760505e83f0851e9cc1f4de855593baae8a3da44426d7760f82df2378b6324457e39412b030ca5dc7092701000000160014047390184b11332c15c0ac8a95373e56912957ba02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -8925,7 +9043,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv Composes a transaction to issue a dividend to holders of a given asset. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + quantity_per_unit: `1` (int, required) - The amount of dividend_asset rewarded (in satoshis, hence integer) + asset: `FAIRMINTA` (str, required) - The asset or subasset that the dividends are being rewarded on + dividend_asset: `XCP` (str, required) - The asset or subasset that the dividends are paid in @@ -8980,14 +9098,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -9006,7 +9124,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999985634, "btc_fee": 14366, - "rawtransaction": "02000000000101d735a5a97da67446f40bb375c7bacff7ae44897f7b357a5bcef9d70280dfc6110000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000236a21a03fcd9fc46bcb4f3bf7ff58bc4a0eb125a43d3a551f7e1ceb32b36b7143d5bd87e2b9052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101a35cc996822bf44e306cbf1d3d86d9422a24bf91467c0ea283ca3ac9367b0cde00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff020000000000000000236a217a6db34f1bf84a86b726b1d5b0edc79229ec2ff801d9b0f991c13fcefe39183171e2b9052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9027,10 +9145,10 @@ Composes a transaction to issue a dividend to holders of a given asset. Composes a transaction to Issue a new asset, issue more of an existing asset, lock an asset, reset existing supply, or transfer the ownership of an asset. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address that will be issuing or transfering the asset + asset: `XCPTEST` (str, required) - The assets to issue or transfer. This can also be a subasset longname for new subasset issuances + quantity: `1000` (int, required) - The quantity of the asset to issue (set to 0 if transferring an asset) (in satoshis, hence integer) - + transfer_destination: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, optional) - The address to receive the asset + Default: `None` + divisible (bool, optional) - Whether this asset is divisible or not (if a transfer, this value must match the value specified when the asset was originally issued) + Default: `True` @@ -9091,10 +9209,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "transfer_destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "lock": false, "reset": false, @@ -9107,7 +9225,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983000, "btc_fee": 16454, - "rawtransaction": "020000000001013eb5a26d5fe5337ccfca78b68a43f9933a7ad20e3127554d960f6ff708c487d60000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff03220200000000000016001488638b12211ad2887d7013cdfa98b822eb7f220a0000000000000000236a21d1ca33cf4433fd66e117d12625616dc906928c7356b7202b8c38c6ece5cbbbf61a98af052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "0200000000010181d8863c0af411e0a5a753a43cd820fd86e02913d028bd72b59b0deea7760f0e00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff032202000000000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e0000000000000000236a2111dd7e2d82de8a261a0e87ad0a0669b70454b481c8f3dfbf94f039d4074ca3179898af052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9136,9 +9254,9 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo Composes a transaction to send multiple payments to multiple addresses. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr,bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c,bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9199,16 +9317,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", 1 ], [ "MPMASSET", - "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", 2 ] ], @@ -9216,26 +9334,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e5452505254590300028088638b12211ad2887d7013cdfa98b822eb7f220a80a500a0204b6c11d32ab0bd14b78f9db63001989840000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280abfde7e500a8fa0b913a29a15b6144de743eac8e80ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a540000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999942989, "btc_fee": 55011, - "rawtransaction": "02000000000104c60cba2e8009b89a27f98afd970336d060fb80cc1169f8a9f26dd7ac5b8a7dfd0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff5cb37ed728a1783f00f380c510ff2108bf6796927d3302395641738997881b710000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff9cc56b3a54bde5e0b7fb83800bc84036f16ee99aeac4491de704b7f8f794c1a10000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff0f4711f98d37387476a466b7bf6964c28d870c7e940e1b02fb5795820960299e0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff03e8030000000000006951210338a7e3de6a76681a888a478f9c669e7a9f638cd384e2edf836ebd2f34158440e2103693a6379fc9675f11c9f519d3a54269240404cbe3f914fe22bb420c10df54ded2103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553aee8030000000000006951210327a7e3de6a76681a8859478d1ceefdf18d6696010c9f9debfb154a4b63b33b5221034b30e2dcfc3655ba708e82b78ae93225cfddfa8e3e09d7a22bb425226d7d89f12103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553ae4de916a80400000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000002000002000002000000000000", + "rawtransaction": "02000000000104ba7fc5eab314c269b6920a7f0f9dc0a2377918366190584ae1640a603dfd30cd00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff226689499b24979081d2e2c6c38067f3ef0c664817ba67f42a9705572f53d54600000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff7d86a9111edb4441f863554f63401fb2c83317225f699e5c91d5d03fb9f4487b00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffffa1936db8387355c527a872442fdcc6d64e48e396929dbc1e75a97e331125c3a300000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff03e80300000000000069512103861633de8ddfc5cac8246e766f618087959487379a9c2dd78775e63e3c0ae3ea2103df0d8a7f299c8fd5cd980b6ed62884d3230a4dab49de53364e3353fe5184e0232103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d553aee80300000000000069512102991633de8ddfc5cac8f76e74efca7d6070b02fcd910d17fe262a877ae27edd36210373830b93904fa68310a47468d6fe5df6dc4160a013d7f6764e33561d310c24a02103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d553ae4de916a804000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9251,7 +9369,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + give_asset: `XCP` (str, required) - The asset that will be given in the trade + give_quantity: `1000` (int, required) - The quantity of the asset that will be given (in satoshis, hence integer) + get_asset: `FAIRMINTA` (str, required) - The asset that will be received in the trade @@ -9309,7 +9427,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9326,7 +9444,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -9340,7 +9458,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999984528, "btc_fee": 15472, - "rawtransaction": "02000000000101cf575d97277fbc0b3f884b49e7c0b8287ba8e0b4e5f4dd7e2d6e426502f4452c0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000356a334de8b15032fed03ecbb040c19ca15f53586192377670b513f6408556e6dd4e76a713c1550120fe9b40cb4140fa22d0446a03d390b5052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101207d1e4708c713e102babf2c02f5f44f96768f6a03cecae5d21b3d1c5aa6873a00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff020000000000000000356a3358ec917f740a4c001b8b89034efd474cc0896fe062ba4e7bdddeaec358992aad46f6d570b894aa6db12e869106c785e5c014f390b5052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9366,8 +9484,8 @@ Composes a transaction to place an order on the distributed exchange. Composes a transaction to send a quantity of an asset to another address. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address that will be receiving the asset + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy` (str, required) - The address that will be receiving the asset + asset: `XCP` (str, required) - The asset or subasset to send + quantity: `1000` (int, required) - The quantity of the asset to send (in satoshis, hence integer) + memo (str, optional) - The Memo associated with this transaction @@ -9427,8 +9545,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9444,19 +9562,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880a500a0204b6c11d32ab0bd14b78f9db630019898", + "data": "434e54525052545902000000000000000100000000000003e880ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a5", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999984835, "btc_fee": 15165, - "rawtransaction": "020000000001019ed53bd0e7ff6981feb1b27c9556b9db3413d2a67ea7b8f2616a14fa73ed02d90000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000306a2ebe40c06091cfd95dd61d68e73ae5e96d8e96410698a8db380780e7d7268fe30fd5756bc9e8c2e4f3649989e08364c3b6052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101ecba48fcd192e9b30e57b57c0124310335e45d1909b4b2dad06d96a20762d37200000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff020000000000000000306a2ebdc028eab083950ea6156b41513d79731fd0074ab5e476bf863ddade543cdc8bdf1c8c99a20362b5b1ec5918e072c3b6052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "memo": null, "quantity_normalized": "0.00001000" } @@ -9470,8 +9588,8 @@ Composes a transaction to send a quantity of an asset to another address. Composes a transaction to Sends all assets and/or transfer ownerships to a destination address. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be sending - + destination: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address that will be sending + + destination: `bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy` (str, required) - The address to receive the assets and/or ownerships + flags: `7` (int, required) - An OR mask of flags indicating how the sweep should be processed. Possible flags are: - FLAG_BALANCES: (integer) 1, specifies that all balances should be transferred. - FLAG_OWNERSHIP: (integer) 2, specifies that all ownerships should be transferred. - FLAG_BINARY_MEMO: (integer) 4, specifies that the memo is in binary/hex form. + memo: `FFFF` (str, required) - The Memo associated with this transaction in hex format + encoding (str, optional) - The encoding method to use @@ -9525,23 +9643,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480a500a0204b6c11d32ab0bd14b78f9db63001989807ffff", + "data": "434e5452505254590480ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a507ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985634, "btc_fee": 14366, - "rawtransaction": "02000000000101c7c9854253dc41c3edd654589b82ee42a8a8d6a0c5a578062b89c4b876f2e14d0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000236a219323e5b3f1b8081e81abc14abc27d4b631b6398c37296f72874455fe3f7372918ae2b9052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "020000000001016e796d5d7414f8862897755f1fdb217bd41605fcb866c96140a06882689695c400000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff020000000000000000236a2137b2b36162239f389353c13bb3f48116099dc8268b6cedd04086238782d3b4a48ce2b9052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "flags": 7, "memo": "ffff" } @@ -9555,8 +9673,8 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti Composes a transaction to send BTC to a dispenser. + Parameters - + address: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge` (str, required) - The dispenser that will be receiving the asset + quantity: `1000` (int, required) - The quantity of BTC to send (in satoshis, hence integer) + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9609,8 +9727,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "quantity": 1000 }, "name": "dispense", @@ -9619,7 +9737,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949811958, "btc_fee": 15042, - "rawtransaction": "0200000000010157826d7417826b89717d2b03e0b6b7151d49cb2661b13212aa8064fe0194a77a03000000160014a500a0204b6c11d32ab0bd14b78f9db630019898ffffffff03e8030000000000001600142ae165e7b04a97caa52d91a46d89891d704370ff00000000000000000c6a0a24ebcd38485c9b2a0013f622082701000000160014a500a0204b6c11d32ab0bd14b78f9db63001989802000000000000", + "rawtransaction": "02000000000101002ccd235ad6557f918186699c5ddb4e53861554f72f81d8c4f2e6f466381d0903000000160014ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a5ffffffff03e80300000000000016001448856eb8c17951dac58843912376a31fe76b958e00000000000000000c6a0abdbc6badc230da160c67f622082701000000160014ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a502000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9636,7 +9754,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be issuing the asset + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address that will be issuing the asset + asset: `MYASSET` (str, required) - The asset to issue + asset_parent (str, optional) - The parent asset of the asset to issue + Default: `` @@ -9721,7 +9839,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9752,7 +9870,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999984774, "btc_fee": 15226, - "rawtransaction": "02000000000101c79e70d7c5ad9665ae957326d1dc832f162bc8f91fc08508a7aefd8decaffd230000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000316a2fdfa88a71933c8839247123e96b0a8bdb6b9d82d36ae6ade916ef886e41d9c0ec79824a742e64b47c3d995a7267e06986b6052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101b5188e45f1ae9cd391bdb35ac04451962dcc993a12c033800d122d7e5be9dcba00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff020000000000000000316a2f7884c997683f479e3d5d2ccae25886247602378139707a145476560a7880b682c084e7fa8e8b6ea9a3c45f4b18f86d86b6052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9791,7 +9909,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. Composes a transaction to mint a quantity of an asset using the FairMinter protocol. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address that will be minting the asset + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address that will be minting the asset + asset: `FAIRMINTC` (str, required) - The asset to mint + quantity: `1` (int, optional) - The quantity of the asset to mint (in satoshis, hence integer) + Default: `0` @@ -9846,13 +9964,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -9864,7 +9982,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999986432, "btc_fee": 13568, - "rawtransaction": "020000000001017c64134589fec8915924dac30e82978fbd8537ab6caac5007618953859f6d0be0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000166a14be1d5b0358bbdd865615c155e83dfbe0f763564000bd052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101cdd0251f520dd807594a209002ab86be2d973c94bb461b9e15350f1e512b5e1000000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff020000000000000000166a1450858bd6db174508d9e0fe7b09455604ec8a697f00bd052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -9883,10 +10001,10 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address from which the assets are attached + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) - + destination: `5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1` (str, optional) - The utxo to attach the assets to + + destination: `574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5:3` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9939,8 +10057,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5:3", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -9953,12 +10071,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171337033636b79337072746667736c74737a30786c347839637974346837677332706674647a727c356465626162326539366432356635663532613662653066626366363533613038623338333239386236663135336332306237356164653432626135626261383a317c5843507c31303030", + "data": "434e5452505254596462637274317134303737306567713472617168796636397873346b6332796d6536726174797771796d7a32637c353734636462386331306139353935353737363630306166373365373539663432653861386166613465643738653665343262356661303132393037656563353a337c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999914790, "btc_fee": 82210, - "rawtransaction": "02000000000106ccc2aca722ded998449d59d7ed65df1ffc201fca9873209432c035e327dbbf980000000016001488638b12211ad2887d7013cdfa98b822eb7f220afffffffff14198fceb8a1347a752edee8a1477d3779c0bd7b03fc4bed4512f0223b17ee50000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff8c2cefa9f81e31d2f5260a72f968a6a38923fad3cdfd2ce15b00e722f5ea9d1a0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffffbee94a0365aaaba05f7f1e7cc8da517c430b3df96dc44a2e5148f46d0fc8c3920000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff1816fcbb08b784d42ce93b687fdc9248c0bb2c6319f18521b506ad7d4a98fd480000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff052b2b309bd984a5d88ce3c9f0e82c5513cfb0117d7fba088957e06d5136eb460000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff04e8030000000000006951210374b391adbe520df76abe10c17a35f73315c1bd9be2f07d7d6752ca726570ec6121037bc277b82f1a939ab105b243286840d4e72d3a04eccd75004f164e2b8767328d2103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553aee8030000000000006951210274b391adbe520df76abf4b946c73f32413d7bbcae8bf2c682540ce76702aad9e21033bd977f8211dd390e045fe1576391692e63e6e40ea80321d1e171f7b846435a12103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553aee803000000000000695121035eb391adbe520df76ab810c3307bf73e7ef2de84b8b97e3d1526ac15161c9826210208b847c0432eeba3d27cc677405f27a7d55d5c7088b7077c7a722b49e60500952103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553ae265f22fc0600000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000002000002000002000002000002000000000000", + "rawtransaction": "020000000001067fac80ee82af1a1ba3a73681720de8984b928c0d08995727e748c484c5d3995c00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff7a0df51b968b07c8b8882cb5f692d21b399d851b1044be2e97309d3f757a3b0f00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff9bcc221b329d52144d00572a8792a2e04a901d20986f7e60d6be77f41b90f7cb00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff2e6ca2f64b24f32622c777740e335828e90b8444f779abb944cb2693c26616d400000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffffeffa5da7db9dba0eeb91e3adc80e58f11573f51abe57869dc8736514b8925f9000000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffffae8f20452edbb69b1c8f9d14924b56dd0750b8415d670b07dc08bb89550d891600000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff04e80300000000000069512103afdb68b97fa24a91385de1c41e5ca7c3d5200564e2a6cd6d74178134f0535fff21030c17dc584bb7376eb6d0ba388eb73fb11a3cdebd3c321d9dae28c114af01983f2103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d553aee80300000000000069512103afdb68b97fa24a91385ab2970d11a38bd4250564e4f59a2c2103d776fd1d0cdb2102034890191ae43564aedbbe3a99b27cf0087bc2e474624b87fa2fc445f25397c92103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d553aee8030000000000006951210285db68b97fa24a91385ce6c45912a5ceb953622fe3f39a2c4065e045982a39fb21023a2ea42b7fdc545ccfbddf0efcd64bc86d4da7d046007ee19b1ff577cb63a07b2103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d553ae265f22fc06000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -9975,8 +10093,8 @@ Composes a transaction to attach assets from an address to UTXO. Composes a transaction to detach assets from UTXO to an address. + Parameters - + utxo: `790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to detach the assets to + + utxo: `46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address to detach the assets to + asset: `XCP` (str, required) - The asset or subasset to detach + quantity: `1000` (int, required) - The quantity of the asset to detach (in satoshis, hence integer) + encoding (str, optional) - The encoding method to use @@ -10030,8 +10148,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -10044,12 +10162,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964373930633033373533623864333063326634363431393835616637396538633566666135383431633834343761376463396566346333666132316634626166383a307c626372743171337033636b79337072746667736c74737a30786c347839637974346837677332706674647a727c5843507c31303030", + "data": "434e54525052545964343664313061363734303237323565383766353336326164363961383365306538313135343664633734613335623438346430653333373861633533346636373a307c62637274317134303737306567713472617168796636397873346b6332796d6536726174797771796d7a32637c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950028128, "btc_fee": 48872, - "rawtransaction": "02000000000103800dc6faffbce0f8de654c2c591a32293ab5d576ca6f5b9557fc8bf479baad0201000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e1ffffffff9334508606a39f9c29ed55dd1dd1289168342407aa97b6e5608c19377c1fee2000000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e1ffffffff7615312ced3fa25183d8cd654833e6e1d1595a0ebcdbe6957fa6a0449b57496201000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e1ffffffff04e803000000000000695121037535204461c50e0ec922545f777754f1e842928e3474efba5b213259f1e2643d2103b5bb5075cac0fc5ca4254da8744888c9eb70a87155638ae3cd8a0add587a64972103a5aa4d46065ce4a08c9ef90270ed78d57213c383f35d84424771c41fe83a132653aee803000000000000695121037535204461c50e0ec9255000262655a4eb15c08a342aecf65a702619f6a766da2102fcb0067fd5c4b54be8201fbd7e5dce8bef39a77d196edefb8eda01d35a6f62e72103a5aa4d46065ce4a08c9ef90270ed78d57213c383f35d84424771c41fe83a132653aee803000000000000695121035f35204461c50e0ec9360512236e16be8734f1903d20ecba3813546dc7d655b421028c836514acf7c5399c4678ce1229bdf1df41cb496157bd82faee69e43d1c50a82103a5aa4d46065ce4a08c9ef90270ed78d57213c383f35d84424771c41fe83a132653ae606f0b2701000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e102000002000002000000000000", + "rawtransaction": "020000000001034e5fb3e44273cbe06e997c2932d85df952a96210ed1c5ce9828e8dd0d515b122010000001600140c4d0a4310cb026fbd6bb29f6d31f2326716509bffffffff52696d6ef6492af31656cae725d34542e87c34d066cc476f20bbf5c32be1e946000000001600140c4d0a4310cb026fbd6bb29f6d31f2326716509bffffffffc568793cd75874908290e177d517ca44f9e45f8307aa4ba2e6068f16497ae370010000001600140c4d0a4310cb026fbd6bb29f6d31f2326716509bffffffff04e803000000000000695121028fdebd29a883149c6de0767d7e92b529ea8642f68a7da83c1599eb961df464e1210293d6e4b820abc54736b74d9385760cd6e6c98c0ce8e0337e9733de37798dd04f21031388e3699f6081b0cd8e003f0dd04defffb4cb0d82db758cc23d2499cc8d522c53aee803000000000000695121028fdebd29a883149c6db7717c22c2e67def8510f08f70aa7512c2ae8419b666b721039180b7be7cad8c4021e659c3cd210fdba8dedb50bfb379269031946269c4c2e821031388e3699f6081b0cd8e003f0dd04defffb4cb0d82db758cc23d2499cc8d522c53aee80300000000000069512102a5debd29a883149c6df53b266091e63484f226ba897aaa3970a1dcf028c752d72103a1b7808e19cafd74538728abb44739e2d0adef3bdc81004bf507e6031dbdb58421031388e3699f6081b0cd8e003f0dd04defffb4cb0d82db758cc23d2499cc8d522c53ae606f0b27010000001600140c4d0a4310cb026fbd6bb29f6d31f2326716509b02000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10118,8 +10236,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 100000000000, @@ -10127,16 +10245,16 @@ Returns the valid assets "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730116077, - "last_issuance_block_time": 1730116077, + "first_issuance_block_time": 1730139090, + "last_issuance_block_time": 1730139090, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", - "owner": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "issuer": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen", + "owner": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen", "divisible": true, "locked": false, "supply": 100000000000, @@ -10144,16 +10262,16 @@ Returns the valid assets "first_issuance_block_index": 198, "last_issuance_block_index": 198, "confirmed": true, - "first_issuance_block_time": 1730116060, - "last_issuance_block_time": 1730116060, + "first_issuance_block_time": 1730139073, + "last_issuance_block_time": 1730139073, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 10000000000, @@ -10161,16 +10279,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730115900, - "last_issuance_block_time": 1730115918, + "first_issuance_block_time": 1730138911, + "last_issuance_block_time": 1730138929, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "owner": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "issuer": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", + "owner": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "divisible": true, "locked": false, "supply": 100000000000, @@ -10178,16 +10296,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730115896, - "last_issuance_block_time": 1730115896, + "first_issuance_block_time": 1730138908, + "last_issuance_block_time": 1730138908, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 100000000000, @@ -10195,8 +10313,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730115851, - "last_issuance_block_time": 1730115851, + "first_issuance_block_time": 1730138861, + "last_issuance_block_time": 1730138861, "supply_normalized": "1000.00000000" } ], @@ -10224,8 +10342,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 10000000000, @@ -10233,8 +10351,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730115754, - "last_issuance_block_time": 1730115766, + "first_issuance_block_time": 1730138760, + "last_issuance_block_time": 1730138770, "supply_normalized": "100.00000000" } } @@ -10265,7 +10383,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10273,14 +10391,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10288,7 +10406,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -10306,7 +10424,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -10318,7 +10436,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -10372,9 +10490,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx_hash": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c", "block_index": 184, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10389,7 +10507,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730115936, + "block_time": 1730138958, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10415,9 +10533,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10432,7 +10550,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730116110, + "block_time": 1730139124, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10458,9 +10576,9 @@ Returns the orders of an asset }, { "tx_index": 57, - "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "tx_hash": "1ef850048fccd57ed5563510f4f5dac7cfad13dc69f2ada5428f5fe52c58568a", "block_index": 192, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10475,7 +10593,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730116037, + "block_time": 1730139050, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10501,9 +10619,9 @@ Returns the orders of an asset }, { "tx_index": 59, - "tx_hash": "9d6f69deab8decbb02e247c2a2e19611f0931fb91c9bd48d5dad2bfae5328ffe", + "tx_hash": "991fd8e540a9a1eb3bfad5f52ba033e88c6377c22da6d62d3f2e93ef312acf48", "block_index": 193, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10518,7 +10636,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116041, + "block_time": 1730139054, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10544,9 +10662,9 @@ Returns the orders of an asset }, { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10561,7 +10679,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116110, + "block_time": 1730139124, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10623,13 +10741,13 @@ Returns the orders of an asset { "result": [ { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 54, - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", - "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "tx1_hash": "8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", + "tx1_address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10643,7 +10761,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730116023, + "block_time": 1730139035, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10663,13 +10781,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 52, - "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", + "tx1_address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10683,7 +10801,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730116019, + "block_time": 1730139032, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10703,13 +10821,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "id": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c_2c9739c4b32a49f1a690d13a7cb87c3d70603a1c26d9b9e702a96442bd657671", "tx0_index": 49, - "tx0_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 50, - "tx1_hash": "6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "2c9739c4b32a49f1a690d13a7cb87c3d70603a1c26d9b9e702a96442bd657671", + "tx1_address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10723,7 +10841,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730115936, + "block_time": 1730138958, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10803,20 +10921,20 @@ Returns the credits of an asset "result": [ { "block_index": 194, - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "event": "71e2343f1a4a660b6eb55c68b383b81198dd1d707df3675c0a345046cc94c411", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116045, + "block_time": 1730139058, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -10824,20 +10942,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "633a29ddd1d5f12a25cad17061eaf217c3d3255f32284361eec6745ecebb5d8b", + "event": "a09c8b4566fc0da8f0ba9771f84c247281f3d114e17c23376135ea99eaa97d89", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730115766, + "block_time": 1730138770, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -10845,20 +10963,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", + "event": "c433d1f5c9cfcc12e5646d0394ed87e07d5c93c8ecbe75748fb83920c2042b00", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730115762, + "block_time": 1730138766, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -10866,20 +10984,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "event": "af7c1e95741f86b44041a459c1c42d2215f7da4faf59a0125361611a60d87478", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730115762, + "block_time": 1730138766, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -10891,16 +11009,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", + "event": "c433d1f5c9cfcc12e5646d0394ed87e07d5c93c8ecbe75748fb83920c2042b00", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730115762, + "block_time": 1730138766, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -10960,12 +11078,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "utxo": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "utxo_address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -10977,16 +11095,16 @@ Returns the debits of an asset }, { "block_index": 207, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "event": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116110, + "block_time": 1730139124, "asset_info": { "divisible": true, "asset_longname": null, @@ -10998,16 +11116,16 @@ Returns the debits of an asset }, { "block_index": 206, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "event": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730139120, "asset_info": { "divisible": true, "asset_longname": null, @@ -11019,16 +11137,16 @@ Returns the debits of an asset }, { "block_index": 205, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "event": "ad6acaa7ce5c591cc3f7630eaf35dd7ad07861746f4f0dacb964a334a3cc7951", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116102, + "block_time": 1730139116, "asset_info": { "divisible": true, "asset_longname": null, @@ -11040,16 +11158,16 @@ Returns the debits of an asset }, { "block_index": 204, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "event": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730139112, "asset_info": { "divisible": true, "asset_longname": null, @@ -11129,14 +11247,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "633a29ddd1d5f12a25cad17061eaf217c3d3255f32284361eec6745ecebb5d8b", + "tx_hash": "a09c8b4566fc0da8f0ba9771f84c247281f3d114e17c23376135ea99eaa97d89", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -11151,20 +11269,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730115766, + "block_time": 1730138770, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", + "tx_hash": "c433d1f5c9cfcc12e5646d0394ed87e07d5c93c8ecbe75748fb83920c2042b00", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -11179,20 +11297,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730115762, + "block_time": 1730138766, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_hash": "af7c1e95741f86b44041a459c1c42d2215f7da4faf59a0125361611a60d87478", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -11207,20 +11325,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730115757, + "block_time": 1730138763, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "tx_hash": "79aace64fffe0222b602a1c6209eda6252182a30bd6aad873f434c1d3e52fdcb", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -11235,7 +11353,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730115754, + "block_time": 1730138760, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11269,10 +11387,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "destination": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11280,7 +11398,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -11293,10 +11411,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "block_index": 206, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11304,7 +11422,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730139120, "asset_info": { "divisible": true, "asset_longname": null, @@ -11317,10 +11435,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 72, - "tx_hash": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "tx_hash": "ad6acaa7ce5c591cc3f7630eaf35dd7ad07861746f4f0dacb964a334a3cc7951", "block_index": 205, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11328,7 +11446,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730116102, + "block_time": 1730139116, "asset_info": { "divisible": true, "asset_longname": null, @@ -11341,10 +11459,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11352,7 +11470,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730139112, "asset_info": { "divisible": true, "asset_longname": null, @@ -11365,10 +11483,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb", "block_index": 203, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11376,7 +11494,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730139107, "asset_info": { "divisible": true, "asset_longname": null, @@ -11427,9 +11545,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11438,7 +11556,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11448,7 +11566,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -11464,9 +11582,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "ccb421515f869082058aa6d0f05423e1c6ce8751d4146c89dee14e26c1c3130b", + "tx_hash": "a258b01afdaabd8e32851627fe1b02a421d434b1270dab90d804bd6dbd4836bd", "block_index": 142, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11475,7 +11593,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "origin": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11485,7 +11603,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115828, + "block_time": 1730138837, "asset_info": { "divisible": true, "asset_longname": null, @@ -11501,9 +11619,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "a809a9c0b667c336b61ce3e892a7f2d80231121804f3f7db594da58d9ded5a52", + "tx_hash": "26ebc0b3d811f899208f2fd859858a2f4c5ffc200c40b4a93bd969c6d36a3b8e", "block_index": 150, - "source": "mrTk1ThfTwE2f6PUY5vjkJvga5VgZXf4bk", + "source": "muiEfYPpvbgzQs92KTRehUaij59RKHzNSo", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11511,10 +11629,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "73d6215c951c71f26d391d50b72497e72188efc109135e95b1f58a4374c30be0", - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "last_status_tx_hash": "549bb50ff899d047cd2f260d9c7f969b6774065c96abea43442742fb4ba4c695", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 0, - "last_status_tx_source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "last_status_tx_source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11522,7 +11640,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115869, + "block_time": 1730138868, "asset_info": { "divisible": true, "asset_longname": null, @@ -11538,18 +11656,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11559,7 +11677,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -11584,7 +11702,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - The address to return + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -11597,9 +11715,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11608,7 +11726,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11618,7 +11736,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -11668,7 +11786,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -11676,7 +11794,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11685,7 +11803,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -11693,7 +11811,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11702,7 +11820,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -11710,7 +11828,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11719,7 +11837,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -11756,27 +11874,27 @@ Returns the dispenses of an asset { "tx_index": 75, "dispense_index": 0, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "destination": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11791,7 +11909,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -11805,27 +11923,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "20ee1f7c37198c60e5b697aa072434689128d11ddd55ed299c9fa30686503493", + "tx_hash": "46e9e12bc3f5bb206f47cc66d0347ce84245d325e7ca5616f32a49f66e6d6952", "block_index": 147, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "destination": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11840,7 +11958,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730115848, + "block_time": 1730138856, "asset_info": { "divisible": true, "asset_longname": null, @@ -11854,19 +11972,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "7a4c44d71545a4556d59db3caa34caf7de69c38085266b8f5ea4ce1723d55aa8", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11874,7 +11992,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11889,7 +12007,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -11903,19 +12021,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "901a08fbae97fe2160697f1a26dd121e99535032168302051e6f3200df15a665", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11923,7 +12041,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11938,7 +12056,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730138829, "asset_info": { "divisible": true, "asset_longname": null, @@ -12012,10 +12130,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "tx_hash": "79aace64fffe0222b602a1c6209eda6252182a30bd6aad873f434c1d3e52fdcb", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12040,7 +12158,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730115766, + "block_time": 1730138770, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12080,22 +12198,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "633a29ddd1d5f12a25cad17061eaf217c3d3255f32284361eec6745ecebb5d8b", + "tx_hash": "a09c8b4566fc0da8f0ba9771f84c247281f3d114e17c23376135ea99eaa97d89", "tx_index": 13, "block_index": 125, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", + "fairminter_tx_hash": "79aace64fffe0222b602a1c6209eda6252182a30bd6aad873f434c1d3e52fdcb", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115766, + "block_time": 1730138770, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -12104,22 +12222,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", + "tx_hash": "c433d1f5c9cfcc12e5646d0394ed87e07d5c93c8ecbe75748fb83920c2042b00", "tx_index": 12, "block_index": 124, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", + "fairminter_tx_hash": "79aace64fffe0222b602a1c6209eda6252182a30bd6aad873f434c1d3e52fdcb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115762, + "block_time": 1730138766, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -12128,22 +12246,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_hash": "af7c1e95741f86b44041a459c1c42d2215f7da4faf59a0125361611a60d87478", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "79aace64fffe0222b602a1c6209eda6252182a30bd6aad873f434c1d3e52fdcb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115757, + "block_time": 1730138763, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -12162,7 +12280,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv` (str, required) - The address of the mints to return + + address: `bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy` (str, required) - The address of the mints to return + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -12181,22 +12299,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_hash": "af7c1e95741f86b44041a459c1c42d2215f7da4faf59a0125361611a60d87478", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "79aace64fffe0222b602a1c6209eda6252182a30bd6aad873f434c1d3e52fdcb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115757, + "block_time": 1730138763, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -12249,9 +12367,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx_hash": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c", "block_index": 184, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12266,7 +12384,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730115936, + "block_time": 1730138958, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12292,9 +12410,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx_hash": "0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", "block_index": 187, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12309,7 +12427,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730116019, + "block_time": 1730139032, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12335,9 +12453,9 @@ Returns all the orders }, { "tx_index": 54, - "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx_hash": "8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "block_index": 188, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12352,7 +12470,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116023, + "block_time": 1730139035, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12378,9 +12496,9 @@ Returns all the orders }, { "tx_index": 57, - "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "tx_hash": "1ef850048fccd57ed5563510f4f5dac7cfad13dc69f2ada5428f5fe52c58568a", "block_index": 192, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12395,7 +12513,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730116037, + "block_time": 1730139050, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12421,9 +12539,9 @@ Returns all the orders }, { "tx_index": 59, - "tx_hash": "9d6f69deab8decbb02e247c2a2e19611f0931fb91c9bd48d5dad2bfae5328ffe", + "tx_hash": "991fd8e540a9a1eb3bfad5f52ba033e88c6377c22da6d62d3f2e93ef312acf48", "block_index": 193, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12438,7 +12556,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116041, + "block_time": 1730139054, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12473,7 +12591,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8` (str, required) - The hash of the transaction that created the order + + order_hash: `99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199` (str, required) - The hash of the transaction that created the order + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -12485,9 +12603,9 @@ Returns the information of an order { "result": { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12502,7 +12620,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116110, + "block_time": 1730139124, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12534,7 +12652,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878` (str, required) - The hash of the transaction that created the order + + order_hash: `6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb` (str, required) - The hash of the transaction that created the order + status (enum[str], optional) - The status of the order matches to return + Default: `all` + Members @@ -12561,13 +12679,13 @@ Returns the order matches of an order { "result": [ { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 54, - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", - "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "tx1_hash": "8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", + "tx1_address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12581,7 +12699,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730116023, + "block_time": 1730139035, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12601,13 +12719,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 52, - "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", + "tx1_address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12621,7 +12739,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730116019, + "block_time": 1730139032, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12651,7 +12769,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878` (str, required) - The hash of the transaction that created the order + + order_hash: `6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb` (str, required) - The hash of the transaction that created the order + cursor (str, optional) - The last index of the resolutions to return + Default: `None` + limit: `5` (int, optional) - The maximum number of resolutions to return @@ -12670,15 +12788,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "777b8db294c20301c6be44567366a7ae2c5f42c92f70002c4a90100213e13d88", "block_index": 187, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "btc_amount": 2000, - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "order_match_id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", "status": "valid", "confirmed": true, - "block_time": 1730116019, + "block_time": 1730139032, "btc_amount_normalized": "0.00002000" } ], @@ -12722,9 +12840,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx_hash": "0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", "block_index": 187, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12742,7 +12860,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730116019, + "block_time": 1730139032, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12768,9 +12886,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx_hash": "8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "block_index": 188, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12788,7 +12906,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730116023, + "block_time": 1730139035, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12814,9 +12932,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx_hash": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c", "block_index": 184, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12834,7 +12952,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730115936, + "block_time": 1730138958, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12860,9 +12978,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12880,7 +12998,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730116110, + "block_time": 1730139124, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12906,9 +13024,9 @@ Returns the orders to exchange two assets }, { "tx_index": 57, - "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "tx_hash": "1ef850048fccd57ed5563510f4f5dac7cfad13dc69f2ada5428f5fe52c58568a", "block_index": 192, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12926,7 +13044,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730116037, + "block_time": 1730139050, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12989,13 +13107,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 54, - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", - "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "tx1_hash": "8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", + "tx1_address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13012,7 +13130,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730116023, + "block_time": 1730139035, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13032,13 +13150,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 52, - "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", + "tx1_address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13055,7 +13173,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730116019, + "block_time": 1730139032, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13075,13 +13193,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "id": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c_2c9739c4b32a49f1a690d13a7cb87c3d70603a1c26d9b9e702a96442bd657671", "tx0_index": 49, - "tx0_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 50, - "tx1_hash": "6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "2c9739c4b32a49f1a690d13a7cb87c3d70603a1c26d9b9e702a96442bd657671", + "tx1_address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13098,7 +13216,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730115936, + "block_time": 1730138958, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13156,13 +13274,13 @@ Returns all the order matches { "result": [ { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 54, - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", - "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "tx1_hash": "8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", + "tx1_address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13176,7 +13294,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730116023, + "block_time": 1730139035, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13196,13 +13314,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 52, - "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", + "tx1_address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13216,7 +13334,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730116019, + "block_time": 1730139032, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13236,13 +13354,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "id": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c_2c9739c4b32a49f1a690d13a7cb87c3d70603a1c26d9b9e702a96442bd657671", "tx0_index": 49, - "tx0_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 50, - "tx1_hash": "6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "2c9739c4b32a49f1a690d13a7cb87c3d70603a1c26d9b9e702a96442bd657671", + "tx1_address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13256,7 +13374,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730115936, + "block_time": 1730138958, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13424,66 +13542,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "40efc8e4de6bc24410016279eb759071c80e3ac3ee8fc7a52725555c3f89979e", + "tx_hash": "979d8c9a2ebdf389de52fa1660a98b1137ec6da41c097f2a1b0570a06bb4feba", "block_index": 121, - "source": "bcrt1qrac7m6sqdzx9h798y52wk0qj5205d7vtqfjyds", + "source": "bcrt1qvvlvuw98tvd8xzd0yrsvzfzhgypmh20dkl87yf", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730115749, + "block_time": 1730138755, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "b3899728f4fbe6971190ca0558018b101f89d77a0a686dc9b3ccc415ca018e8b", + "tx_hash": "0b1beb2cba2846fe51ba9edcbb402aa324acd41b9dd04855c3e6eca04813d4f7", "block_index": 120, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "source": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730115746, + "block_time": 1730138751, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "3a7a3f1159a9cfa190b40ae0aeea74f6e7bb59e77c72bf9dfcd020f2cf08b918", + "tx_hash": "6abe149094464a2c1bbd78bc4aa30dda256da41cc5686421afdb11f41a2da736", "block_index": 119, - "source": "bcrt1qlzwnh8crxz0ezlqgv69hf4g482dp7lmzd8rrxl", + "source": "bcrt1qqdc0prpr0atgr2qrkgxm0wdwnqpllmh2p34073", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730115741, + "block_time": 1730138748, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "6315228e07c37718a4a5b514e8966e340617b45669cadb46b87c79fde9c61081", + "tx_hash": "ecee7738b827d2fe9b61c73c17f98fbfb3936bc59b7bc1fe65c971200eafafa4", "block_index": 118, - "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730115738, + "block_time": 1730138744, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "62015459a282a1c5ce61590bf6a13d1cc03908e59d02d09d8bb4327c8e8349f9", + "tx_hash": "b0c26d94ca7379469869c86b1049969ee0779ab94a06b4840d376d42ffc4978e", "block_index": 117, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730115735, + "block_time": 1730138741, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13528,9 +13646,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13539,7 +13657,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13549,7 +13667,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -13565,9 +13683,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "ccb421515f869082058aa6d0f05423e1c6ce8751d4146c89dee14e26c1c3130b", + "tx_hash": "a258b01afdaabd8e32851627fe1b02a421d434b1270dab90d804bd6dbd4836bd", "block_index": 142, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13576,7 +13694,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "origin": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13586,7 +13704,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115828, + "block_time": 1730138837, "asset_info": { "divisible": true, "asset_longname": null, @@ -13602,9 +13720,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "a809a9c0b667c336b61ce3e892a7f2d80231121804f3f7db594da58d9ded5a52", + "tx_hash": "26ebc0b3d811f899208f2fd859858a2f4c5ffc200c40b4a93bd969c6d36a3b8e", "block_index": 150, - "source": "mrTk1ThfTwE2f6PUY5vjkJvga5VgZXf4bk", + "source": "muiEfYPpvbgzQs92KTRehUaij59RKHzNSo", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13612,10 +13730,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "73d6215c951c71f26d391d50b72497e72188efc109135e95b1f58a4374c30be0", - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "last_status_tx_hash": "549bb50ff899d047cd2f260d9c7f969b6774065c96abea43442742fb4ba4c695", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 0, - "last_status_tx_source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "last_status_tx_source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13623,7 +13741,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115869, + "block_time": 1730138868, "asset_info": { "divisible": true, "asset_longname": null, @@ -13639,9 +13757,9 @@ Returns all dispensers }, { "tx_index": 62, - "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "tx_hash": "d9ebbde4d57e28e43829a23e320e99bd09a0cc05ea6b0c59351e0aee002c241f", "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13650,7 +13768,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13660,11 +13778,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730116055, + "block_time": 1730139069, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -13676,18 +13794,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13697,7 +13815,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -13722,7 +13840,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2` (str, required) - The hash of the dispenser to return + + dispenser_hash: `eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df` (str, required) - The hash of the dispenser to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -13734,9 +13852,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13745,7 +13863,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13755,7 +13873,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -13777,7 +13895,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2` (str, required) - The hash of the dispenser to return + + dispenser_hash: `eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df` (str, required) - The hash of the dispenser to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -13797,19 +13915,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "7a4c44d71545a4556d59db3caa34caf7de69c38085266b8f5ea4ce1723d55aa8", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13817,7 +13935,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13832,7 +13950,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -13846,19 +13964,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "901a08fbae97fe2160697f1a26dd121e99535032168302051e6f3200df15a665", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13866,7 +13984,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13881,7 +13999,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730138829, "asset_info": { "divisible": true, "asset_longname": null, @@ -13923,20 +14041,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "faecdff4961a9fd6da312f456cc6b09157b6d1d851f27819c1c8588c1dd9f23f", "block_index": 154, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730115885, + "block_time": 1730138884, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -13961,7 +14079,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a` (str, required) - The hash of the dividend to return + + dividend_hash: `faecdff4961a9fd6da312f456cc6b09157b6d1d851f27819c1c8588c1dd9f23f` (str, required) - The hash of the dividend to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -13973,20 +14091,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "faecdff4961a9fd6da312f456cc6b09157b6d1d851f27819c1c8588c1dd9f23f", "block_index": 154, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730115885, + "block_time": 1730138884, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -14008,7 +14126,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `faecdff4961a9fd6da312f456cc6b09157b6d1d851f27819c1c8588c1dd9f23f` (str, required) - The hash of the dividend distribution to return + cursor (str, optional) - The last index of the credit to return + Default: `None` + limit: `5` (int, optional) - The maximum number of credit to return @@ -14031,12 +14149,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "event": "faecdff4961a9fd6da312f456cc6b09157b6d1d851f27819c1c8588c1dd9f23f", "tx_index": 41, - "utxo": "98dc74f499bab33d7568cbb80cf2844a2c7c56b8c2f77d240c55b6583f71505a:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "utxo": "a4305454395c8205868671267db226a1774bd9023af6d6bc90521e17ff039f09:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "confirmed": true, - "block_time": 1730115885, + "block_time": 1730138884, "asset_info": { "divisible": true, "asset_longname": null, @@ -14048,16 +14166,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz", + "address": "bcrt1qmpe9apwn620rg688seeaa0u2u4mlmu5w6f3x4x", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "event": "faecdff4961a9fd6da312f456cc6b09157b6d1d851f27819c1c8588c1dd9f23f", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730115885, + "block_time": 1730138884, "asset_info": { "divisible": true, "asset_longname": null, @@ -14103,27 +14221,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "aca158120f73c7579de95c79be6418a95a5fa8f657f40712bb994d8c10f77cfc", + "messages_hash": "4b067e65e521582a964aef05b8d26b6c46e1bd27305b02a262268e210166750c", "transaction_count": 1, - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "block_time": 1730116123 + "txlist_hash": "df142cc3f0075757b9e9cb9353ce0032b8a9348592893c3daa8f8c40a72ebd2c", + "block_time": 1730139139 }, "tx_hash": null, "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 674, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75 }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 673, @@ -14132,14 +14250,14 @@ Returns all events "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -14150,9 +14268,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 672, @@ -14161,9 +14279,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "status": 0, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "asset_info": { "divisible": true, "asset_longname": null, @@ -14173,24 +14291,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -14200,9 +14318,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 670, @@ -14230,15 +14348,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "aca158120f73c7579de95c79be6418a95a5fa8f657f40712bb994d8c10f77cfc", + "messages_hash": "4b067e65e521582a964aef05b8d26b6c46e1bd27305b02a262268e210166750c", "transaction_count": 1, - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "block_time": 1730116123 + "txlist_hash": "df142cc3f0075757b9e9cb9353ce0032b8a9348592893c3daa8f8c40a72ebd2c", + "block_time": 1730139139 }, "tx_hash": null, "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } } ``` @@ -14316,16 +14434,16 @@ Returns the events filtered by event name "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -14335,9 +14453,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 669, @@ -14347,12 +14465,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -14362,9 +14480,9 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 666, @@ -14374,39 +14492,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "block_time": 1730139139, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 656, "event": "CREDIT", "params": { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "block_index": 207, "calling_function": "cancel order", - "event": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "event": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730116110, + "block_time": 1730139124, "asset_info": { "divisible": true, "asset_longname": null, @@ -14416,24 +14534,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00005000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730139124 }, { "event_index": 645, "event": "CREDIT", "params": { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "block_index": 206, "calling_function": "mpma send", - "event": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "event": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "quantity": 10, "tx_index": 73, "utxo": null, "utxo_address": null, - "block_time": 1730116106, + "block_time": 1730139120, "asset_info": { "divisible": true, "asset_longname": null, @@ -14443,9 +14561,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "block_index": 206, - "block_time": 1730116106 + "block_time": 1730139120 } ], "next_cursor": 644, @@ -14501,27 +14619,27 @@ Returns all the dispenses { "tx_index": 75, "dispense_index": 0, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "destination": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14536,7 +14654,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -14550,19 +14668,19 @@ Returns all the dispenses { "tx_index": 63, "dispense_index": 0, - "tx_hash": "6afc6887d0234625af2de1aad7aa4588fb3aa054b9f1df4e9de8cd43df5794ae", + "tx_hash": "e9caa143d2b32587a41f3183a44bf80222940ae76a0971fb1533667751cf7d5a", "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "dispenser_tx_hash": "d9ebbde4d57e28e43829a23e320e99bd09a0cc05ea6b0c59351e0aee002c241f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14570,7 +14688,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14585,11 +14703,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730116055, + "block_time": 1730139069, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -14599,27 +14717,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "20ee1f7c37198c60e5b697aa072434689128d11ddd55ed299c9fa30686503493", + "tx_hash": "46e9e12bc3f5bb206f47cc66d0347ce84245d325e7ca5616f32a49f66e6d6952", "block_index": 147, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "destination": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14634,7 +14752,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730115848, + "block_time": 1730138856, "asset_info": { "divisible": true, "asset_longname": null, @@ -14648,19 +14766,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "7a4c44d71545a4556d59db3caa34caf7de69c38085266b8f5ea4ce1723d55aa8", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14668,7 +14786,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14683,7 +14801,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -14697,19 +14815,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "901a08fbae97fe2160697f1a26dd121e99535032168302051e6f3200df15a665", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14717,7 +14835,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14732,7 +14850,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730138829, "asset_info": { "divisible": true, "asset_longname": null, @@ -14774,10 +14892,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "destination": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -14785,7 +14903,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -14798,10 +14916,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "destination": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -14809,11 +14927,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -14822,10 +14940,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "block_index": 206, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14833,7 +14951,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730139120, "asset_info": { "divisible": true, "asset_longname": null, @@ -14846,10 +14964,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "block_index": 206, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14857,11 +14975,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730139120, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -14870,10 +14988,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "block_index": 206, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14881,11 +14999,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730139120, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -14936,14 +15054,14 @@ Returns all the issuances "result": [ { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -14958,20 +15076,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730116077, + "block_time": 1730139090, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 64, - "tx_hash": "c915023b8b26fc3eb938d496087a062745ad462fccab637368bddfd4fb29c4ba", + "tx_hash": "7866e26c38d4824b2abd62ccc128266030848bf90a8cae55700e7166c798ee9b", "msg_index": 0, "block_index": 198, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", - "issuer": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen", + "issuer": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen", "transfer": false, "callable": false, "call_date": 0, @@ -14986,20 +15104,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730116060, + "block_time": 1730139073, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "92d810aacd89aaed4756618250d3df3739516fda551847d01a705a57cf250e1c", + "tx_hash": "2cf2f6adb24fe9a7be38a9d3f3d1031e31d13d9c9802e1bb5d7666d98e13c3e9", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -15014,20 +15132,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730115921, + "block_time": 1730138943, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "652fa348e445bedc79af7c8da7e9edd116fc6586bb2896968234ade2b0de91c4", + "tx_hash": "57cdd83d521d29f8483683c177b56cd0dd6910de4cfd2709dcabad68c77f1032", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -15042,20 +15160,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730115918, + "block_time": 1730138929, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "a9640b7ef998e1287a94371074ed8dd399613638ecb6a9c1a406fd5ce29727e0", + "tx_hash": "75572517365df9448cdf1643368ee288e155a812cdf80dd46fdf74abafa5cf95", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -15070,7 +15188,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730115914, + "block_time": 1730138915, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15085,7 +15203,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc` (str, required) - The hash of the transaction to return + + tx_hash: `1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15097,14 +15215,14 @@ Returns the issuances of a block { "result": { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -15119,7 +15237,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730116077, + "block_time": 1730139090, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15151,16 +15269,16 @@ Returns all sweeps "result": [ { "tx_index": 60, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "71e2343f1a4a660b6eb55c68b383b81198dd1d707df3675c0a345046cc94c411", "block_index": 194, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730116045, + "block_time": 1730139058, "fee_paid_normalized": "0.00600000" } ], @@ -15174,7 +15292,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4` (str, required) - The hash of the transaction to return + + tx_hash: `71e2343f1a4a660b6eb55c68b383b81198dd1d707df3675c0a345046cc94c411` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15187,16 +15305,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 60, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "71e2343f1a4a660b6eb55c68b383b81198dd1d707df3675c0a345046cc94c411", "block_index": 194, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730116045, + "block_time": 1730139058, "fee_paid_normalized": "0.00600000" } ], @@ -15230,9 +15348,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "tx_hash": "b62b9151ddb7d171028938e3fa175d44f647c4d938dd939a62f845796c500c47", "block_index": 138, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15240,14 +15358,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730115814, + "block_time": 1730138821, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "261b5785cc07a1f7000bee3be198f5d90393f35ed50ad3c8656eafadf5e468dc", + "tx_hash": "249d7545e6d4ac34989f93c91683e943579bbff7ce734459d67bb521e134c5ab", "block_index": 137, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15255,7 +15373,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730115811, + "block_time": 1730138818, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15269,7 +15387,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9` (str, required) - The hash of the transaction to return + + tx_hash: `b62b9151ddb7d171028938e3fa175d44f647c4d938dd939a62f845796c500c47` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15281,9 +15399,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "tx_hash": "b62b9151ddb7d171028938e3fa175d44f647c4d938dd939a62f845796c500c47", "block_index": 138, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15291,7 +15409,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730115814, + "block_time": 1730138821, "fee_fraction_int_normalized": "0.00000000" } } @@ -15328,10 +15446,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_hash": "42a285d407b0482a81904545dacac2ecf78dd87157cdc4ff5c37086b078ee059", "tx_index": 42, "block_index": 155, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15356,7 +15474,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730115889, + "block_time": 1730138899, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15365,10 +15483,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "tx_hash": "29b7175f8cb8f4c4676752ff62c91262d377175a6994145c8fb27e832eadcd98", "tx_index": 22, "block_index": 135, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15393,7 +15511,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730115804, + "block_time": 1730138810, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15405,10 +15523,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "tx_hash": "022f35c10f14c2ea46ee28369585bf5e4f9d527b2f0f551680c699bba7b5067f", "tx_index": 18, "block_index": 131, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15433,7 +15551,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730115789, + "block_time": 1730138794, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15445,10 +15563,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", + "tx_hash": "484463111a0414fb5c61a2480486d42e52aa4fcb1316ab426dcf72d369af3cc8", "tx_index": 14, "block_index": 130, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15473,7 +15591,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730115785, + "block_time": 1730138790, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15485,10 +15603,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "tx_hash": "79aace64fffe0222b602a1c6209eda6252182a30bd6aad873f434c1d3e52fdcb", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15513,7 +15631,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730115766, + "block_time": 1730138770, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15582,22 +15700,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "cb3f7778d2be0cdafe509a5da15d6a13ccbd7acb72821744a6bd3fc15571b4bd", "tx_index": 23, "block_index": 136, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "29b7175f8cb8f4c4676752ff62c91262d377175a6994145c8fb27e832eadcd98", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115808, + "block_time": 1730138813, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -15606,22 +15724,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "5da24fdc5b0f42414404df0110e4a3cd79789b5706be7b301d976f9eef623346", + "tx_hash": "8f63058af67e1d6bfbca9dcdc44be48390cee42fd957142c3dbb6349a9249027", "tx_index": 21, "block_index": 134, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "022f35c10f14c2ea46ee28369585bf5e4f9d527b2f0f551680c699bba7b5067f", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115800, + "block_time": 1730138806, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -15630,22 +15748,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "98840296af69b519b38aaa9663baa393849683e67da07ce11e4aa21df9259e2f", + "tx_hash": "28655ebccabe82e70af2497d724e2b88df44b5ef7acda995ffa12e8e70bbe855", "tx_index": 20, "block_index": 133, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "022f35c10f14c2ea46ee28369585bf5e4f9d527b2f0f551680c699bba7b5067f", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115797, + "block_time": 1730138801, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -15654,22 +15772,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "e26754ee3f011a743d3bd45d712d1fe4056c4b4f657f391b5d06c33191fe01d3", + "tx_hash": "e189d65f18255b300aa1a11aa1190533fc1611876bfe6e77c7cee8d842affd09", "tx_index": 19, "block_index": 132, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "022f35c10f14c2ea46ee28369585bf5e4f9d527b2f0f551680c699bba7b5067f", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115793, + "block_time": 1730138797, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -15678,22 +15796,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "c2ff22176088f20d29376840755983b7b85d64f16b7c262e35059b6ee5a80208", + "tx_hash": "8c4ef2bf4c1fefdcb7b759e2dd4ee838e0f2958e5f0bdab68bee50c14fcd93df", "tx_index": 17, "block_index": 129, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "fairminter_tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", + "fairminter_tx_hash": "484463111a0414fb5c61a2480486d42e52aa4fcb1316ab426dcf72d369af3cc8", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115781, + "block_time": 1730138785, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -15712,7 +15830,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869` (str, required) - The hash of the fairmint to return + + tx_hash: `cb3f7778d2be0cdafe509a5da15d6a13ccbd7acb72821744a6bd3fc15571b4bd` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15723,22 +15841,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "cb3f7778d2be0cdafe509a5da15d6a13ccbd7acb72821744a6bd3fc15571b4bd", "tx_index": 23, "block_index": 136, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "29b7175f8cb8f4c4676752ff62c91262d377175a6994145c8fb27e832eadcd98", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115808, + "block_time": 1730138813, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -15756,7 +15874,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg,bcrt1qlzwnh8crxz0ezlqgv69hf4g482dp7lmzd8rrxl` (str, required) - The addresses to search for + + addresses: `bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen,bcrt1qqdc0prpr0atgr2qrkgxm0wdwnqpllmh2p34073` (str, required) - The addresses to search for + unconfirmed (bool, optional) - Include unconfirmed transactions + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -15770,22 +15888,22 @@ Returns a list of unspent outputs for a list of addresses { "result": [ { - "vout": 0, + "vout": 1, "height": 200, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "260f8515d5cf01148f41d85cf4e21251e532277b3c37ba22a3c72be4cd065b05", - "address": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg" + "amount": 49.499345, + "txid": "4625e6e4bd79e0223a8f70f71f063cb43c4d354c025c430fe46aaa6464207e5b", + "address": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen" }, { - "vout": 1, + "vout": 0, "height": 200, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "4b90e72e007ba15a6a40fdfc84e5f898b4f34917ddd7eefb3d3c380238678261", - "address": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg" + "amount": 5.46e-05, + "txid": "fae83ae3fe98479708dbfe0348101af666661f1da6f5468dd3a20d3df5678770", + "address": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen" }, { "vout": 2, @@ -15793,8 +15911,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 52, "amount": 0.001, - "txid": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e", - "address": "bcrt1qlzwnh8crxz0ezlqgv69hf4g482dp7lmzd8rrxl" + "txid": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71", + "address": "bcrt1qqdc0prpr0atgr2qrkgxm0wdwnqpllmh2p34073" } ], "next_cursor": null, @@ -15807,7 +15925,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu` (str, required) - The address to search for + + address: `bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9` (str, required) - The address to search for + unconfirmed: `True` (bool, optional) - Include unconfirmed transactions + Default: `True` + only_tx_hashes: `True` (bool, optional) - Return only the tx hashes @@ -15823,28 +15941,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "46275b59a76a524ece7bbe93bdce57ca07ca43cb22ad6592ae00e7f1ab310111" + "tx_hash": "c433d1f5c9cfcc12e5646d0394ed87e07d5c93c8ecbe75748fb83920c2042b00" }, { - "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614" + "tx_hash": "71e2343f1a4a660b6eb55c68b383b81198dd1d707df3675c0a345046cc94c411" }, { - "tx_hash": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28" + "tx_hash": "e8d0a6403e90e4fad11e7358b12c036afe1b0e05d598d8eb001a44e813a54e5a" }, { - "tx_hash": "befc407b97cc222e3e9fadff546d543c02db387adea45dd405c48f173c37b6ba" + "tx_hash": "a57218d6e5e67f875653495bd14107cc8632c74f7b89f57ddf07bf5977e60e60" }, { - "tx_hash": "5d1e44b8239fc1804e1dfb41c0ff24d1b9fe50fdd26c0a080ddcc73e152633bd" + "tx_hash": "8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363" }, { - "tx_hash": "ebdd9911ac289e537ed7c712b293decfb0d690c1b2390873d53383b30979e9c8" + "tx_hash": "42689c7732a5b2b6fdb719c0db2f53db7762653aff5aa7af65dbea91db0cf267" }, { - "tx_hash": "54cb02f91cc1d54472f02930f57a18f5e5c9fbd699b1c40339fa0b223b3c2af1" + "tx_hash": "a7551034f9a746afa2c8901b415aea2b7f64f7d6b6a15a1f71c78c6a66c99a84" }, { - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4" + "tx_hash": "c3078ffca2ad8cd42de6fb7e76d2cff168e34030682e6de864c0137988dc9eee" } ], "next_cursor": null, @@ -15857,7 +15975,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh` (str, required) - The address to search for. + + address: `bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj` (str, required) - The address to search for. + block_index (int, optional) - The block index to search from. + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -15870,8 +15988,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 3, - "tx_hash": "538e56b094f8dbba32f0ec9a3e237582b618490767ec074bc8a822c4657988a8" + "block_index": 1, + "tx_hash": "ddd8c07f8a7c499dcdbd2ffc6ab0d07938fdcd97aa2dfdbe63f93470a1c946b7" } } ``` @@ -15881,7 +15999,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg` (str, required) - The address to search for + + address: `bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen` (str, required) - The address to search for + unconfirmed (bool, optional) - Include unconfirmed transactions + Default: `False` + unspent_tx_hash (str, optional) - Filter by unspent_tx_hash @@ -15902,7 +16020,7 @@ Returns a list of unspent outputs for a specific address "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "260f8515d5cf01148f41d85cf4e21251e532277b3c37ba22a3c72be4cd065b05" + "txid": "fae83ae3fe98479708dbfe0348101af666661f1da6f5468dd3a20d3df5678770" }, { "vout": 1, @@ -15910,7 +16028,7 @@ Returns a list of unspent outputs for a specific address "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "4b90e72e007ba15a6a40fdfc84e5f898b4f34917ddd7eefb3d3c380238678261" + "txid": "4625e6e4bd79e0223a8f70f71f063cb43c4d354c025c430fe46aaa6464207e5b" } ], "next_cursor": null, @@ -15923,7 +16041,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr` (str, required) - Address to get pubkey for. + + address: `bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c` (str, required) - Address to get pubkey for. + provided_pubkeys (str, optional) - Comma separated list of provided pubkeys. + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -15935,7 +16053,7 @@ Get pubkey for an address. ``` { - "result": "03998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f5" + "result": "03f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d5" } ``` @@ -15944,7 +16062,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8` (str, required) - The transaction hash + + tx_hash: `46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67` (str, required) - The transaction hash + format: `hex` (str, optional) - Whether to return JSON output or raw hex + Default: `json` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -15956,7 +16074,7 @@ Get a transaction from the blockchain ``` { - "result": "020000000001016e888e762a5bf751913b28c9af990e94615e21052e49580e84f3926bebd9fca50100000000ffffffff03e803000000000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e100000000000000000c6a0aa390177068284096dde5dced082701000000160014d950bc5f9180ecff106845a230a250af93710c9a02473044022075c5b31202028752fbe4fef802a6100e72659ca2b61b87ead38c4cd1b7a3951102203037bfa13cc2fc1f3130ab74ee5aedde6649fb33ec0c628e7e9afba8fc8010c00121029bf65cc180612a741a06643bfa5b68c3dce8915d289aea03ca0bdbaa4d03e70700000000" + "result": "0200000000010171bc87ad68db4e0a557b0825977b1014e4585781c071a0a0aa6e77433507cce20100000000ffffffff03e8030000000000001600140c4d0a4310cb026fbd6bb29f6d31f2326716509b00000000000000000c6a0a72cb8c6b4d43eeae4edcdced082701000000160014830c99cc4d46e9e2ee5f1fb82ac520ba97ee786702473044022069b6fb92932be853a13cccd859f56d1cafbcbddcf8ce6b72436288be794f18f20220320c9bdaec5e0e72103a6d52617394f1a319fcea6639e25d1bfea558fc593308012102fbba7b69d7fafe18d1c59c46680f18cb597a8bfe2a80bc7a48b3fc995c87128a00000000" } ``` @@ -16051,27 +16169,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "tx_index": 76 }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "memo": null, "quantity": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "status": "valid", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "tx_index": 76, "asset_info": { "divisible": true, @@ -16082,22 +16200,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "CREDIT", "params": { - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -16107,22 +16225,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "XCP", "block_index": 208, - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -16132,30 +16250,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730116127.587877, + "block_time": 1730139143.3448281, "btc_amount": 0, - "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", + "data": "0200000000000000010000000000002710804edee264e437d1df26c6d93c307e7ff097166b84", "destination": "", "fee": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "tx_index": 76, - "utxos_info": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f:1", + "utxos_info": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "memo": null, "asset_info": { "divisible": true, @@ -16169,7 +16287,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 } ], "next_cursor": null, @@ -16200,19 +16318,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "CREDIT", "params": { - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -16222,7 +16340,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 } ], "next_cursor": null, @@ -16235,7 +16353,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f` (str, required) - The hash of the transaction to return + + tx_hash: `20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor (str, optional) - The last event index to return @@ -16255,27 +16373,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "tx_index": 76 }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "memo": null, "quantity": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "status": "valid", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "tx_index": 76, "asset_info": { "divisible": true, @@ -16286,22 +16404,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "CREDIT", "params": { - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -16311,22 +16429,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "XCP", "block_index": 208, - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -16336,30 +16454,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730116127.587877, + "block_time": 1730139143.3448281, "btc_amount": 0, - "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", + "data": "0200000000000000010000000000002710804edee264e437d1df26c6d93c307e7ff097166b84", "destination": "", "fee": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "tx_index": 76, - "utxos_info": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f:1", + "utxos_info": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "memo": null, "asset_info": { "divisible": true, @@ -16373,7 +16491,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/queries.py b/counterparty-core/counterpartycore/lib/api/queries.py index 06f36e1381..3b78ca5632 100644 --- a/counterparty-core/counterpartycore/lib/api/queries.py +++ b/counterparty-core/counterpartycore/lib/api/queries.py @@ -1562,6 +1562,25 @@ def get_address_balances( ) +def get_utxo_balances(db, utxo: str, cursor: str = None, limit: int = 100, offset: int = None): + """ + Returns the balances of an utxo + :param str utxo: The utxo to return (e.g. $UTXO_WITH_BALANCE) + :param str cursor: The last index of the balances to return + :param int limit: The maximum number of balances to return (e.g. 5) + :param int offset: The number of lines to skip before returning results (overrides the `cursor` parameter) + """ + return select_rows( + db, + "balances", + where={"utxo": utxo, "quantity__gt": 0}, + last_cursor=cursor, + limit=limit, + offset=offset, + select="asset, quantity, utxo, utxo_address", + ) + + def get_balances_by_addresses( db, addresses: str, cursor: str = None, limit: int = 100, offset: int = None, sort: str = None ): diff --git a/counterparty-core/counterpartycore/lib/api/routes.py b/counterparty-core/counterpartycore/lib/api/routes.py index a230afb9e8..963190ac32 100644 --- a/counterparty-core/counterpartycore/lib/api/routes.py +++ b/counterparty-core/counterpartycore/lib/api/routes.py @@ -76,6 +76,7 @@ def get_routes(): "/v2/addresses/
/fairminters": queries.get_fairminters_by_address, "/v2/addresses/
/fairmints": queries.get_fairmints_by_address, "/v2/addresses/
/fairmints/": queries.get_fairmints_by_address_and_asset, + "/v2/utxos//balances": queries.get_utxo_balances, ### /addresses/
/compose/ ### "/v2/addresses/
/compose/bet": compose.compose_bet, "/v2/addresses/
/compose/broadcast": compose.compose_broadcast, diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 918414244e..db9f16b5d3 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -4738,6 +4738,11 @@ "next_cursor": null, "result_count": 0 }, + "http://localhost:10009/v2/utxos//balances?verbose=true": { + "result": [], + "next_cursor": null, + "result_count": 0 + }, "http://localhost:10009/v2/assets?verbose=true": { "result": [ { @@ -10820,6 +10825,53 @@ } ] }, + "/v2/utxos//balances": { + "function": "get_utxo_balances", + "description": "Returns the balances of an utxo", + "args": [ + { + "name": "utxo", + "required": true, + "type": "str", + "description": "The utxo to return (e.g. $UTXO_WITH_BALANCE)" + }, + { + "name": "cursor", + "default": null, + "required": false, + "type": "str", + "description": "The last index of the balances to return" + }, + { + "name": "limit", + "default": 100, + "required": false, + "type": "int", + "description": "The maximum number of balances to return (e.g. 5)" + }, + { + "name": "offset", + "default": null, + "required": false, + "type": "int", + "description": "The number of lines to skip before returning results (overrides the `cursor` parameter)" + }, + { + "name": "verbose", + "type": "bool", + "default": "false", + "description": "Include asset and dispenser info and normalized quantities in the response.", + "required": false + }, + { + "name": "show_unconfirmed", + "type": "bool", + "default": "false", + "description": "Include results from Mempool.", + "required": false + } + ] + }, "/v2/addresses/
/compose/bet": { "function": "compose_bet", "description": "Composes a transaction to issue a bet against a feed.", diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 5edc7b3ab9..36698ca589 100644 --- a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json +++ b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json @@ -3,61 +3,61 @@ "result": [ { "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_hash": "533aa13765b9bc05a46027d588d5a5aa368bfe2ab91d51fe1fcb93aa9b7d2836", + "block_time": 1730139139, + "previous_block_hash": "39f247e162c2a49b3fc5bb01c5374ad7a6c0e7e4573dc5511953a7a7586c5a8b", "difficulty": 545259519, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "aca158120f73c7579de95c79be6418a95a5fa8f657f40712bb994d8c10f77cfc", + "txlist_hash": "df142cc3f0075757b9e9cb9353ce0032b8a9348592893c3daa8f8c40a72ebd2c", + "messages_hash": "4b067e65e521582a964aef05b8d26b6c46e1bd27305b02a262268e210166750c", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", - "block_time": 1730116110, - "previous_block_hash": "43e679712b4649bc798af14df94c86578f3b408d04178a5c2fc175d41a020122", + "block_hash": "39f247e162c2a49b3fc5bb01c5374ad7a6c0e7e4573dc5511953a7a7586c5a8b", + "block_time": 1730139124, + "previous_block_hash": "66c82fc9d180c1057e14fd160979e231193160194e5868ccede7270fb1dcf083", "difficulty": 545259519, - "ledger_hash": "ba02d6708a382d3713cfcfcccac729b1e7e29a6a2aa1c7d19685ccc856890da8", - "txlist_hash": "790b35ebd56c4d625af0345f72bd428d1cb0c0318f9935ae19163367f47cbd3a", - "messages_hash": "1933b8e86c5aad6c5816ac34109db0a5f96f3f784097419eaa5909389373eb47", + "ledger_hash": "da3f4d527c6889db639613b719e5e1ff7769160a38421e23f955e574ceee6c70", + "txlist_hash": "d59fa4308871bfe8a408fd5c26be1f5b5be971484cf2b243eff0aff83384ed68", + "messages_hash": "99013b35255969fc692263b8d647012d710b84809c42ea53e3b169bd3ddd923d", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "43e679712b4649bc798af14df94c86578f3b408d04178a5c2fc175d41a020122", - "block_time": 1730116106, - "previous_block_hash": "4a895299665e1f654c5117e9c4b133cbccccd6db23134dca896fa8a620b81d38", + "block_hash": "66c82fc9d180c1057e14fd160979e231193160194e5868ccede7270fb1dcf083", + "block_time": 1730139120, + "previous_block_hash": "68212fdfd0bce2152a8a3cf0e64966ac7466cb2f07bb0c26a3a60244c9e71395", "difficulty": 545259519, - "ledger_hash": "5191f4352b18e0244b417732e8ca9a2f4099e82fe6378941d597a9d0f44a35eb", - "txlist_hash": "11ed68e7e561ca9c47bd5e3b49cb3a916edd7b0565c99186172ce08b245266b6", - "messages_hash": "6d6616e6036b35108a1433422b6728e8e7184fe366730d6c4167cf4f128f3957", + "ledger_hash": "8ce953386a7efd7bbc292a4dc9f937a1c50ffefc941afae9794ee2b6406cf032", + "txlist_hash": "b8ca9f13b362b9da41bdd4766842547fbea35f015698597cb3e1436aa8b8884c", + "messages_hash": "96ab2200d849f4da4343511c128ba4d3233ef2ee6e86020414d72342a0a090c7", "transaction_count": 1, "confirmed": true }, { "block_index": 205, - "block_hash": "4a895299665e1f654c5117e9c4b133cbccccd6db23134dca896fa8a620b81d38", - "block_time": 1730116102, - "previous_block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", + "block_hash": "68212fdfd0bce2152a8a3cf0e64966ac7466cb2f07bb0c26a3a60244c9e71395", + "block_time": 1730139116, + "previous_block_hash": "5dc2fe5f12af98d66aeeddf67a1ba33af07b6858039b9750e6c7fe9edc2d7f38", "difficulty": 545259519, - "ledger_hash": "9bc1700e61ef5a091713fdba122f7f916443a27ccc0f6f8962ebd916f77b09fe", - "txlist_hash": "447c3368dca8d934fd7757b6f897b5f6060d596592dc32123ae0664d1286d758", - "messages_hash": "933776eb7aae2e8246e02f0527252645708affea8a2cfcee96ed6a4022a47ab8", + "ledger_hash": "43e6b9351b5e6eaa13eb4319f97f63e50e98bf2254c6094cc3fff189ad1f1573", + "txlist_hash": "9874a139c94d5d5cfc5c8ef5751f49d3ebb211defd1f48a6387e89cf4def6de5", + "messages_hash": "7e00471c9b7f4754fd02c72d99889c117296c9d4aa0524470bc63d9a1234bdd1", "transaction_count": 1, "confirmed": true }, { "block_index": 204, - "block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", - "block_time": 1730116099, - "previous_block_hash": "37274251a093028e8065cbc9af85901d3961a9e5e04f4e726b13a0506a915652", + "block_hash": "5dc2fe5f12af98d66aeeddf67a1ba33af07b6858039b9750e6c7fe9edc2d7f38", + "block_time": 1730139112, + "previous_block_hash": "47a1ccf817137291edd203e6184d0835b27cfa48469ac7c1a77ab098d39d113b", "difficulty": 545259519, - "ledger_hash": "aa1ba152bb405e250dbe4f7276f155e4c10345fbf42243536809bc9a0ca0307a", - "txlist_hash": "757b7ab2907208b3a7d0202f310e15a22fd7dd5205a5acef4262a2c013a56c84", - "messages_hash": "f866e444026dcc12e65fad983a1b2435470977f04f7668204304a707a604c729", + "ledger_hash": "f2635765d5eafc03bfeb510cbdbc85d49ecc6ced91d993bee4b9667d21a5351c", + "txlist_hash": "fca85ffa1707737c4751184090137ead1aea54fa2d557f89760b2e3f95b757e1", + "messages_hash": "d5b17fbaa2cf25b484dda76184831beb75074eb84e8e14a79e00aede3e13b551", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_hash": "533aa13765b9bc05a46027d588d5a5aa368bfe2ab91d51fe1fcb93aa9b7d2836", + "block_time": 1730139139, + "previous_block_hash": "39f247e162c2a49b3fc5bb01c5374ad7a6c0e7e4573dc5511953a7a7586c5a8b", "difficulty": 545259519, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "aca158120f73c7579de95c79be6418a95a5fa8f657f40712bb994d8c10f77cfc", + "txlist_hash": "df142cc3f0075757b9e9cb9353ce0032b8a9348592893c3daa8f8c40a72ebd2c", + "messages_hash": "4b067e65e521582a964aef05b8d26b6c46e1bd27305b02a262268e210166750c", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_hash": "533aa13765b9bc05a46027d588d5a5aa368bfe2ab91d51fe1fcb93aa9b7d2836", + "block_time": 1730139139, + "previous_block_hash": "39f247e162c2a49b3fc5bb01c5374ad7a6c0e7e4573dc5511953a7a7586c5a8b", "difficulty": 545259519, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "aca158120f73c7579de95c79be6418a95a5fa8f657f40712bb994d8c10f77cfc", + "txlist_hash": "df142cc3f0075757b9e9cb9353ce0032b8a9348592893c3daa8f8c40a72ebd2c", + "messages_hash": "4b067e65e521582a964aef05b8d26b6c46e1bd27305b02a262268e210166750c", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_hash": "533aa13765b9bc05a46027d588d5a5aa368bfe2ab91d51fe1fcb93aa9b7d2836", + "block_time": 1730139139, + "source": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", + "destination": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1 46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "aca158120f73c7579de95c79be6418a95a5fa8f657f40712bb994d8c10f77cfc", + "messages_hash": "4b067e65e521582a964aef05b8d26b6c46e1bd27305b02a262268e210166750c", "transaction_count": 1, - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "block_time": 1730116123 + "txlist_hash": "df142cc3f0075757b9e9cb9353ce0032b8a9348592893c3daa8f8c40a72ebd2c", + "block_time": 1730139139 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75 }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67" }, { "event_index": 673, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67" }, { "event_index": 672, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "status": 0, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67" }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67" } ], "next_cursor": 670, @@ -256,16 +256,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67" }, { "event_index": 669, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67" }, { "event_index": 666, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "block_time": 1730139139, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8" + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 208, - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "utxo": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "utxo_address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "utxo": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "utxo_address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "object_id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", "block_index": 207, "confirmed": true, - "block_time": 1730116110 + "block_time": 1730139124 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 58, - "tx_hash": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603", + "tx_hash": "6fe15c08049a8f5a9d8d40647fdea6088c7fa39f240ce1fc7ddf3720b1806e20", "block_index": 192, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "offer_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "offer_hash": "1ef850048fccd57ed5563510f4f5dac7cfad13dc69f2ada5428f5fe52c58568a", "status": "valid", "confirmed": true, - "block_time": 1730116037 + "block_time": 1730139050 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 61, - "tx_hash": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c", + "tx_hash": "f7581615776ca9cceecb5482c116c218eab369f2443e471d45cacade6987ffbb", "block_index": 195, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730116049, + "block_time": 1730139062, "asset_info": { "divisible": true, "asset_longname": null, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730116077, + "block_time": 1730139090, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "destination": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -565,10 +565,10 @@ }, { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "destination": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 75, "dispense_index": 0, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "destination": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -650,16 +650,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "71e2343f1a4a660b6eb55c68b383b81198dd1d707df3675c0a345046cc94c411", "block_index": 194, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730116045, + "block_time": 1730139058, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_hash": "42a285d407b0482a81904545dacac2ecf78dd87157cdc4ff5c37086b078ee059", "tx_index": 42, "block_index": 155, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730115889, + "block_time": 1730138899, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "cb3f7778d2be0cdafe509a5da15d6a13ccbd7acb72821744a6bd3fc15571b4bd", "tx_index": 23, "block_index": 136, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "29b7175f8cb8f4c4676752ff62c91262d377175a6994145c8fb27e832eadcd98", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115808, + "block_time": 1730138813, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_hash": "533aa13765b9bc05a46027d588d5a5aa368bfe2ab91d51fe1fcb93aa9b7d2836", + "block_time": 1730139139, + "source": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", + "destination": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1 46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", - "block_time": 1730116110, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "39f247e162c2a49b3fc5bb01c5374ad7a6c0e7e4573dc5511953a7a7586c5a8b", + "block_time": 1730139124, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "utxos_info": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -816,18 +816,53 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "03000380ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a5804edee264e437d1df26c6d93c307e7ff097166b848048856eb8c17951dac58843912376a31fe76b958e40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "22235f2d650a226bf825e40c3473b0e86f83f9343173f94cbc4a32f87c65de5a", + "hash": "4a80f53fb06e8e843721f0f8ea70694c200bbcf43ca693e31d5e6ad26ede8637", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "fbf2072f9f531905c8cacac06d0607a4467947f9904bd397d520d46436bb188e", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "c16bda00e0d2ce1c43ed87cd029084baf0c296465a072a3b2ddadf6fab4c5274", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "269f505ed13beecc05a11a28d74ff01ff362b72da17732e7de0d20d725551af5", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "076d5570db434ef35d4217936b13eed5e7b897a6ee16eed93f57728818b36abc", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "58386364a4a7a0dbace5ca0cd7cd9439c3e486a76a149822250c2ee867ae0e1d", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -836,69 +871,93 @@ ], "vout": [ { - "value": 0, - "script_pub_key": "6a33092deefc89a2a67b64e4c655a20092a63cf5fe4084982c805fb233a2bc65b00a4ef01528b34993cb1af6dde83d6b01746fbf64" + "value": 1000, + "script_pub_key": "51210397b22feb51a90b63a8dd411831c3f1d272662b94d56e332e1f53c6292602956c2102d6bc3297327b6fc712629e89d721fbe1b2bd62443370b3fad573e53c50aca3162103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d553ae" }, { - "value": 4999990000, - "script_pub_key": "001488638b12211ad2887d7013cdfa98b822eb7f220a" + "value": 1000, + "script_pub_key": "51210397b22feb51a90b63a8048493f2be6b77f82f11c33fe673f8c673da0283cd1b492102df19b2d9ec990b093006d41aad32c7d1ccc292d32511b217f89be4b711d5f2b72103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d553ae" + }, + { + "value": 1000, + "script_pub_key": "512102b6b22feb51a90b63a8de411bb12fc8015b30f6a8aa6867d3ad5d521b8309cfbb2103df19b2d9ec990b2325b341af11f8c7d1ccc292d3251b377a9df68b8491d5f2132103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d553ae" + }, + { + "value": 29999987000, + "script_pub_key": "0014abfde7e500a8fa0b913a29a15b6144de743eac8e" } ], "vtxinwit": [ - "3044022021eba1988ce97e426258deed9b863cd2f5e51abed055fc30eafdd9d5673ebbca022035367d00fdbc15592a449b1d3aceb36faeb59a30b022c4120fe5ae511cdf3b4401", - "03998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f5" + "304402201fe5a81fb7c91cbec09001e1e9991828d8635c06ee548e869b2b5a65a5ace087022073bb82138c58c025956de4cccfd14dcff24ba0911aa3833560d76429faa8110801", + "03f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d5", + "304402204abf58638b752657a4583c4f8c83892d6e104aaaa3e64e0d4bc010752050076602202ee66a83c8f2e4ae83d1baddbf7ed306e756f2d4512ab69d03e9ab2ba58b1b9a01", + "03f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d5", + "304402203f17fcca4c6ac873d85eb35e6bd018f8c713fb9abb1062e6dc813944fa45cebd02207aaf34ba059cc0be55025d6c01bad010a6a90e6883575ae3d535c6dfcff9743a01", + "03f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d5", + "30440220487bff45fe83cc9247bf2cb3bca2130eb6af76718930b72b422b4bd09690b7ab022030294ba5959385153e07eb6f06556f6e38c71ff8a4b382877141e0e765347e1d01", + "03f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d5", + "30440220023f0ee5cd164d7cba26cb1f07bf6db3dab4fa2c35d994d0ec2d4ddac627f68202207f8eebfa05d619303380d92972974299d01d3ddf1c8754e00a25c5c9ab81d48701", + "03f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d5", + "304402206cf2314f154e05433faf62cb333451e397e26b6c8f7353f2e58496c45caeefad02201151aa8603e66752dcd141dd9a735766855ea5aede63e5049dbe0c7ddfe8ce4501", + "03f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d5" ], "lock_time": 0, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", - "tx_id": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8" + "tx_hash": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", + "tx_id": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5" }, "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", + "quantity": 10, + "memo": "memo2", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } + { + "asset": "XCP", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "quantity": 10, + "memo": "memo1", + "memo_is_hex": false, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] }, "btc_amount_normalized": "0.00000000" } }, "/v2/transactions//info": { "result": { - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", + "data": "0200000000000000010000000000002710804edee264e437d1df26c6d93c307e7ff097166b84", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "5a50713f58b6550c247df7c2b8567c2c4a84f20cb8cb68753db3ba99f474dc98", + "hash": "099f03ff171e5290bcd6f63a02d94b77a126b27d2671868605825c39545430a4", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -908,20 +967,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2eb84b152a827bd18cceeba1308198de9799d937904e165fafd90b85dbc93bc1a08b3043d21b9b815079166ecce04f" + "script_pub_key": "6a2eba63eff47ceba9025a13583127759e6923444e07520830825cf7beffd3aa855368baf088e40e3b0d12c0c70a4588" }, { "value": 4999970000, - "script_pub_key": "00142ae165e7b04a97caa52d91a46d89891d704370ff" + "script_pub_key": "001448856eb8c17951dac58843912376a31fe76b958e" } ], "vtxinwit": [ - "3044022041d4d57109cb06f7743adf5e31ff61ae4d4d8e4b0aa597e866693a4ec0db1e4b022068a38087d86e8473a3601cb134cb4a9cdee4c11ec669e3e4c9f0234ab4f7a9c101", - "02d9ed6b0141de6dd60aa82fcd650f0ea18a84a8c9069b9ff072e09c8174a59ea3" + "304402201138335bbf3256bf1fc670bd9161ee095cd0e8d02163fe68f50b6d4f5f3fe46902203a6e53b1de7ae5b545cbe748eb78af090e2262fccdc3e0523ee571cc09e9617301", + "02d3229b39c8715b21714d9f14d45f549465a5ec79969751d34fb773af56b7b34d" ], "lock_time": 0, - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", - "tx_id": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f" + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", + "tx_id": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92" }, "unpacked_data": { "message_type": "enhanced_send", @@ -929,7 +988,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "memo": null, "asset_info": { "divisible": true, @@ -956,17 +1015,17 @@ "/v2/transactions/": { "result": { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_hash": "533aa13765b9bc05a46027d588d5a5aa368bfe2ab91d51fe1fcb93aa9b7d2836", + "block_time": 1730139139, + "source": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", + "destination": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1 46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -981,17 +1040,17 @@ "/v2/transactions/": { "result": { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", - "block_time": 1730116123, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "block_hash": "533aa13765b9bc05a46027d588d5a5aa368bfe2ab91d51fe1fcb93aa9b7d2836", + "block_time": 1730139139, + "source": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", + "destination": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1 46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1010,12 +1069,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75 }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 673, @@ -1024,14 +1083,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -1042,9 +1101,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 672, @@ -1053,9 +1112,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "status": 0, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "asset_info": { "divisible": true, "asset_longname": null, @@ -1065,24 +1124,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -1092,9 +1151,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 670, @@ -1102,14 +1161,14 @@ "params": { "asset": "XCP", "block_index": 208, - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "destination": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "msg_index": 1, "quantity": 1500000000, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "source": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", "status": "valid", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -1119,9 +1178,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 669, @@ -1134,12 +1193,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75 }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 673, @@ -1148,14 +1207,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -1166,9 +1225,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 672, @@ -1177,9 +1236,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "status": 0, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "asset_info": { "divisible": true, "asset_longname": null, @@ -1189,24 +1248,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -1216,9 +1275,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 670, @@ -1226,14 +1285,14 @@ "params": { "asset": "XCP", "block_index": 208, - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "destination": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "msg_index": 1, "quantity": 1500000000, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "source": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", "status": "valid", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -1243,9 +1302,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 669, @@ -1255,10 +1314,10 @@ "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "destination": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1266,7 +1325,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -1279,10 +1338,10 @@ }, { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "destination": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1290,11 +1349,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -1310,27 +1369,27 @@ { "tx_index": 75, "dispense_index": 0, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "destination": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1345,7 +1404,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -1366,16 +1425,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -1385,9 +1444,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 669, @@ -1397,12 +1456,12 @@ "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -1412,9 +1471,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 666, @@ -1424,24 +1483,24 @@ "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "block_time": 1730139139, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": null, @@ -1453,16 +1512,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -1472,9 +1531,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 669, @@ -1484,12 +1543,12 @@ "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -1499,9 +1558,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 666, @@ -1511,24 +1570,24 @@ "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "block_time": 1730139139, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": null, @@ -1541,7 +1600,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1551,7 +1610,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -1562,7 +1621,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1572,7 +1631,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -1583,7 +1642,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1593,7 +1652,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -1604,7 +1663,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1614,7 +1673,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -1625,7 +1684,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1635,7 +1694,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -1646,7 +1705,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1656,7 +1715,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -1670,17 +1729,17 @@ "result": [ { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", - "block_time": 1730116110, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "39f247e162c2a49b3fc5bb01c5374ad7a6c0e7e4573dc5511953a7a7586c5a8b", + "block_time": 1730139124, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "utxos_info": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1716,17 +1775,17 @@ }, { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "block_index": 206, - "block_hash": "43e679712b4649bc798af14df94c86578f3b408d04178a5c2fc175d41a020122", - "block_time": 1730116106, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "block_hash": "66c82fc9d180c1057e14fd160979e231193160194e5868ccede7270fb1dcf083", + "block_time": 1730139120, + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038088638b12211ad2887d7013cdfa98b822eb7f220a802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380abfde7e500a8fa0b913a29a15b6144de743eac8e804edee264e437d1df26c6d93c307e7ff097166b848048856eb8c17951dac58843912376a31fe76b958e88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257:0", + "utxos_info": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1734,14 +1793,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -1749,7 +1808,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1768,17 +1827,17 @@ }, { "tx_index": 72, - "tx_hash": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "tx_hash": "ad6acaa7ce5c591cc3f7630eaf35dd7ad07861746f4f0dacb964a334a3cc7951", "block_index": 205, - "block_hash": "4a895299665e1f654c5117e9c4b133cbccccd6db23134dca896fa8a620b81d38", - "block_time": 1730116102, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "block_hash": "68212fdfd0bce2152a8a3cf0e64966ac7466cb2f07bb0c26a3a60244c9e71395", + "block_time": 1730139116, + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038088638b12211ad2887d7013cdfa98b822eb7f220a802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ffc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380abfde7e500a8fa0b913a29a15b6144de743eac8e804edee264e437d1df26c6d93c307e7ff097166b848048856eb8c17951dac58843912376a31fe76b958ec8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0:0", + "utxos_info": "ad6acaa7ce5c591cc3f7630eaf35dd7ad07861746f4f0dacb964a334a3cc7951:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1786,14 +1845,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -1801,7 +1860,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1820,17 +1879,17 @@ }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "block_index": 204, - "block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", - "block_time": 1730116099, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "5dc2fe5f12af98d66aeeddf67a1ba33af07b6858039b9750e6c7fe9edc2d7f38", + "block_time": 1730139112, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a5804edee264e437d1df26c6d93c307e7ff097166b848048856eb8c17951dac58843912376a31fe76b958e40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5:0", + "utxos_info": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1838,14 +1897,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -1853,7 +1912,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1872,17 +1931,17 @@ }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb", "block_index": 203, - "block_hash": "37274251a093028e8065cbc9af85901d3961a9e5e04f4e726b13a0506a915652", - "block_time": 1730116095, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "47a1ccf817137291edd203e6184d0835b27cfa48469ac7c1a77ab098d39d113b", + "block_time": 1730139107, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a5804edee264e437d1df26c6d93c307e7ff097166b848048856eb8c17951dac58843912376a31fe76b958e88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354:0", + "utxos_info": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1890,14 +1949,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -1905,7 +1964,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1945,11 +2004,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "status": "open", - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "tx_index": 74, - "block_time": 1730116110, + "block_time": 1730139124, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1973,24 +2032,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730139124 }, { "event_index": 658, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "block_index": 207, - "event": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "event": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "quantity": 1000, "tx_index": 74, "utxo": null, "utxo_address": null, - "block_time": 1730116110, + "block_time": 1730139124, "asset_info": { "divisible": true, "asset_longname": null, @@ -2000,37 +2059,37 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730139124 }, { "event_index": 657, "event": "ORDER_EXPIRATION", "params": { "block_index": 207, - "order_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "block_time": 1730116110 + "order_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "block_time": 1730139124 }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730139124 }, { "event_index": 656, "event": "CREDIT", "params": { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "block_index": 207, "calling_function": "cancel order", - "event": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "event": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730116110, + "block_time": 1730139124, "asset_info": { "divisible": true, "asset_longname": null, @@ -2040,25 +2099,25 @@ }, "quantity_normalized": "0.00005000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730139124 }, { "event_index": 654, "event": "NEW_TRANSACTION", "params": { - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", + "block_hash": "39f247e162c2a49b3fc5bb01c5374ad7a6c0e7e4573dc5511953a7a7586c5a8b", "block_index": 207, - "block_time": 1730116110, + "block_time": 1730139124, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "tx_index": 74, - "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "utxos_info": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -2090,9 +2149,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730139124 } ], "next_cursor": 650, @@ -2101,17 +2160,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "memo": null, "quantity": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "status": "valid", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "tx_index": 76, "asset_info": { "divisible": true, @@ -2122,22 +2181,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "CREDIT", "params": { - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -2147,22 +2206,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "XCP", "block_index": 208, - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -2172,30 +2231,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730116127.587877, + "block_time": 1730139143.3448281, "btc_amount": 0, - "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", + "data": "0200000000000000010000000000002710804edee264e437d1df26c6d93c307e7ff097166b84", "destination": "", "fee": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "tx_index": 76, - "utxos_info": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f:1", + "utxos_info": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "memo": null, "asset_info": { "divisible": true, @@ -2209,7 +2268,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 } ], "next_cursor": null, @@ -2218,7 +2277,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2226,14 +2285,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2241,14 +2300,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2256,14 +2315,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -2278,7 +2337,7 @@ "quantity_normalized": "826.49941000" }, { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2286,7 +2345,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -2299,7 +2358,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -2321,16 +2380,16 @@ "result": [ { "block_index": 207, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "event": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116110, + "block_time": 1730139124, "asset_info": { "divisible": true, "asset_longname": null, @@ -2342,16 +2401,16 @@ }, { "block_index": 206, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "event": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730139120, "asset_info": { "divisible": true, "asset_longname": null, @@ -2363,16 +2422,16 @@ }, { "block_index": 205, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "event": "ad6acaa7ce5c591cc3f7630eaf35dd7ad07861746f4f0dacb964a334a3cc7951", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116102, + "block_time": 1730139116, "asset_info": { "divisible": true, "asset_longname": null, @@ -2384,20 +2443,20 @@ }, { "block_index": 201, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "event": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5", "tx_index": 68, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116077, + "block_time": 1730139090, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -2405,16 +2464,16 @@ }, { "block_index": 192, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "event": "1ef850048fccd57ed5563510f4f5dac7cfad13dc69f2ada5428f5fe52c58568a", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116037, + "block_time": 1730139050, "asset_info": { "divisible": true, "asset_longname": null, @@ -2432,16 +2491,16 @@ "result": [ { "block_index": 207, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "event": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116110, + "block_time": 1730139124, "asset_info": { "divisible": true, "asset_longname": null, @@ -2453,16 +2512,16 @@ }, { "block_index": 204, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "event": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730139112, "asset_info": { "divisible": true, "asset_longname": null, @@ -2474,20 +2533,20 @@ }, { "block_index": 204, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "event": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730139112, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -2495,16 +2554,16 @@ }, { "block_index": 203, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "event": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730139107, "asset_info": { "divisible": true, "asset_longname": null, @@ -2516,20 +2575,20 @@ }, { "block_index": 203, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "event": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730139107, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -2548,9 +2607,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "261b5785cc07a1f7000bee3be198f5d90393f35ed50ad3c8656eafadf5e468dc", + "tx_hash": "249d7545e6d4ac34989f93c91683e943579bbff7ce734459d67bb521e134c5ab", "block_index": 137, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2558,7 +2617,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730115811, + "block_time": 1730138818, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2569,14 +2628,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "4e51590e06d15e411d148775427a365b6d8b79fe62e2bddbc21caf33d13f1998", + "tx_hash": "7e77c481689bb721aff9b32fa380ec127ade43e229c51bf7684b29c233428bde", "block_index": 112, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730115719, + "block_time": 1730138723, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2588,10 +2647,10 @@ "result": [ { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2599,7 +2658,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730139112, "asset_info": { "divisible": true, "asset_longname": null, @@ -2612,10 +2671,10 @@ }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2623,11 +2682,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730139112, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -2636,10 +2695,10 @@ }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2647,11 +2706,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730139112, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -2660,10 +2719,10 @@ }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb", "block_index": 203, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2671,7 +2730,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730139107, "asset_info": { "divisible": true, "asset_longname": null, @@ -2684,10 +2743,10 @@ }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb", "block_index": 203, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2695,11 +2754,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730139107, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -2714,10 +2773,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "16c2e31138126762962006973bfedc1ced24b4fc3d41616f4ea36346add19de5", + "tx_hash": "f4b6a4879fbd453a637c6317d28e351780e0bdf59819076f1c14710cf8a1e649", "block_index": 151, - "source": "ebdd9911ac289e537ed7c712b293decfb0d690c1b2390873d53383b30979e9c8:0", - "destination": "bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz", + "source": "a7551034f9a746afa2c8901b415aea2b7f64f7d6b6a15a1f71c78c6a66c99a84:0", + "destination": "bcrt1qmpe9apwn620rg688seeaa0u2u4mlmu5w6f3x4x", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2725,11 +2784,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730115873, + "block_time": 1730138872, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -2744,10 +2803,10 @@ "result": [ { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2755,11 +2814,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730139112, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -2768,10 +2827,10 @@ }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2779,11 +2838,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730139112, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -2792,10 +2851,10 @@ }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb", "block_index": 203, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2803,11 +2862,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730139107, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -2816,10 +2875,10 @@ }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb", "block_index": 203, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2827,11 +2886,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730139107, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -2840,10 +2899,10 @@ }, { "tx_index": 69, - "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "tx_hash": "50eccc0ccb786046b629ea7cae6bbe7cd918c75a76eef840e931e44865e2d2e6", "block_index": 202, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2851,11 +2910,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116081, + "block_time": 1730139103, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -2875,9 +2934,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2886,7 +2945,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2896,7 +2955,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -2912,9 +2971,9 @@ }, { "tx_index": 62, - "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "tx_hash": "d9ebbde4d57e28e43829a23e320e99bd09a0cc05ea6b0c59351e0aee002c241f", "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2923,7 +2982,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2933,11 +2992,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730116055, + "block_time": 1730139069, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -2954,9 +3013,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2965,7 +3024,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2975,7 +3034,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -2995,19 +3054,19 @@ { "tx_index": 63, "dispense_index": 0, - "tx_hash": "6afc6887d0234625af2de1aad7aa4588fb3aa054b9f1df4e9de8cd43df5794ae", + "tx_hash": "e9caa143d2b32587a41f3183a44bf80222940ae76a0971fb1533667751cf7d5a", "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "dispenser_tx_hash": "d9ebbde4d57e28e43829a23e320e99bd09a0cc05ea6b0c59351e0aee002c241f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3015,7 +3074,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3030,11 +3089,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730116055, + "block_time": 1730139069, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -3044,19 +3103,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "7a4c44d71545a4556d59db3caa34caf7de69c38085266b8f5ea4ce1723d55aa8", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3064,7 +3123,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3079,7 +3138,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -3093,19 +3152,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "901a08fbae97fe2160697f1a26dd121e99535032168302051e6f3200df15a665", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3113,7 +3172,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3128,7 +3187,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730138829, "asset_info": { "divisible": true, "asset_longname": null, @@ -3148,19 +3207,19 @@ { "tx_index": 63, "dispense_index": 0, - "tx_hash": "6afc6887d0234625af2de1aad7aa4588fb3aa054b9f1df4e9de8cd43df5794ae", + "tx_hash": "e9caa143d2b32587a41f3183a44bf80222940ae76a0971fb1533667751cf7d5a", "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "dispenser_tx_hash": "d9ebbde4d57e28e43829a23e320e99bd09a0cc05ea6b0c59351e0aee002c241f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3168,7 +3227,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3183,11 +3242,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730116055, + "block_time": 1730139069, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -3197,19 +3256,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "7a4c44d71545a4556d59db3caa34caf7de69c38085266b8f5ea4ce1723d55aa8", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3217,7 +3276,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3232,7 +3291,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -3246,19 +3305,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "901a08fbae97fe2160697f1a26dd121e99535032168302051e6f3200df15a665", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3266,7 +3325,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3281,7 +3340,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730138829, "asset_info": { "divisible": true, "asset_longname": null, @@ -3301,19 +3360,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "7a4c44d71545a4556d59db3caa34caf7de69c38085266b8f5ea4ce1723d55aa8", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3321,7 +3380,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3336,7 +3395,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -3350,19 +3409,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "901a08fbae97fe2160697f1a26dd121e99535032168302051e6f3200df15a665", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3370,7 +3429,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3385,7 +3444,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730138829, "asset_info": { "divisible": true, "asset_longname": null, @@ -3405,19 +3464,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "7a4c44d71545a4556d59db3caa34caf7de69c38085266b8f5ea4ce1723d55aa8", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3425,7 +3484,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3440,7 +3499,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -3454,19 +3513,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "901a08fbae97fe2160697f1a26dd121e99535032168302051e6f3200df15a665", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3474,7 +3533,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3489,7 +3548,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730138829, "asset_info": { "divisible": true, "asset_longname": null, @@ -3508,16 +3567,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "71e2343f1a4a660b6eb55c68b383b81198dd1d707df3675c0a345046cc94c411", "block_index": 194, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730116045, + "block_time": 1730139058, "fee_paid_normalized": "0.00600000" } ], @@ -3528,14 +3587,14 @@ "result": [ { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -3550,20 +3609,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730116077, + "block_time": 1730139090, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "92d810aacd89aaed4756618250d3df3739516fda551847d01a705a57cf250e1c", + "tx_hash": "2cf2f6adb24fe9a7be38a9d3f3d1031e31d13d9c9802e1bb5d7666d98e13c3e9", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -3578,20 +3637,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730115921, + "block_time": 1730138943, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "652fa348e445bedc79af7c8da7e9edd116fc6586bb2896968234ade2b0de91c4", + "tx_hash": "57cdd83d521d29f8483683c177b56cd0dd6910de4cfd2709dcabad68c77f1032", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -3606,20 +3665,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730115918, + "block_time": 1730138929, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "a9640b7ef998e1287a94371074ed8dd399613638ecb6a9c1a406fd5ce29727e0", + "tx_hash": "75572517365df9448cdf1643368ee288e155a812cdf80dd46fdf74abafa5cf95", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -3634,20 +3693,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730115914, + "block_time": 1730138915, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "3b8ccc6e7a34c3d602643f13d9ce884ecd2831847f6eab4961146b4a71491ad1", + "tx_hash": "aa8f7edb7468ca5f902df226f2e332d812401e0d2f9001dc4bb9369ee7945de7", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -3662,7 +3721,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730115900, + "block_time": 1730138911, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3676,8 +3735,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 100000000000, @@ -3685,16 +3744,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730116077, - "last_issuance_block_time": 1730116077, + "first_issuance_block_time": 1730139090, + "last_issuance_block_time": 1730139090, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 10000000000, @@ -3702,16 +3761,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730115900, - "last_issuance_block_time": 1730115918, + "first_issuance_block_time": 1730138911, + "last_issuance_block_time": 1730138929, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 100000000000, @@ -3719,16 +3778,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730115851, - "last_issuance_block_time": 1730115851, + "first_issuance_block_time": 1730138861, + "last_issuance_block_time": 1730138861, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 40, @@ -3736,16 +3795,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730115804, - "last_issuance_block_time": 1730115808, + "first_issuance_block_time": 1730138810, + "last_issuance_block_time": 1730138813, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 19, @@ -3753,8 +3812,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730115789, - "last_issuance_block_time": 1730115800, + "first_issuance_block_time": 1730138794, + "last_issuance_block_time": 1730138806, "supply_normalized": "0.00000019" } ], @@ -3767,8 +3826,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 100000000000, @@ -3776,16 +3835,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730116077, - "last_issuance_block_time": 1730116077, + "first_issuance_block_time": 1730139090, + "last_issuance_block_time": 1730139090, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 10000000000, @@ -3793,16 +3852,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730115900, - "last_issuance_block_time": 1730115918, + "first_issuance_block_time": 1730138911, + "last_issuance_block_time": 1730138929, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 100000000000, @@ -3810,16 +3869,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730115851, - "last_issuance_block_time": 1730115851, + "first_issuance_block_time": 1730138861, + "last_issuance_block_time": 1730138861, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 40, @@ -3827,16 +3886,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730115804, - "last_issuance_block_time": 1730115808, + "first_issuance_block_time": 1730138810, + "last_issuance_block_time": 1730138813, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 19, @@ -3844,8 +3903,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730115789, - "last_issuance_block_time": 1730115800, + "first_issuance_block_time": 1730138794, + "last_issuance_block_time": 1730138806, "supply_normalized": "0.00000019" } ], @@ -3858,8 +3917,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 100000000000, @@ -3867,16 +3926,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730116077, - "last_issuance_block_time": 1730116077, + "first_issuance_block_time": 1730139090, + "last_issuance_block_time": 1730139090, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 10000000000, @@ -3884,16 +3943,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730115900, - "last_issuance_block_time": 1730115918, + "first_issuance_block_time": 1730138911, + "last_issuance_block_time": 1730138929, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 100000000000, @@ -3901,16 +3960,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730115851, - "last_issuance_block_time": 1730115851, + "first_issuance_block_time": 1730138861, + "last_issuance_block_time": 1730138861, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 40, @@ -3918,16 +3977,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730115804, - "last_issuance_block_time": 1730115808, + "first_issuance_block_time": 1730138810, + "last_issuance_block_time": 1730138813, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 19, @@ -3935,8 +3994,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730115789, - "last_issuance_block_time": 1730115800, + "first_issuance_block_time": 1730138794, + "last_issuance_block_time": 1730138806, "supply_normalized": "0.00000019" } ], @@ -3947,17 +4006,17 @@ "result": [ { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb", - "block_time": 1730116110, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "39f247e162c2a49b3fc5bb01c5374ad7a6c0e7e4573dc5511953a7a7586c5a8b", + "block_time": 1730139124, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "utxos_info": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3993,17 +4052,17 @@ }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "block_index": 204, - "block_hash": "53f4f21256b93cc0d957b54a4b2e9e33ed256a92b8af986380021a6cbddfb765", - "block_time": 1730116099, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "5dc2fe5f12af98d66aeeddf67a1ba33af07b6858039b9750e6c7fe9edc2d7f38", + "block_time": 1730139112, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a5804edee264e437d1df26c6d93c307e7ff097166b848048856eb8c17951dac58843912376a31fe76b958e40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5:0", + "utxos_info": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4011,14 +4070,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -4026,7 +4085,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4045,17 +4104,17 @@ }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb", "block_index": 203, - "block_hash": "37274251a093028e8065cbc9af85901d3961a9e5e04f4e726b13a0506a915652", - "block_time": 1730116095, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "47a1ccf817137291edd203e6184d0835b27cfa48469ac7c1a77ab098d39d113b", + "block_time": 1730139107, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a500a0204b6c11d32ab0bd14b78f9db630019898802ee7671497fd3d7b5d9e23d3c7853cdb0699c484802ae165e7b04a97caa52d91a46d89891d704370ff88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a5804edee264e437d1df26c6d93c307e7ff097166b848048856eb8c17951dac58843912376a31fe76b958e88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354:0", + "utxos_info": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4063,14 +4122,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -4078,7 +4137,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4097,17 +4156,17 @@ }, { "tx_index": 69, - "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "tx_hash": "50eccc0ccb786046b629ea7cae6bbe7cd918c75a76eef840e931e44865e2d2e6", "block_index": 202, - "block_hash": "13a7856636590644ca049ed5074ccb96a6b9694cf0a3187ec4d3b50111b76353", - "block_time": 1730116081, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "792b9905de3e7d2dce2f4bd6005c6a47209f579e2bd92a800b5e2efa9b1a467c", + "block_time": 1730139103, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880a500a0204b6c11d32ab0bd14b78f9db630019898", + "data": "02000000178d82231300000000000003e880ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a5", "supported": true, - "utxos_info": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02:1", + "utxos_info": "50eccc0ccb786046b629ea7cae6bbe7cd918c75a76eef840e931e44865e2d2e6:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4115,12 +4174,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -4131,17 +4190,17 @@ }, { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5", "block_index": 201, - "block_hash": "31229cfb58723faf819c8772e47a52c5cc4c531fdef4370ba12b94679b292486", - "block_time": 1730116077, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "block_hash": "694aa66fa4c17d2199fcbf7cb6959804aa1c8853c87be1b7755746868c1e81f9", + "block_time": 1730139090, + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc:1", + "utxos_info": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4172,20 +4231,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "faecdff4961a9fd6da312f456cc6b09157b6d1d851f27819c1c8588c1dd9f23f", "block_index": 154, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730115885, + "block_time": 1730138884, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -4207,9 +4266,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx_hash": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c", "block_index": 184, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4224,7 +4283,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730115936, + "block_time": 1730138958, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4250,9 +4309,9 @@ }, { "tx_index": 51, - "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4267,7 +4326,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730116110, + "block_time": 1730139124, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4293,9 +4352,9 @@ }, { "tx_index": 57, - "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "tx_hash": "1ef850048fccd57ed5563510f4f5dac7cfad13dc69f2ada5428f5fe52c58568a", "block_index": 192, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4310,7 +4369,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730116037, + "block_time": 1730139050, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4336,9 +4395,9 @@ }, { "tx_index": 59, - "tx_hash": "9d6f69deab8decbb02e247c2a2e19611f0931fb91c9bd48d5dad2bfae5328ffe", + "tx_hash": "991fd8e540a9a1eb3bfad5f52ba033e88c6377c22da6d62d3f2e93ef312acf48", "block_index": 193, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4353,7 +4412,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116041, + "block_time": 1730139054, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4379,9 +4438,9 @@ }, { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4396,7 +4455,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116110, + "block_time": 1730139124, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4427,10 +4486,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_hash": "42a285d407b0482a81904545dacac2ecf78dd87157cdc4ff5c37086b078ee059", "tx_index": 42, "block_index": 155, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4455,7 +4514,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730115889, + "block_time": 1730138899, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4464,10 +4523,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "tx_hash": "29b7175f8cb8f4c4676752ff62c91262d377175a6994145c8fb27e832eadcd98", "tx_index": 22, "block_index": 135, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4492,7 +4551,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730115804, + "block_time": 1730138810, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4504,10 +4563,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "tx_hash": "022f35c10f14c2ea46ee28369585bf5e4f9d527b2f0f551680c699bba7b5067f", "tx_index": 18, "block_index": 131, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4532,7 +4591,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730115789, + "block_time": 1730138794, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4544,10 +4603,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", + "tx_hash": "484463111a0414fb5c61a2480486d42e52aa4fcb1316ab426dcf72d369af3cc8", "tx_index": 14, "block_index": 130, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4572,7 +4631,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730115785, + "block_time": 1730138790, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4584,10 +4643,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "tx_hash": "79aace64fffe0222b602a1c6209eda6252182a30bd6aad873f434c1d3e52fdcb", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4612,7 +4671,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730115766, + "block_time": 1730138770, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4630,22 +4689,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "cb3f7778d2be0cdafe509a5da15d6a13ccbd7acb72821744a6bd3fc15571b4bd", "tx_index": 23, "block_index": 136, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "29b7175f8cb8f4c4676752ff62c91262d377175a6994145c8fb27e832eadcd98", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115808, + "block_time": 1730138813, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -4654,22 +4713,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "5da24fdc5b0f42414404df0110e4a3cd79789b5706be7b301d976f9eef623346", + "tx_hash": "8f63058af67e1d6bfbca9dcdc44be48390cee42fd957142c3dbb6349a9249027", "tx_index": 21, "block_index": 134, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "022f35c10f14c2ea46ee28369585bf5e4f9d527b2f0f551680c699bba7b5067f", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115800, + "block_time": 1730138806, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -4678,22 +4737,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "98840296af69b519b38aaa9663baa393849683e67da07ce11e4aa21df9259e2f", + "tx_hash": "28655ebccabe82e70af2497d724e2b88df44b5ef7acda995ffa12e8e70bbe855", "tx_index": 20, "block_index": 133, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "022f35c10f14c2ea46ee28369585bf5e4f9d527b2f0f551680c699bba7b5067f", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115797, + "block_time": 1730138801, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -4702,22 +4761,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "e26754ee3f011a743d3bd45d712d1fe4056c4b4f657f391b5d06c33191fe01d3", + "tx_hash": "e189d65f18255b300aa1a11aa1190533fc1611876bfe6e77c7cee8d842affd09", "tx_index": 19, "block_index": 132, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "022f35c10f14c2ea46ee28369585bf5e4f9d527b2f0f551680c699bba7b5067f", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115793, + "block_time": 1730138797, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -4726,22 +4785,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "def4759ea9104304f15b30965786c66cdc8cfb7a6029cdc08a336d6306c065ab", + "tx_hash": "db50ebd0742a64f1cb1fffc5e6c6cb8edb25dbdae92cf770994544c03a86b3f2", "tx_index": 15, "block_index": 127, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "484463111a0414fb5c61a2480486d42e52aa4fcb1316ab426dcf72d369af3cc8", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115774, + "block_time": 1730138778, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -4750,22 +4809,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_hash": "af7c1e95741f86b44041a459c1c42d2215f7da4faf59a0125361611a60d87478", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "79aace64fffe0222b602a1c6209eda6252182a30bd6aad873f434c1d3e52fdcb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115757, + "block_time": 1730138763, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -4780,22 +4839,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_hash": "af7c1e95741f86b44041a459c1c42d2215f7da4faf59a0125361611a60d87478", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "79aace64fffe0222b602a1c6209eda6252182a30bd6aad873f434c1d3e52fdcb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115757, + "block_time": 1730138763, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -4807,13 +4866,47 @@ "next_cursor": null, "result_count": 1 }, + "/v2/utxos//balances": { + "result": [ + { + "asset": "XCP", + "quantity": 1500000000, + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "15.00000000" + }, + { + "asset": "MYASSETA", + "quantity": 1500000000, + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "asset_info": { + "asset_longname": null, + "description": "My super asset A", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "divisible": true, + "locked": false + }, + "quantity_normalized": "15.00000000" + } + ], + "next_cursor": null, + "result_count": 2 + }, "/v2/addresses/
/compose/bet": { "error": "['feed doesn\u2019t exist']" }, "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4825,7 +4918,7 @@ "btc_out": 0, "btc_change": 4999985142, "btc_fee": 14858, - "rawtransaction": "02000000000101d3e144ab2332715d931607f1ecb24833c4b9a45585fe12f43332f7c73a129bf60000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff0200000000000000002b6a291d58000c120f53e521b5b05fb0e87895087ccf3efe597674c5aa3f7ccf38911c75cc5b8d24700ddac0f6b7052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "020000000001018ddc94d536ce56797b4d425229261cddb0afed726b125835b540dc8f942582fc00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff0200000000000000002b6a299995fbbf518497b86c3e2426ef0e7c7ee317081e80084289e87197e5f028d6cb70420e7b444f059fcdf6b7052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4843,23 +4936,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614" + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "order_match_id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363" }, "name": "btcpay", - "data": "434e5452505254590ba70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b50903810560268783a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "data": "434e5452505254590b6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978090, "btc_fee": 18910, - "rawtransaction": "02000000000101bd9316eab33fabb206193f04c3c50ab13a8abd6216de19a6c0961f00d3d615420000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff03b80b00000000000016001488638b12211ad2887d7013cdfa98b822eb7f220a00000000000000004b6a49f046fc5a1959206e926f59e82227fd923cabe7e968af1baad5abb587a412e4c8df215b2a2d9a5b3503ce52fdb5848339aa656b6f74c228373ce1809d813ad9cf4c41d5f20f2739395c6a9c052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "020000000001016364e356e73b6023dd135a1582267390cf6ac995f158ef911a8907cc876c465e00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff03b80b000000000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e00000000000000004b6a49f5ddaa766301470fecf76497eb38c98d0920c016756cf2ed3adff5a4d6fe8014619a695dc6e21ee9d685b29766b545396e2f870736eb8d9fa88260534eada3130d1030ccba009df0776a9c052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx0_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "tx1_hash": "8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", + "order_match_id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "status": "valid" } } @@ -4868,7 +4961,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "quantity": 1000, "overburn": false }, @@ -4878,27 +4971,27 @@ "btc_out": 1000, "btc_change": 4999985186, "btc_fee": 13814, - "rawtransaction": "02000000000101abf65b20ebfd1237da0f36f872c79db358b4cfbf1297b2ed7848fce5a7d985270000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac22b8052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000" + "rawtransaction": "02000000000101589753c921ad110f44e7131f779c39ec7d20244f8e94250e0e13dc9c826a313f00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac22b8052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "offer_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8" + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "offer_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199" }, "name": "cancel", - "data": "434e545250525459465debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "data": "434e5452505254594699faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985142, "btc_fee": 14858, - "rawtransaction": "02000000000101ea75efdc042b5696d84822dc36cd87c7fd9a0b28512b49461245667b61127bfa0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff0200000000000000002b6a29a3e663a2f9bd00bb0c85b9c374325d5573e86694ddb726062f8c530213552021c46ead41917b6938b4f6b7052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101a819703e25717aea0ef3f6478c6963d70172ec8e72b758978bc2c4cad6f2444000000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff0200000000000000002b6a29ca64cd2577374eaaeaddb7976e7e21e9c749aa0a24f4c229b374fb951e4baee8d77b3f334180688963f6b7052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "offer_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "status": "valid" } } @@ -4907,7 +5000,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4926,7 +5019,7 @@ "btc_out": 0, "btc_change": 4999985695, "btc_fee": 14305, - "rawtransaction": "02000000000101a452400ddde4da92b3635c69a88b5cd73e6f5351b1035de6c8acb68e8350e3540000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000226a204361a4695fd456d2d053a108447b7a62d60471b989b415d7824044331a550ada1fba052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101c06a48678610b8dd7be639905a431e8375b210671f1b0642ad7908fd0abf1fb200000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff020000000000000000226a2009d4f246f293b90dcce887b938a07bc73994ab1e535f62cdaf5fdd6ff4ea27d31fba052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4942,7 +5035,7 @@ "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -4966,7 +5059,7 @@ "btc_out": 0, "btc_change": 4949919581, "btc_fee": 14919, - "rawtransaction": "020000000001016182673802383c3dfbeed7dd1749f3b498f8e584fcfd406a5aa17b002ee7904b01000000160014fbcc5565cd7f2a35258ef40d6637506f0ce99fdbffffffff0200000000000000002c6a2a8c143ec5258db11ef95b2578f1c394ce761046911caf5c5472be4f258d5a148a45eb9d2e0476dbc475545dc7092701000000160014fbcc5565cd7f2a35258ef40d6637506f0ce99fdb02000000000000", + "rawtransaction": "020000000001015b7e206464aa6ae40f435c024c354d3cb43c061ff7708f3a22e079bde4e6254601000000160014047390184b11332c15c0ac8a95373e56912957baffffffff0200000000000000002c6a2a18032c5760505e83f0851e9cc1f4de855593baae8a3da44426d7760f82df2378b6324457e39412b030ca5dc7092701000000160014047390184b11332c15c0ac8a95373e56912957ba02000000000000", "unpacked_data": { "message_type": "dispenser", "message_type_id": 12, @@ -4988,14 +5081,14 @@ "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -5014,7 +5107,7 @@ "btc_out": 0, "btc_change": 4999985634, "btc_fee": 14366, - "rawtransaction": "02000000000101d735a5a97da67446f40bb375c7bacff7ae44897f7b357a5bcef9d70280dfc6110000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000236a21a03fcd9fc46bcb4f3bf7ff58bc4a0eb125a43d3a551f7e1ceb32b36b7143d5bd87e2b9052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101a35cc996822bf44e306cbf1d3d86d9422a24bf91467c0ea283ca3ac9367b0cde00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff020000000000000000236a217a6db34f1bf84a86b726b1d5b0edc79229ec2ff801d9b0f991c13fcefe39183171e2b9052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5031,10 +5124,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "transfer_destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "lock": false, "reset": false, @@ -5047,7 +5140,7 @@ "btc_out": 546, "btc_change": 4999983000, "btc_fee": 16454, - "rawtransaction": "020000000001013eb5a26d5fe5337ccfca78b68a43f9933a7ad20e3127554d960f6ff708c487d60000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff03220200000000000016001488638b12211ad2887d7013cdfa98b822eb7f220a0000000000000000236a21d1ca33cf4433fd66e117d12625616dc906928c7356b7202b8c38c6ece5cbbbf61a98af052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "0200000000010181d8863c0af411e0a5a753a43cd820fd86e02913d028bd72b59b0deea7760f0e00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff032202000000000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e0000000000000000236a2111dd7e2d82de8a261a0e87ad0a0669b70454b481c8f3dfbf94f039d4074ca3179898af052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5072,16 +5165,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", 1 ], [ "MPMASSET", - "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", 2 ] ], @@ -5089,26 +5182,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e5452505254590300028088638b12211ad2887d7013cdfa98b822eb7f220a80a500a0204b6c11d32ab0bd14b78f9db63001989840000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280abfde7e500a8fa0b913a29a15b6144de743eac8e80ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a540000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999942989, "btc_fee": 55011, - "rawtransaction": "02000000000104c60cba2e8009b89a27f98afd970336d060fb80cc1169f8a9f26dd7ac5b8a7dfd0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff5cb37ed728a1783f00f380c510ff2108bf6796927d3302395641738997881b710000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff9cc56b3a54bde5e0b7fb83800bc84036f16ee99aeac4491de704b7f8f794c1a10000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff0f4711f98d37387476a466b7bf6964c28d870c7e940e1b02fb5795820960299e0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff03e8030000000000006951210338a7e3de6a76681a888a478f9c669e7a9f638cd384e2edf836ebd2f34158440e2103693a6379fc9675f11c9f519d3a54269240404cbe3f914fe22bb420c10df54ded2103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553aee8030000000000006951210327a7e3de6a76681a8859478d1ceefdf18d6696010c9f9debfb154a4b63b33b5221034b30e2dcfc3655ba708e82b78ae93225cfddfa8e3e09d7a22bb425226d7d89f12103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553ae4de916a80400000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000002000002000002000000000000", + "rawtransaction": "02000000000104ba7fc5eab314c269b6920a7f0f9dc0a2377918366190584ae1640a603dfd30cd00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff226689499b24979081d2e2c6c38067f3ef0c664817ba67f42a9705572f53d54600000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff7d86a9111edb4441f863554f63401fb2c83317225f699e5c91d5d03fb9f4487b00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffffa1936db8387355c527a872442fdcc6d64e48e396929dbc1e75a97e331125c3a300000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff03e80300000000000069512103861633de8ddfc5cac8246e766f618087959487379a9c2dd78775e63e3c0ae3ea2103df0d8a7f299c8fd5cd980b6ed62884d3230a4dab49de53364e3353fe5184e0232103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d553aee80300000000000069512102991633de8ddfc5cac8f76e74efca7d6070b02fcd910d17fe262a877ae27edd36210373830b93904fa68310a47468d6fe5df6dc4160a013d7f6764e33561d310c24a02103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d553ae4de916a804000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5120,7 +5213,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5137,7 +5230,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -5151,7 +5244,7 @@ "btc_out": 0, "btc_change": 4999984528, "btc_fee": 15472, - "rawtransaction": "02000000000101cf575d97277fbc0b3f884b49e7c0b8287ba8e0b4e5f4dd7e2d6e426502f4452c0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000356a334de8b15032fed03ecbb040c19ca15f53586192377670b513f6408556e6dd4e76a713c1550120fe9b40cb4140fa22d0446a03d390b5052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101207d1e4708c713e102babf2c02f5f44f96768f6a03cecae5d21b3d1c5aa6873a00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff020000000000000000356a3358ec917f740a4c001b8b89034efd474cc0896fe062ba4e7bdddeaec358992aad46f6d570b894aa6db12e869106c785e5c014f390b5052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5173,8 +5266,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5190,19 +5283,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880a500a0204b6c11d32ab0bd14b78f9db630019898", + "data": "434e54525052545902000000000000000100000000000003e880ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a5", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999984835, "btc_fee": 15165, - "rawtransaction": "020000000001019ed53bd0e7ff6981feb1b27c9556b9db3413d2a67ea7b8f2616a14fa73ed02d90000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000306a2ebe40c06091cfd95dd61d68e73ae5e96d8e96410698a8db380780e7d7268fe30fd5756bc9e8c2e4f3649989e08364c3b6052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101ecba48fcd192e9b30e57b57c0124310335e45d1909b4b2dad06d96a20762d37200000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff020000000000000000306a2ebdc028eab083950ea6156b41513d79731fd0074ab5e476bf863ddade543cdc8bdf1c8c99a20362b5b1ec5918e072c3b6052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "memo": null, "quantity_normalized": "0.00001000" } @@ -5212,23 +5305,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480a500a0204b6c11d32ab0bd14b78f9db63001989807ffff", + "data": "434e5452505254590480ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a507ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985634, "btc_fee": 14366, - "rawtransaction": "02000000000101c7c9854253dc41c3edd654589b82ee42a8a8d6a0c5a578062b89c4b876f2e14d0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000236a219323e5b3f1b8081e81abc14abc27d4b631b6398c37296f72874455fe3f7372918ae2b9052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "020000000001016e796d5d7414f8862897755f1fdb217bd41605fcb866c96140a06882689695c400000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff020000000000000000236a2137b2b36162239f389353c13bb3f48116099dc8268b6cedd04086238782d3b4a48ce2b9052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "flags": 7, "memo": "ffff" } @@ -5238,8 +5331,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "quantity": 1000 }, "name": "dispense", @@ -5248,7 +5341,7 @@ "btc_out": 1000, "btc_change": 4949811958, "btc_fee": 15042, - "rawtransaction": "0200000000010157826d7417826b89717d2b03e0b6b7151d49cb2661b13212aa8064fe0194a77a03000000160014a500a0204b6c11d32ab0bd14b78f9db630019898ffffffff03e8030000000000001600142ae165e7b04a97caa52d91a46d89891d704370ff00000000000000000c6a0a24ebcd38485c9b2a0013f622082701000000160014a500a0204b6c11d32ab0bd14b78f9db63001989802000000000000", + "rawtransaction": "02000000000101002ccd235ad6557f918186699c5ddb4e53861554f72f81d8c4f2e6f466381d0903000000160014ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a5ffffffff03e80300000000000016001448856eb8c17951dac58843912376a31fe76b958e00000000000000000c6a0abdbc6badc230da160c67f622082701000000160014ecb9d32956dd3c7f0600d6d925ff4b2d0b5a09a502000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5261,7 +5354,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5292,7 +5385,7 @@ "btc_out": 0, "btc_change": 4999984774, "btc_fee": 15226, - "rawtransaction": "02000000000101c79e70d7c5ad9665ae957326d1dc832f162bc8f91fc08508a7aefd8decaffd230000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000316a2fdfa88a71933c8839247123e96b0a8bdb6b9d82d36ae6ade916ef886e41d9c0ec79824a742e64b47c3d995a7267e06986b6052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101b5188e45f1ae9cd391bdb35ac04451962dcc993a12c033800d122d7e5be9dcba00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff020000000000000000316a2f7884c997683f479e3d5d2ccae25886247602378139707a145476560a7880b682c084e7fa8e8b6ea9a3c45f4b18f86d86b6052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5327,13 +5420,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -5345,7 +5438,7 @@ "btc_out": 0, "btc_change": 4999986432, "btc_fee": 13568, - "rawtransaction": "020000000001017c64134589fec8915924dac30e82978fbd8537ab6caac5007618953859f6d0be0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff020000000000000000166a14be1d5b0358bbdd865615c155e83dfbe0f763564000bd052a0100000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000000000000", + "rawtransaction": "02000000000101cdd0251f520dd807594a209002ab86be2d973c94bb461b9e15350f1e512b5e1000000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff020000000000000000166a1450858bd6db174508d9e0fe7b09455604ec8a697f00bd052a01000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5360,8 +5453,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8:1", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5:3", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5374,12 +5467,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964626372743171337033636b79337072746667736c74737a30786c347839637974346837677332706674647a727c356465626162326539366432356635663532613662653066626366363533613038623338333239386236663135336332306237356164653432626135626261383a317c5843507c31303030", + "data": "434e5452505254596462637274317134303737306567713472617168796636397873346b6332796d6536726174797771796d7a32637c353734636462386331306139353935353737363630306166373365373539663432653861386166613465643738653665343262356661303132393037656563353a337c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999914790, "btc_fee": 82210, - "rawtransaction": "02000000000106ccc2aca722ded998449d59d7ed65df1ffc201fca9873209432c035e327dbbf980000000016001488638b12211ad2887d7013cdfa98b822eb7f220afffffffff14198fceb8a1347a752edee8a1477d3779c0bd7b03fc4bed4512f0223b17ee50000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff8c2cefa9f81e31d2f5260a72f968a6a38923fad3cdfd2ce15b00e722f5ea9d1a0000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffffbee94a0365aaaba05f7f1e7cc8da517c430b3df96dc44a2e5148f46d0fc8c3920000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff1816fcbb08b784d42ce93b687fdc9248c0bb2c6319f18521b506ad7d4a98fd480000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff052b2b309bd984a5d88ce3c9f0e82c5513cfb0117d7fba088957e06d5136eb460000000016001488638b12211ad2887d7013cdfa98b822eb7f220affffffff04e8030000000000006951210374b391adbe520df76abe10c17a35f73315c1bd9be2f07d7d6752ca726570ec6121037bc277b82f1a939ab105b243286840d4e72d3a04eccd75004f164e2b8767328d2103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553aee8030000000000006951210274b391adbe520df76abf4b946c73f32413d7bbcae8bf2c682540ce76702aad9e21033bd977f8211dd390e045fe1576391692e63e6e40ea80321d1e171f7b846435a12103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553aee803000000000000695121035eb391adbe520df76ab810c3307bf73e7ef2de84b8b97e3d1526ac15161c9826210208b847c0432eeba3d27cc677405f27a7d55d5c7088b7077c7a722b49e60500952103998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f553ae265f22fc0600000016001488638b12211ad2887d7013cdfa98b822eb7f220a02000002000002000002000002000002000000000000", + "rawtransaction": "020000000001067fac80ee82af1a1ba3a73681720de8984b928c0d08995727e748c484c5d3995c00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff7a0df51b968b07c8b8882cb5f692d21b399d851b1044be2e97309d3f757a3b0f00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff9bcc221b329d52144d00572a8792a2e04a901d20986f7e60d6be77f41b90f7cb00000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff2e6ca2f64b24f32622c777740e335828e90b8444f779abb944cb2693c26616d400000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffffeffa5da7db9dba0eeb91e3adc80e58f11573f51abe57869dc8736514b8925f9000000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffffae8f20452edbb69b1c8f9d14924b56dd0750b8415d670b07dc08bb89550d891600000000160014abfde7e500a8fa0b913a29a15b6144de743eac8effffffff04e80300000000000069512103afdb68b97fa24a91385de1c41e5ca7c3d5200564e2a6cd6d74178134f0535fff21030c17dc584bb7376eb6d0ba388eb73fb11a3cdebd3c321d9dae28c114af01983f2103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d553aee80300000000000069512103afdb68b97fa24a91385ab2970d11a38bd4250564e4f59a2c2103d776fd1d0cdb2102034890191ae43564aedbbe3a99b27cf0087bc2e474624b87fa2fc445f25397c92103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d553aee8030000000000006951210285db68b97fa24a91385ce6c45912a5ceb953622fe3f39a2c4065e045982a39fb21023a2ea42b7fdc545ccfbddf0efcd64bc86d4da7d046007ee19b1ff577cb63a07b2103f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d553ae265f22fc06000000160014abfde7e500a8fa0b913a29a15b6144de743eac8e02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5392,8 +5485,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5406,12 +5499,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964373930633033373533623864333063326634363431393835616637396538633566666135383431633834343761376463396566346333666132316634626166383a307c626372743171337033636b79337072746667736c74737a30786c347839637974346837677332706674647a727c5843507c31303030", + "data": "434e54525052545964343664313061363734303237323565383766353336326164363961383365306538313135343664633734613335623438346430653333373861633533346636373a307c62637274317134303737306567713472617168796636397873346b6332796d6536726174797771796d7a32637c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950028128, "btc_fee": 48872, - "rawtransaction": "02000000000103800dc6faffbce0f8de654c2c591a32293ab5d576ca6f5b9557fc8bf479baad0201000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e1ffffffff9334508606a39f9c29ed55dd1dd1289168342407aa97b6e5608c19377c1fee2000000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e1ffffffff7615312ced3fa25183d8cd654833e6e1d1595a0ebcdbe6957fa6a0449b57496201000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e1ffffffff04e803000000000000695121037535204461c50e0ec922545f777754f1e842928e3474efba5b213259f1e2643d2103b5bb5075cac0fc5ca4254da8744888c9eb70a87155638ae3cd8a0add587a64972103a5aa4d46065ce4a08c9ef90270ed78d57213c383f35d84424771c41fe83a132653aee803000000000000695121037535204461c50e0ec9255000262655a4eb15c08a342aecf65a702619f6a766da2102fcb0067fd5c4b54be8201fbd7e5dce8bef39a77d196edefb8eda01d35a6f62e72103a5aa4d46065ce4a08c9ef90270ed78d57213c383f35d84424771c41fe83a132653aee803000000000000695121035f35204461c50e0ec9360512236e16be8734f1903d20ecba3813546dc7d655b421028c836514acf7c5399c4678ce1229bdf1df41cb496157bd82faee69e43d1c50a82103a5aa4d46065ce4a08c9ef90270ed78d57213c383f35d84424771c41fe83a132653ae606f0b2701000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e102000002000002000000000000", + "rawtransaction": "020000000001034e5fb3e44273cbe06e997c2932d85df952a96210ed1c5ce9828e8dd0d515b122010000001600140c4d0a4310cb026fbd6bb29f6d31f2326716509bffffffff52696d6ef6492af31656cae725d34542e87c34d066cc476f20bbf5c32be1e946000000001600140c4d0a4310cb026fbd6bb29f6d31f2326716509bffffffffc568793cd75874908290e177d517ca44f9e45f8307aa4ba2e6068f16497ae370010000001600140c4d0a4310cb026fbd6bb29f6d31f2326716509bffffffff04e803000000000000695121028fdebd29a883149c6de0767d7e92b529ea8642f68a7da83c1599eb961df464e1210293d6e4b820abc54736b74d9385760cd6e6c98c0ce8e0337e9733de37798dd04f21031388e3699f6081b0cd8e003f0dd04defffb4cb0d82db758cc23d2499cc8d522c53aee803000000000000695121028fdebd29a883149c6db7717c22c2e67def8510f08f70aa7512c2ae8419b666b721039180b7be7cad8c4021e659c3cd210fdba8dedb50bfb379269031946269c4c2e821031388e3699f6081b0cd8e003f0dd04defffb4cb0d82db758cc23d2499cc8d522c53aee80300000000000069512102a5debd29a883149c6df53b266091e63484f226ba897aaa3970a1dcf028c752d72103a1b7808e19cafd74538728abb44739e2d0adef3bdc81004bf507e6031dbdb58421031388e3699f6081b0cd8e003f0dd04defffb4cb0d82db758cc23d2499cc8d522c53ae606f0b27010000001600140c4d0a4310cb026fbd6bb29f6d31f2326716509b02000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5427,8 +5520,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 100000000000, @@ -5436,16 +5529,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730116077, - "last_issuance_block_time": 1730116077, + "first_issuance_block_time": 1730139090, + "last_issuance_block_time": 1730139090, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", - "owner": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "issuer": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen", + "owner": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen", "divisible": true, "locked": false, "supply": 100000000000, @@ -5453,16 +5546,16 @@ "first_issuance_block_index": 198, "last_issuance_block_index": 198, "confirmed": true, - "first_issuance_block_time": 1730116060, - "last_issuance_block_time": 1730116060, + "first_issuance_block_time": 1730139073, + "last_issuance_block_time": 1730139073, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 10000000000, @@ -5470,16 +5563,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730115900, - "last_issuance_block_time": 1730115918, + "first_issuance_block_time": 1730138911, + "last_issuance_block_time": 1730138929, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "owner": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "issuer": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", + "owner": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "divisible": true, "locked": false, "supply": 100000000000, @@ -5487,16 +5580,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730115896, - "last_issuance_block_time": 1730115896, + "first_issuance_block_time": 1730138908, + "last_issuance_block_time": 1730138908, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 100000000000, @@ -5504,8 +5597,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730115851, - "last_issuance_block_time": 1730115851, + "first_issuance_block_time": 1730138861, + "last_issuance_block_time": 1730138861, "supply_normalized": "1000.00000000" } ], @@ -5517,8 +5610,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "owner": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "owner": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false, "supply": 10000000000, @@ -5526,15 +5619,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730115754, - "last_issuance_block_time": 1730115766, + "first_issuance_block_time": 1730138760, + "last_issuance_block_time": 1730138770, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5542,14 +5635,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5557,7 +5650,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -5570,7 +5663,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -5592,9 +5685,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx_hash": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c", "block_index": 184, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5609,7 +5702,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730115936, + "block_time": 1730138958, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5635,9 +5728,9 @@ }, { "tx_index": 51, - "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5652,7 +5745,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730116110, + "block_time": 1730139124, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5678,9 +5771,9 @@ }, { "tx_index": 57, - "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "tx_hash": "1ef850048fccd57ed5563510f4f5dac7cfad13dc69f2ada5428f5fe52c58568a", "block_index": 192, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5695,7 +5788,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730116037, + "block_time": 1730139050, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5721,9 +5814,9 @@ }, { "tx_index": 59, - "tx_hash": "9d6f69deab8decbb02e247c2a2e19611f0931fb91c9bd48d5dad2bfae5328ffe", + "tx_hash": "991fd8e540a9a1eb3bfad5f52ba033e88c6377c22da6d62d3f2e93ef312acf48", "block_index": 193, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5738,7 +5831,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116041, + "block_time": 1730139054, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5764,9 +5857,9 @@ }, { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5781,7 +5874,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116110, + "block_time": 1730139124, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5812,13 +5905,13 @@ "/v2/assets//matches": { "result": [ { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 54, - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", - "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "tx1_hash": "8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", + "tx1_address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5832,7 +5925,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730116023, + "block_time": 1730139035, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5852,13 +5945,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 52, - "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", + "tx1_address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5872,7 +5965,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730116019, + "block_time": 1730139032, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5892,13 +5985,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "id": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c_2c9739c4b32a49f1a690d13a7cb87c3d70603a1c26d9b9e702a96442bd657671", "tx0_index": 49, - "tx0_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 50, - "tx1_hash": "6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "2c9739c4b32a49f1a690d13a7cb87c3d70603a1c26d9b9e702a96442bd657671", + "tx1_address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5912,7 +6005,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730115936, + "block_time": 1730138958, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5939,20 +6032,20 @@ "result": [ { "block_index": 194, - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "event": "71e2343f1a4a660b6eb55c68b383b81198dd1d707df3675c0a345046cc94c411", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116045, + "block_time": 1730139058, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -5960,20 +6053,20 @@ }, { "block_index": 125, - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "633a29ddd1d5f12a25cad17061eaf217c3d3255f32284361eec6745ecebb5d8b", + "event": "a09c8b4566fc0da8f0ba9771f84c247281f3d114e17c23376135ea99eaa97d89", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730115766, + "block_time": 1730138770, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -5981,20 +6074,20 @@ }, { "block_index": 124, - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", + "event": "c433d1f5c9cfcc12e5646d0394ed87e07d5c93c8ecbe75748fb83920c2042b00", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730115762, + "block_time": 1730138766, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -6002,20 +6095,20 @@ }, { "block_index": 124, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "event": "af7c1e95741f86b44041a459c1c42d2215f7da4faf59a0125361611a60d87478", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730115762, + "block_time": 1730138766, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -6027,16 +6120,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", + "event": "c433d1f5c9cfcc12e5646d0394ed87e07d5c93c8ecbe75748fb83920c2042b00", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730115762, + "block_time": 1730138766, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -6054,12 +6147,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "utxo": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "utxo_address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -6071,16 +6164,16 @@ }, { "block_index": 207, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "event": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116110, + "block_time": 1730139124, "asset_info": { "divisible": true, "asset_longname": null, @@ -6092,16 +6185,16 @@ }, { "block_index": 206, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "event": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730139120, "asset_info": { "divisible": true, "asset_longname": null, @@ -6113,16 +6206,16 @@ }, { "block_index": 205, - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "event": "ad6acaa7ce5c591cc3f7630eaf35dd7ad07861746f4f0dacb964a334a3cc7951", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116102, + "block_time": 1730139116, "asset_info": { "divisible": true, "asset_longname": null, @@ -6134,16 +6227,16 @@ }, { "block_index": 204, - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "event": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730139112, "asset_info": { "divisible": true, "asset_longname": null, @@ -6166,14 +6259,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "633a29ddd1d5f12a25cad17061eaf217c3d3255f32284361eec6745ecebb5d8b", + "tx_hash": "a09c8b4566fc0da8f0ba9771f84c247281f3d114e17c23376135ea99eaa97d89", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -6188,20 +6281,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730115766, + "block_time": 1730138770, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", + "tx_hash": "c433d1f5c9cfcc12e5646d0394ed87e07d5c93c8ecbe75748fb83920c2042b00", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -6216,20 +6309,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730115762, + "block_time": 1730138766, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_hash": "af7c1e95741f86b44041a459c1c42d2215f7da4faf59a0125361611a60d87478", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -6244,20 +6337,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730115757, + "block_time": 1730138763, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "tx_hash": "79aace64fffe0222b602a1c6209eda6252182a30bd6aad873f434c1d3e52fdcb", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -6272,7 +6365,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730115754, + "block_time": 1730138760, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6284,10 +6377,10 @@ "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "destination": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6295,7 +6388,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -6308,10 +6401,10 @@ }, { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "block_index": 206, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6319,7 +6412,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730139120, "asset_info": { "divisible": true, "asset_longname": null, @@ -6332,10 +6425,10 @@ }, { "tx_index": 72, - "tx_hash": "12910fe5adceca2b9b80dbdac1aa894a5b71171aed2cbf4868f6d859534bdfe0", + "tx_hash": "ad6acaa7ce5c591cc3f7630eaf35dd7ad07861746f4f0dacb964a334a3cc7951", "block_index": 205, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6343,7 +6436,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730116102, + "block_time": 1730139116, "asset_info": { "divisible": true, "asset_longname": null, @@ -6356,10 +6449,10 @@ }, { "tx_index": 71, - "tx_hash": "9e62178a2d366167bd224cd563547769a60bb7d7eb8edafb6be16dfe969dd1e5", + "tx_hash": "574cdb8c10a95955776600af73e759f42e8a8afa4ed78e6e42b5fa012907eec5", "block_index": 204, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6367,7 +6460,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730116099, + "block_time": 1730139112, "asset_info": { "divisible": true, "asset_longname": null, @@ -6380,10 +6473,10 @@ }, { "tx_index": 70, - "tx_hash": "6eefc1def62d20fef64b684c625ec0cf3f6233e7163e1da78edc0a6925c53354", + "tx_hash": "39980259632cc2f186f395b8791cbb70b7db8cbe3bfecb16e06f001320b886fb", "block_index": 203, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6391,7 +6484,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116095, + "block_time": 1730139107, "asset_info": { "divisible": true, "asset_longname": null, @@ -6410,9 +6503,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6421,7 +6514,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6431,7 +6524,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -6447,9 +6540,9 @@ }, { "tx_index": 29, - "tx_hash": "ccb421515f869082058aa6d0f05423e1c6ce8751d4146c89dee14e26c1c3130b", + "tx_hash": "a258b01afdaabd8e32851627fe1b02a421d434b1270dab90d804bd6dbd4836bd", "block_index": 142, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6458,7 +6551,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "origin": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6468,7 +6561,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115828, + "block_time": 1730138837, "asset_info": { "divisible": true, "asset_longname": null, @@ -6484,9 +6577,9 @@ }, { "tx_index": 30, - "tx_hash": "a809a9c0b667c336b61ce3e892a7f2d80231121804f3f7db594da58d9ded5a52", + "tx_hash": "26ebc0b3d811f899208f2fd859858a2f4c5ffc200c40b4a93bd969c6d36a3b8e", "block_index": 150, - "source": "mrTk1ThfTwE2f6PUY5vjkJvga5VgZXf4bk", + "source": "muiEfYPpvbgzQs92KTRehUaij59RKHzNSo", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6494,10 +6587,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "73d6215c951c71f26d391d50b72497e72188efc109135e95b1f58a4374c30be0", - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "last_status_tx_hash": "549bb50ff899d047cd2f260d9c7f969b6774065c96abea43442742fb4ba4c695", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 0, - "last_status_tx_source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "last_status_tx_source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6505,7 +6598,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115869, + "block_time": 1730138868, "asset_info": { "divisible": true, "asset_longname": null, @@ -6521,18 +6614,18 @@ }, { "tx_index": 33, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6542,7 +6635,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -6563,9 +6656,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6574,7 +6667,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6584,7 +6677,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -6612,7 +6705,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -6620,7 +6713,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6629,7 +6722,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -6637,7 +6730,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6646,7 +6739,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -6654,7 +6747,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6663,7 +6756,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -6678,27 +6771,27 @@ { "tx_index": 75, "dispense_index": 0, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "destination": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6713,7 +6806,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -6727,27 +6820,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "20ee1f7c37198c60e5b697aa072434689128d11ddd55ed299c9fa30686503493", + "tx_hash": "46e9e12bc3f5bb206f47cc66d0347ce84245d325e7ca5616f32a49f66e6d6952", "block_index": 147, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "destination": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6762,7 +6855,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730115848, + "block_time": 1730138856, "asset_info": { "divisible": true, "asset_longname": null, @@ -6776,19 +6869,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "7a4c44d71545a4556d59db3caa34caf7de69c38085266b8f5ea4ce1723d55aa8", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6796,7 +6889,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6811,7 +6904,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -6825,19 +6918,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "901a08fbae97fe2160697f1a26dd121e99535032168302051e6f3200df15a665", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6845,7 +6938,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6860,7 +6953,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730138829, "asset_info": { "divisible": true, "asset_longname": null, @@ -6883,10 +6976,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "tx_hash": "79aace64fffe0222b602a1c6209eda6252182a30bd6aad873f434c1d3e52fdcb", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6911,7 +7004,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730115766, + "block_time": 1730138770, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6929,22 +7022,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "633a29ddd1d5f12a25cad17061eaf217c3d3255f32284361eec6745ecebb5d8b", + "tx_hash": "a09c8b4566fc0da8f0ba9771f84c247281f3d114e17c23376135ea99eaa97d89", "tx_index": 13, "block_index": 125, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", + "fairminter_tx_hash": "79aace64fffe0222b602a1c6209eda6252182a30bd6aad873f434c1d3e52fdcb", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115766, + "block_time": 1730138770, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -6953,22 +7046,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28", + "tx_hash": "c433d1f5c9cfcc12e5646d0394ed87e07d5c93c8ecbe75748fb83920c2042b00", "tx_index": 12, "block_index": 124, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", + "fairminter_tx_hash": "79aace64fffe0222b602a1c6209eda6252182a30bd6aad873f434c1d3e52fdcb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115762, + "block_time": 1730138766, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -6977,22 +7070,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_hash": "af7c1e95741f86b44041a459c1c42d2215f7da4faf59a0125361611a60d87478", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "79aace64fffe0222b602a1c6209eda6252182a30bd6aad873f434c1d3e52fdcb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115757, + "block_time": 1730138763, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -7007,22 +7100,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "41240f71083cb9c2054c3f5a50a838c07e027a0636078ddee506f71dd4cfc8ef", + "tx_hash": "af7c1e95741f86b44041a459c1c42d2215f7da4faf59a0125361611a60d87478", "tx_index": 11, "block_index": 123, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "79aace64fffe0222b602a1c6209eda6252182a30bd6aad873f434c1d3e52fdcb", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115757, + "block_time": 1730138763, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -7038,9 +7131,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx_hash": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c", "block_index": 184, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7055,7 +7148,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730115936, + "block_time": 1730138958, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7081,9 +7174,9 @@ }, { "tx_index": 52, - "tx_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx_hash": "0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", "block_index": 187, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7098,7 +7191,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730116019, + "block_time": 1730139032, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7124,9 +7217,9 @@ }, { "tx_index": 54, - "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx_hash": "8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "block_index": 188, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7141,7 +7234,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116023, + "block_time": 1730139035, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7167,9 +7260,9 @@ }, { "tx_index": 57, - "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "tx_hash": "1ef850048fccd57ed5563510f4f5dac7cfad13dc69f2ada5428f5fe52c58568a", "block_index": 192, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7184,7 +7277,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730116037, + "block_time": 1730139050, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7210,9 +7303,9 @@ }, { "tx_index": 59, - "tx_hash": "9d6f69deab8decbb02e247c2a2e19611f0931fb91c9bd48d5dad2bfae5328ffe", + "tx_hash": "991fd8e540a9a1eb3bfad5f52ba033e88c6377c22da6d62d3f2e93ef312acf48", "block_index": 193, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7227,7 +7320,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116041, + "block_time": 1730139054, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7258,9 +7351,9 @@ "/v2/orders/": { "result": { "tx_index": 74, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7275,7 +7368,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730116110, + "block_time": 1730139124, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7303,13 +7396,13 @@ "/v2/orders//matches": { "result": [ { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 54, - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", - "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "tx1_hash": "8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", + "tx1_address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7323,7 +7416,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730116023, + "block_time": 1730139035, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7343,13 +7436,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 52, - "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", + "tx1_address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7363,7 +7456,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730116019, + "block_time": 1730139032, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7390,15 +7483,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "777b8db294c20301c6be44567366a7ae2c5f42c92f70002c4a90100213e13d88", "block_index": 187, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "btc_amount": 2000, - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "order_match_id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", "status": "valid", "confirmed": true, - "block_time": 1730116019, + "block_time": 1730139032, "btc_amount_normalized": "0.00002000" } ], @@ -7409,9 +7502,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "tx_hash": "0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", "block_index": 187, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7429,7 +7522,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730116019, + "block_time": 1730139032, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7455,9 +7548,9 @@ }, { "tx_index": 54, - "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx_hash": "8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "block_index": 188, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7475,7 +7568,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730116023, + "block_time": 1730139035, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7501,9 +7594,9 @@ }, { "tx_index": 49, - "tx_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", + "tx_hash": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c", "block_index": 184, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7521,7 +7614,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730115936, + "block_time": 1730138958, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7547,9 +7640,9 @@ }, { "tx_index": 51, - "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", "block_index": 207, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7567,7 +7660,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730116110, + "block_time": 1730139124, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7593,9 +7686,9 @@ }, { "tx_index": 57, - "tx_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", + "tx_hash": "1ef850048fccd57ed5563510f4f5dac7cfad13dc69f2ada5428f5fe52c58568a", "block_index": 192, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7613,7 +7706,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730116037, + "block_time": 1730139050, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7644,13 +7737,13 @@ "/v2/orders///matches": { "result": [ { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 54, - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", - "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "tx1_hash": "8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", + "tx1_address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7667,7 +7760,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730116023, + "block_time": 1730139035, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7687,13 +7780,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 52, - "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", + "tx1_address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7710,7 +7803,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730116019, + "block_time": 1730139032, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7730,13 +7823,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "id": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c_2c9739c4b32a49f1a690d13a7cb87c3d70603a1c26d9b9e702a96442bd657671", "tx0_index": 49, - "tx0_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 50, - "tx1_hash": "6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "2c9739c4b32a49f1a690d13a7cb87c3d70603a1c26d9b9e702a96442bd657671", + "tx1_address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7753,7 +7846,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730115936, + "block_time": 1730138958, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7779,13 +7872,13 @@ "/v2/order_matches": { "result": [ { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 54, - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", - "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "tx1_hash": "8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", + "tx1_address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7799,7 +7892,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730116023, + "block_time": 1730139035, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7819,13 +7912,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", "tx0_index": 51, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 52, - "tx1_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", + "tx1_address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7839,7 +7932,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730116019, + "block_time": 1730139032, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7859,13 +7952,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", + "id": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c_2c9739c4b32a49f1a690d13a7cb87c3d70603a1c26d9b9e702a96442bd657671", "tx0_index": 49, - "tx0_hash": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_hash": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx1_index": 50, - "tx1_hash": "6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "tx1_hash": "2c9739c4b32a49f1a690d13a7cb87c3d70603a1c26d9b9e702a96442bd657671", + "tx1_address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7879,7 +7972,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730115936, + "block_time": 1730138958, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7924,66 +8017,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "40efc8e4de6bc24410016279eb759071c80e3ac3ee8fc7a52725555c3f89979e", + "tx_hash": "979d8c9a2ebdf389de52fa1660a98b1137ec6da41c097f2a1b0570a06bb4feba", "block_index": 121, - "source": "bcrt1qrac7m6sqdzx9h798y52wk0qj5205d7vtqfjyds", + "source": "bcrt1qvvlvuw98tvd8xzd0yrsvzfzhgypmh20dkl87yf", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730115749, + "block_time": 1730138755, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "b3899728f4fbe6971190ca0558018b101f89d77a0a686dc9b3ccc415ca018e8b", + "tx_hash": "0b1beb2cba2846fe51ba9edcbb402aa324acd41b9dd04855c3e6eca04813d4f7", "block_index": 120, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "source": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730115746, + "block_time": 1730138751, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "3a7a3f1159a9cfa190b40ae0aeea74f6e7bb59e77c72bf9dfcd020f2cf08b918", + "tx_hash": "6abe149094464a2c1bbd78bc4aa30dda256da41cc5686421afdb11f41a2da736", "block_index": 119, - "source": "bcrt1qlzwnh8crxz0ezlqgv69hf4g482dp7lmzd8rrxl", + "source": "bcrt1qqdc0prpr0atgr2qrkgxm0wdwnqpllmh2p34073", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730115741, + "block_time": 1730138748, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "6315228e07c37718a4a5b514e8966e340617b45669cadb46b87c79fde9c61081", + "tx_hash": "ecee7738b827d2fe9b61c73c17f98fbfb3936bc59b7bc1fe65c971200eafafa4", "block_index": 118, - "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730115738, + "block_time": 1730138744, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "62015459a282a1c5ce61590bf6a13d1cc03908e59d02d09d8bb4327c8e8349f9", + "tx_hash": "b0c26d94ca7379469869c86b1049969ee0779ab94a06b4840d376d42ffc4978e", "block_index": 117, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730115735, + "block_time": 1730138741, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7995,9 +8088,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8006,7 +8099,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8016,7 +8109,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -8032,9 +8125,9 @@ }, { "tx_index": 29, - "tx_hash": "ccb421515f869082058aa6d0f05423e1c6ce8751d4146c89dee14e26c1c3130b", + "tx_hash": "a258b01afdaabd8e32851627fe1b02a421d434b1270dab90d804bd6dbd4836bd", "block_index": 142, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8043,7 +8136,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "origin": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8053,7 +8146,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115828, + "block_time": 1730138837, "asset_info": { "divisible": true, "asset_longname": null, @@ -8069,9 +8162,9 @@ }, { "tx_index": 30, - "tx_hash": "a809a9c0b667c336b61ce3e892a7f2d80231121804f3f7db594da58d9ded5a52", + "tx_hash": "26ebc0b3d811f899208f2fd859858a2f4c5ffc200c40b4a93bd969c6d36a3b8e", "block_index": 150, - "source": "mrTk1ThfTwE2f6PUY5vjkJvga5VgZXf4bk", + "source": "muiEfYPpvbgzQs92KTRehUaij59RKHzNSo", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8079,10 +8172,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "73d6215c951c71f26d391d50b72497e72188efc109135e95b1f58a4374c30be0", - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "last_status_tx_hash": "549bb50ff899d047cd2f260d9c7f969b6774065c96abea43442742fb4ba4c695", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 0, - "last_status_tx_source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "last_status_tx_source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -8090,7 +8183,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115869, + "block_time": 1730138868, "asset_info": { "divisible": true, "asset_longname": null, @@ -8106,9 +8199,9 @@ }, { "tx_index": 62, - "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "tx_hash": "d9ebbde4d57e28e43829a23e320e99bd09a0cc05ea6b0c59351e0aee002c241f", "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8117,7 +8210,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8127,11 +8220,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730116055, + "block_time": 1730139069, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -8143,18 +8236,18 @@ }, { "tx_index": 33, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8164,7 +8257,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -8185,9 +8278,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8196,7 +8289,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8206,7 +8299,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -8226,19 +8319,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "7a4c44d71545a4556d59db3caa34caf7de69c38085266b8f5ea4ce1723d55aa8", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8246,7 +8339,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8261,7 +8354,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -8275,19 +8368,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "901a08fbae97fe2160697f1a26dd121e99535032168302051e6f3200df15a665", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8295,7 +8388,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8310,7 +8403,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730138829, "asset_info": { "divisible": true, "asset_longname": null, @@ -8329,20 +8422,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "faecdff4961a9fd6da312f456cc6b09157b6d1d851f27819c1c8588c1dd9f23f", "block_index": 154, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730115885, + "block_time": 1730138884, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -8363,20 +8456,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "faecdff4961a9fd6da312f456cc6b09157b6d1d851f27819c1c8588c1dd9f23f", "block_index": 154, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730115885, + "block_time": 1730138884, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -8399,12 +8492,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "event": "faecdff4961a9fd6da312f456cc6b09157b6d1d851f27819c1c8588c1dd9f23f", "tx_index": 41, - "utxo": "98dc74f499bab33d7568cbb80cf2844a2c7c56b8c2f77d240c55b6583f71505a:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "utxo": "a4305454395c8205868671267db226a1774bd9023af6d6bc90521e17ff039f09:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "confirmed": true, - "block_time": 1730115885, + "block_time": 1730138884, "asset_info": { "divisible": true, "asset_longname": null, @@ -8416,16 +8509,16 @@ }, { "block_index": 154, - "address": "bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz", + "address": "bcrt1qmpe9apwn620rg688seeaa0u2u4mlmu5w6f3x4x", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "event": "faecdff4961a9fd6da312f456cc6b09157b6d1d851f27819c1c8588c1dd9f23f", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730115885, + "block_time": 1730138884, "asset_info": { "divisible": true, "asset_longname": null, @@ -8446,27 +8539,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "aca158120f73c7579de95c79be6418a95a5fa8f657f40712bb994d8c10f77cfc", + "messages_hash": "4b067e65e521582a964aef05b8d26b6c46e1bd27305b02a262268e210166750c", "transaction_count": 1, - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "block_time": 1730116123 + "txlist_hash": "df142cc3f0075757b9e9cb9353ce0032b8a9348592893c3daa8f8c40a72ebd2c", + "block_time": 1730139139 }, "tx_hash": null, "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 674, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75 }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 673, @@ -8475,14 +8568,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -8493,9 +8586,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 672, @@ -8504,9 +8597,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "status": 0, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "asset_info": { "divisible": true, "asset_longname": null, @@ -8516,24 +8609,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -8543,9 +8636,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 670, @@ -8557,15 +8650,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "aca158120f73c7579de95c79be6418a95a5fa8f657f40712bb994d8c10f77cfc", + "messages_hash": "4b067e65e521582a964aef05b8d26b6c46e1bd27305b02a262268e210166750c", "transaction_count": 1, - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "block_time": 1730116123 + "txlist_hash": "df142cc3f0075757b9e9cb9353ce0032b8a9348592893c3daa8f8c40a72ebd2c", + "block_time": 1730139139 }, "tx_hash": null, "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } }, "/v2/events/counts": { @@ -8600,16 +8693,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -8619,9 +8712,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 669, @@ -8631,12 +8724,12 @@ "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -8646,9 +8739,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 666, @@ -8658,39 +8751,39 @@ "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 1500000000, "tx_index": 75, - "utxo": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", - "utxo_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "block_time": 1730116123, + "utxo": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", + "utxo_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "block_time": 1730139139, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 }, { "event_index": 656, "event": "CREDIT", "params": { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "block_index": 207, "calling_function": "cancel order", - "event": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "event": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730116110, + "block_time": 1730139124, "asset_info": { "divisible": true, "asset_longname": null, @@ -8700,24 +8793,24 @@ }, "quantity_normalized": "0.00005000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730139124 }, { "event_index": 645, "event": "CREDIT", "params": { - "address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "block_index": 206, "calling_function": "mpma send", - "event": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "event": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "quantity": 10, "tx_index": 73, "utxo": null, "utxo_address": null, - "block_time": 1730116106, + "block_time": 1730139120, "asset_info": { "divisible": true, "asset_longname": null, @@ -8727,9 +8820,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "block_index": 206, - "block_time": 1730116106 + "block_time": 1730139120 } ], "next_cursor": 644, @@ -8746,27 +8839,27 @@ { "tx_index": 75, "dispense_index": 0, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "destination": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8781,7 +8874,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -8795,19 +8888,19 @@ { "tx_index": 63, "dispense_index": 0, - "tx_hash": "6afc6887d0234625af2de1aad7aa4588fb3aa054b9f1df4e9de8cd43df5794ae", + "tx_hash": "e9caa143d2b32587a41f3183a44bf80222940ae76a0971fb1533667751cf7d5a", "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "dispenser_tx_hash": "d9ebbde4d57e28e43829a23e320e99bd09a0cc05ea6b0c59351e0aee002c241f", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8815,7 +8908,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8830,11 +8923,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730116055, + "block_time": 1730139069, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -8844,27 +8937,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "20ee1f7c37198c60e5b697aa072434689128d11ddd55ed299c9fa30686503493", + "tx_hash": "46e9e12bc3f5bb206f47cc66d0347ce84245d325e7ca5616f32a49f66e6d6952", "block_index": 147, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "destination": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "destination": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "oracle_address": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "last_status_tx_hash": null, - "origin": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "origin": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8879,7 +8972,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730115848, + "block_time": 1730138856, "asset_info": { "divisible": true, "asset_longname": null, @@ -8893,19 +8986,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5d9443a5fd8f09db7590a582281f9ea69b8c645d47dccf1803901f0735c6643", + "tx_hash": "7a4c44d71545a4556d59db3caa34caf7de69c38085266b8f5ea4ce1723d55aa8", "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8913,7 +9006,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8928,7 +9021,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115825, + "block_time": 1730138834, "asset_info": { "divisible": true, "asset_longname": null, @@ -8942,19 +9035,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "3b8f579f36a822cfffe711a4dc2d4033ceda2e03d63e0749539e7d28bdf3729d", + "tx_hash": "901a08fbae97fe2160697f1a26dd121e99535032168302051e6f3200df15a665", "block_index": 140, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d2e7af48f1bb30cf126538d6ad0ad53ecb0ac2dff97c24207e2339cc0da338e2", + "dispenser_tx_hash": "eb64ed9282ee84ea1200f77f619945377461ca819ee47163ede223868e8904df", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8962,7 +9055,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8977,7 +9070,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730115821, + "block_time": 1730138829, "asset_info": { "divisible": true, "asset_longname": null, @@ -8996,10 +9089,10 @@ "result": [ { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "destination": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -9007,7 +9100,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -9020,10 +9113,10 @@ }, { "tx_index": 75, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "source": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "destination": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -9031,11 +9124,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -9044,10 +9137,10 @@ }, { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "block_index": 206, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9055,7 +9148,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730139120, "asset_info": { "divisible": true, "asset_longname": null, @@ -9068,10 +9161,10 @@ }, { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "block_index": 206, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9079,11 +9172,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730139120, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -9092,10 +9185,10 @@ }, { "tx_index": 73, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "block_index": 206, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9103,11 +9196,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730116106, + "block_time": 1730139120, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -9122,14 +9215,14 @@ "result": [ { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -9144,20 +9237,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730116077, + "block_time": 1730139090, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 64, - "tx_hash": "c915023b8b26fc3eb938d496087a062745ad462fccab637368bddfd4fb29c4ba", + "tx_hash": "7866e26c38d4824b2abd62ccc128266030848bf90a8cae55700e7166c798ee9b", "msg_index": 0, "block_index": 198, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", - "issuer": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen", + "issuer": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen", "transfer": false, "callable": false, "call_date": 0, @@ -9172,20 +9265,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730116060, + "block_time": 1730139073, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "92d810aacd89aaed4756618250d3df3739516fda551847d01a705a57cf250e1c", + "tx_hash": "2cf2f6adb24fe9a7be38a9d3f3d1031e31d13d9c9802e1bb5d7666d98e13c3e9", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -9200,20 +9293,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730115921, + "block_time": 1730138943, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "652fa348e445bedc79af7c8da7e9edd116fc6586bb2896968234ade2b0de91c4", + "tx_hash": "57cdd83d521d29f8483683c177b56cd0dd6910de4cfd2709dcabad68c77f1032", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -9228,20 +9321,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730115918, + "block_time": 1730138929, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "a9640b7ef998e1287a94371074ed8dd399613638ecb6a9c1a406fd5ce29727e0", + "tx_hash": "75572517365df9448cdf1643368ee288e155a812cdf80dd46fdf74abafa5cf95", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -9256,7 +9349,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730115914, + "block_time": 1730138915, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9267,14 +9360,14 @@ "/v2/issuances/": { "result": { "tx_index": 68, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "transfer": false, "callable": false, "call_date": 0, @@ -9289,7 +9382,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730116077, + "block_time": 1730139090, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9298,16 +9391,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "71e2343f1a4a660b6eb55c68b383b81198dd1d707df3675c0a345046cc94c411", "block_index": 194, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730116045, + "block_time": 1730139058, "fee_paid_normalized": "0.00600000" } ], @@ -9318,16 +9411,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "71e2343f1a4a660b6eb55c68b383b81198dd1d707df3675c0a345046cc94c411", "block_index": 194, - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730116045, + "block_time": 1730139058, "fee_paid_normalized": "0.00600000" } ], @@ -9338,9 +9431,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "tx_hash": "b62b9151ddb7d171028938e3fa175d44f647c4d938dd939a62f845796c500c47", "block_index": 138, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9348,14 +9441,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730115814, + "block_time": 1730138821, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "261b5785cc07a1f7000bee3be198f5d90393f35ed50ad3c8656eafadf5e468dc", + "tx_hash": "249d7545e6d4ac34989f93c91683e943579bbff7ce734459d67bb521e134c5ab", "block_index": 137, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9363,7 +9456,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730115811, + "block_time": 1730138818, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9373,9 +9466,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "tx_hash": "b62b9151ddb7d171028938e3fa175d44f647c4d938dd939a62f845796c500c47", "block_index": 138, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9383,17 +9476,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730115814, + "block_time": 1730138821, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_hash": "42a285d407b0482a81904545dacac2ecf78dd87157cdc4ff5c37086b078ee059", "tx_index": 42, "block_index": 155, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9418,7 +9511,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730115889, + "block_time": 1730138899, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9427,10 +9520,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "tx_hash": "29b7175f8cb8f4c4676752ff62c91262d377175a6994145c8fb27e832eadcd98", "tx_index": 22, "block_index": 135, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9455,7 +9548,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730115804, + "block_time": 1730138810, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9467,10 +9560,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "tx_hash": "022f35c10f14c2ea46ee28369585bf5e4f9d527b2f0f551680c699bba7b5067f", "tx_index": 18, "block_index": 131, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9495,7 +9588,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730115789, + "block_time": 1730138794, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9507,10 +9600,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", + "tx_hash": "484463111a0414fb5c61a2480486d42e52aa4fcb1316ab426dcf72d369af3cc8", "tx_index": 14, "block_index": 130, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9535,7 +9628,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730115785, + "block_time": 1730138790, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9547,10 +9640,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "01a9a3a67f78c79ddee01b432b2098d390e2e2a12098ff497e9c5620f02c07e6", + "tx_hash": "79aace64fffe0222b602a1c6209eda6252182a30bd6aad873f434c1d3e52fdcb", "tx_index": 10, "block_index": 125, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9575,7 +9668,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730115766, + "block_time": 1730138770, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9593,22 +9686,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "cb3f7778d2be0cdafe509a5da15d6a13ccbd7acb72821744a6bd3fc15571b4bd", "tx_index": 23, "block_index": 136, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "29b7175f8cb8f4c4676752ff62c91262d377175a6994145c8fb27e832eadcd98", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115808, + "block_time": 1730138813, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -9617,22 +9710,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "5da24fdc5b0f42414404df0110e4a3cd79789b5706be7b301d976f9eef623346", + "tx_hash": "8f63058af67e1d6bfbca9dcdc44be48390cee42fd957142c3dbb6349a9249027", "tx_index": 21, "block_index": 134, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "022f35c10f14c2ea46ee28369585bf5e4f9d527b2f0f551680c699bba7b5067f", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115800, + "block_time": 1730138806, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -9641,22 +9734,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "98840296af69b519b38aaa9663baa393849683e67da07ce11e4aa21df9259e2f", + "tx_hash": "28655ebccabe82e70af2497d724e2b88df44b5ef7acda995ffa12e8e70bbe855", "tx_index": 20, "block_index": 133, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "022f35c10f14c2ea46ee28369585bf5e4f9d527b2f0f551680c699bba7b5067f", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115797, + "block_time": 1730138801, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -9665,22 +9758,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "e26754ee3f011a743d3bd45d712d1fe4056c4b4f657f391b5d06c33191fe01d3", + "tx_hash": "e189d65f18255b300aa1a11aa1190533fc1611876bfe6e77c7cee8d842affd09", "tx_index": 19, "block_index": 132, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "ecb540d51b25ce1ad1e989ab06cd886dc5de1a2ebe1b3b206ab0f01da163e73d", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "022f35c10f14c2ea46ee28369585bf5e4f9d527b2f0f551680c699bba7b5067f", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115793, + "block_time": 1730138797, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -9689,22 +9782,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "c2ff22176088f20d29376840755983b7b85d64f16b7c262e35059b6ee5a80208", + "tx_hash": "8c4ef2bf4c1fefdcb7b759e2dd4ee838e0f2958e5f0bdab68bee50c14fcd93df", "tx_index": 17, "block_index": 129, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "fairminter_tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", + "fairminter_tx_hash": "484463111a0414fb5c61a2480486d42e52aa4fcb1316ab426dcf72d369af3cc8", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115781, + "block_time": 1730138785, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -9718,22 +9811,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "cb3f7778d2be0cdafe509a5da15d6a13ccbd7acb72821744a6bd3fc15571b4bd", "tx_index": 23, "block_index": 136, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "fairminter_tx_hash": "29b7175f8cb8f4c4676752ff62c91262d377175a6994145c8fb27e832eadcd98", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730115808, + "block_time": 1730138813, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -9745,22 +9838,22 @@ "/v2/bitcoin/addresses/utxos": { "result": [ { - "vout": 0, + "vout": 1, "height": 200, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "260f8515d5cf01148f41d85cf4e21251e532277b3c37ba22a3c72be4cd065b05", - "address": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg" + "amount": 49.499345, + "txid": "4625e6e4bd79e0223a8f70f71f063cb43c4d354c025c430fe46aaa6464207e5b", + "address": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen" }, { - "vout": 1, + "vout": 0, "height": 200, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "4b90e72e007ba15a6a40fdfc84e5f898b4f34917ddd7eefb3d3c380238678261", - "address": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg" + "amount": 5.46e-05, + "txid": "fae83ae3fe98479708dbfe0348101af666661f1da6f5468dd3a20d3df5678770", + "address": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen" }, { "vout": 2, @@ -9768,8 +9861,8 @@ "value": 100000, "confirmations": 52, "amount": 0.001, - "txid": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e", - "address": "bcrt1qlzwnh8crxz0ezlqgv69hf4g482dp7lmzd8rrxl" + "txid": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71", + "address": "bcrt1qqdc0prpr0atgr2qrkgxm0wdwnqpllmh2p34073" } ], "next_cursor": null, @@ -9778,28 +9871,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "46275b59a76a524ece7bbe93bdce57ca07ca43cb22ad6592ae00e7f1ab310111" + "tx_hash": "c433d1f5c9cfcc12e5646d0394ed87e07d5c93c8ecbe75748fb83920c2042b00" }, { - "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614" + "tx_hash": "71e2343f1a4a660b6eb55c68b383b81198dd1d707df3675c0a345046cc94c411" }, { - "tx_hash": "d8522fdcfa66017e939ec6d476047b4e9befd85d564a5fe62d225ee31505de28" + "tx_hash": "e8d0a6403e90e4fad11e7358b12c036afe1b0e05d598d8eb001a44e813a54e5a" }, { - "tx_hash": "befc407b97cc222e3e9fadff546d543c02db387adea45dd405c48f173c37b6ba" + "tx_hash": "a57218d6e5e67f875653495bd14107cc8632c74f7b89f57ddf07bf5977e60e60" }, { - "tx_hash": "5d1e44b8239fc1804e1dfb41c0ff24d1b9fe50fdd26c0a080ddcc73e152633bd" + "tx_hash": "8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363" }, { - "tx_hash": "ebdd9911ac289e537ed7c712b293decfb0d690c1b2390873d53383b30979e9c8" + "tx_hash": "42689c7732a5b2b6fdb719c0db2f53db7762653aff5aa7af65dbea91db0cf267" }, { - "tx_hash": "54cb02f91cc1d54472f02930f57a18f5e5c9fbd699b1c40339fa0b223b3c2af1" + "tx_hash": "a7551034f9a746afa2c8901b415aea2b7f64f7d6b6a15a1f71c78c6a66c99a84" }, { - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4" + "tx_hash": "c3078ffca2ad8cd42de6fb7e76d2cff168e34030682e6de864c0137988dc9eee" } ], "next_cursor": null, @@ -9807,8 +9900,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 3, - "tx_hash": "538e56b094f8dbba32f0ec9a3e237582b618490767ec074bc8a822c4657988a8" + "block_index": 1, + "tx_hash": "ddd8c07f8a7c499dcdbd2ffc6ab0d07938fdcd97aa2dfdbe63f93470a1c946b7" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -9819,7 +9912,7 @@ "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "260f8515d5cf01148f41d85cf4e21251e532277b3c37ba22a3c72be4cd065b05" + "txid": "fae83ae3fe98479708dbfe0348101af666661f1da6f5468dd3a20d3df5678770" }, { "vout": 1, @@ -9827,17 +9920,17 @@ "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "4b90e72e007ba15a6a40fdfc84e5f898b4f34917ddd7eefb3d3c380238678261" + "txid": "4625e6e4bd79e0223a8f70f71f063cb43c4d354c025c430fe46aaa6464207e5b" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "03998fb0f6e0c11b3170bdb625ac26f7eb095dea4726f847c458f1775de24cd6f5" + "result": "03f747781a7ef7ee7abe14d0565003f7e7aff116448fa990571ef12e5266f8c3d5" }, "/v2/bitcoin/transactions/": { - "result": "020000000001016e888e762a5bf751913b28c9af990e94615e21052e49580e84f3926bebd9fca50100000000ffffffff03e803000000000000160014b8240dbcd49ab3cba7daa4005acc62a8b99ea7e100000000000000000c6a0aa390177068284096dde5dced082701000000160014d950bc5f9180ecff106845a230a250af93710c9a02473044022075c5b31202028752fbe4fef802a6100e72659ca2b61b87ead38c4cd1b7a3951102203037bfa13cc2fc1f3130ab74ee5aedde6649fb33ec0c628e7e9afba8fc8010c00121029bf65cc180612a741a06643bfa5b68c3dce8915d289aea03ca0bdbaa4d03e70700000000" + "result": "0200000000010171bc87ad68db4e0a557b0825977b1014e4585781c071a0a0aa6e77433507cce20100000000ffffffff03e8030000000000001600140c4d0a4310cb026fbd6bb29f6d31f2326716509b00000000000000000c6a0a72cb8c6b4d43eeae4edcdced082701000000160014830c99cc4d46e9e2ee5f1fb82ac520ba97ee786702473044022069b6fb92932be853a13cccd859f56d1cafbcbddcf8ce6b72436288be794f18f20220320c9bdaec5e0e72103a6d52617394f1a319fcea6639e25d1bfea558fc593308012102fbba7b69d7fafe18d1c59c46680f18cb597a8bfe2a80bc7a48b3fc995c87128a00000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 61397 @@ -9860,27 +9953,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "tx_index": 76 }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "memo": null, "quantity": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "status": "valid", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "tx_index": 76, "asset_info": { "divisible": true, @@ -9891,22 +9984,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "CREDIT", "params": { - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -9916,22 +10009,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "XCP", "block_index": 208, - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -9941,30 +10034,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730116127.587877, + "block_time": 1730139143.3448281, "btc_amount": 0, - "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", + "data": "0200000000000000010000000000002710804edee264e437d1df26c6d93c307e7ff097166b84", "destination": "", "fee": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "tx_index": 76, - "utxos_info": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f:1", + "utxos_info": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "memo": null, "asset_info": { "divisible": true, @@ -9978,7 +10071,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 } ], "next_cursor": null, @@ -9987,19 +10080,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "CREDIT", "params": { - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -10009,7 +10102,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 } ], "next_cursor": null, @@ -10018,27 +10111,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "tx_index": 76 }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "destination": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "memo": null, "quantity": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "status": "valid", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "tx_index": 76, "asset_info": { "divisible": true, @@ -10049,22 +10142,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "CREDIT", "params": { - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -10074,22 +10167,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "address": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "asset": "XCP", "block_index": 208, - "event": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "event": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -10099,30 +10192,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 }, { - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730116127.587877, + "block_time": 1730139143.3448281, "btc_amount": 0, - "data": "0200000000000000010000000000002710802ee7671497fd3d7b5d9e23d3c7853cdb0699c484", + "data": "0200000000000000010000000000002710804edee264e437d1df26c6d93c307e7ff097166b84", "destination": "", "fee": 10000, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", - "tx_hash": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", + "tx_hash": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92", "tx_index": 76, - "utxos_info": "de1d767384c4e884db1364e0a686d209f875e9fa6946b293ab3aeb89d5ff6c5f:1", + "utxos_info": "20f798cf38724db0e209d48a5f857b4a16f93d2603b28e31325434098cddbf92:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "memo": null, "asset_info": { "divisible": true, @@ -10136,7 +10229,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730116127.587877 + "timestamp": 1730139143.3448281 } ], "next_cursor": null, @@ -10158,15 +10251,15 @@ "event_index": 662, "event": "NEW_BLOCK", "params": { - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_hash": "533aa13765b9bc05a46027d588d5a5aa368bfe2ab91d51fe1fcb93aa9b7d2836", "block_index": 208, - "block_time": 1730116123, + "block_time": 1730139139, "difficulty": 545259519, - "previous_block_hash": "3dd063fbdc49ffc099a74b167ed8bde0ebfbd6714f39d638eeb02efed76b7beb" + "previous_block_hash": "39f247e162c2a49b3fc5bb01c5374ad7a6c0e7e4573dc5511953a7a7586c5a8b" }, "tx_hash": null, "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 653, @@ -10178,17 +10271,17 @@ "event_index": 663, "event": "NEW_TRANSACTION", "params": { - "block_hash": "32ffb44b854fd3a70dbdc206198283e01a99752ffcbfaa9981d76f68d9bf1d8d", + "block_hash": "533aa13765b9bc05a46027d588d5a5aa368bfe2ab91d51fe1fcb93aa9b7d2836", "block_index": 208, - "block_time": 1730116123, + "block_time": 1730139139, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "destination": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "fee": 0, - "source": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "source": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "utxos_info": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1 790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "utxos_info": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1 46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10198,9 +10291,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 654, @@ -10214,16 +10307,16 @@ "params": { "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "destination": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "out_index": 0, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730139139, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 558, @@ -10236,15 +10329,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "02837de0e1a61e1aac28cf60b9c76e4a1e934eb09f32e882755e9e1de9766227", - "messages_hash": "4afb44bdba436739665f9a56aadc54f4c892ba0486c5292561185a37c060043a", + "ledger_hash": "aca158120f73c7579de95c79be6418a95a5fa8f657f40712bb994d8c10f77cfc", + "messages_hash": "4b067e65e521582a964aef05b8d26b6c46e1bd27305b02a262268e210166750c", "transaction_count": 1, - "txlist_hash": "d4a72c2a15caa785f0cfcc54accb8ac71777d2bfc98e3b316febd80a8c2dbb95", - "block_time": 1730116123 + "txlist_hash": "df142cc3f0075757b9e9cb9353ce0032b8a9348592893c3daa8f8c40a72ebd2c", + "block_time": 1730139139 }, "tx_hash": null, "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 661, @@ -10257,12 +10350,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75 }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 660, @@ -10278,12 +10371,12 @@ "address": null, "asset": "XCP", "block_index": 208, - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 1500000000, "tx_index": 75, - "utxo": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", - "utxo_address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", - "block_time": 1730116123, + "utxo": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", + "utxo_address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -10293,9 +10386,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 665, @@ -10307,16 +10400,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "address": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "event": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -10326,9 +10419,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 669, @@ -10342,26 +10435,26 @@ "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "memo": null, "quantity": 1000, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "status": "valid", - "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "tx_hash": "50eccc0ccb786046b629ea7cae6bbe7cd918c75a76eef840e931e44865e2d2e6", "tx_index": 69, - "block_time": 1730116081, + "block_time": 1730139103, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "beedbbf5681b5e40e0e5bc45e731f4e5ecac6bd7f7e9b962f4e60adca41c7d02", + "tx_hash": "50eccc0ccb786046b629ea7cae6bbe7cd918c75a76eef840e931e44865e2d2e6", "block_index": 202, - "block_time": 1730116081 + "block_time": 1730139103 } ], "next_cursor": 498, @@ -10375,15 +10468,15 @@ "params": { "asset": "XCP", "block_index": 206, - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "status": "valid", - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "tx_index": 73, - "block_time": 1730116106, + "block_time": 1730139120, "asset_info": { "divisible": true, "asset_longname": null, @@ -10393,9 +10486,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "7aa79401fe6480aa1232b16126cb491d15b7b6e0032b7d71896b8217746d8257", + "tx_hash": "091d3866f4e6f2c4d8812ff7541586534edb5d9c698681917f55d65a23cd2c00", "block_index": 206, - "block_time": 1730116106 + "block_time": 1730139120 } ], "next_cursor": 649, @@ -10418,20 +10511,20 @@ "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "destination": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "source": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "status": "valid", - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "71e2343f1a4a660b6eb55c68b383b81198dd1d707df3675c0a345046cc94c411", "tx_index": 60, - "block_time": 1730116045, + "block_time": 1730139058, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "0740134eb609d2e054b7a2bf2f1881b17d75111aa4a1b20d5a80b2e296c4c3f4", + "tx_hash": "71e2343f1a4a660b6eb55c68b383b81198dd1d707df3675c0a345046cc94c411", "block_index": 194, - "block_time": 1730116045 + "block_time": 1730139058 } ], "next_cursor": null, @@ -10448,15 +10541,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "status": "valid", - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "faecdff4961a9fd6da312f456cc6b09157b6d1d851f27819c1c8588c1dd9f23f", "tx_index": 41, - "block_time": 1730115885, + "block_time": 1730138884, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -10470,9 +10563,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "62649ae7ad45ceb5007075a187ce879769a260a7bceca9a30228e7b73d48be1a", + "tx_hash": "faecdff4961a9fd6da312f456cc6b09157b6d1d851f27819c1c8588c1dd9f23f", "block_index": 154, - "block_time": 1730115885 + "block_time": 1730138884 } ], "next_cursor": null, @@ -10493,11 +10586,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 201, - "block_time": 1730116077 + "block_time": 1730139090 }, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5", "block_index": 201, - "block_time": 1730116077 + "block_time": 1730139090 } ], "next_cursor": 567, @@ -10520,22 +10613,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "status": "valid", "transfer": false, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5", "tx_index": 68, - "block_time": 1730116077, + "block_time": 1730139090, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "69ee78bee007a890239953e3cdb632551559c7962246b70aada4139bce7445bc", + "tx_hash": "1f813f5c7174efb3a80eb87ac4a5694debf251947ac889b83f4544987ad4a7e5", "block_index": 201, - "block_time": 1730116077 + "block_time": 1730139090 } ], "next_cursor": 568, @@ -10550,12 +10643,12 @@ "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1q9tskteasf2tu4ffdjxjxmzvfr4cyxu8lrhrh88", + "source": "bcrt1qfzzkawxp09ga43vggwgjxa4rrlnkh9vwt0nqge", "status": "valid", "tag": "64657374726f79", - "tx_hash": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c", + "tx_hash": "f7581615776ca9cceecb5482c116c218eab369f2443e471d45cacade6987ffbb", "tx_index": 61, - "block_time": 1730116049, + "block_time": 1730139062, "asset_info": { "divisible": true, "asset_longname": null, @@ -10565,9 +10658,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "dc8da11b3cb51495b4edfbd1422026fba77dfe2064bc8ccc390f27cea4a5323c", + "tx_hash": "f7581615776ca9cceecb5482c116c218eab369f2443e471d45cacade6987ffbb", "block_index": 195, - "block_time": 1730116049 + "block_time": 1730139062 } ], "next_cursor": 157, @@ -10592,11 +10685,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "status": "open", - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "tx_index": 74, - "block_time": 1730116110, + "block_time": 1730139124, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10620,9 +10713,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730139124 } ], "next_cursor": 529, @@ -10640,20 +10733,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", + "tx0_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", "tx0_index": 51, - "tx1_address": "bcrt1q9mnkw9yhl57hkhv7y0fu0pfumvrfn3yyp8qrqu", + "tx1_address": "bcrt1qfm0wye8yxlga7fkxmy7rqlnl7zt3v6uy5helf9", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx1_hash": "8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "tx1_index": 54, - "block_time": 1730116023, + "block_time": 1730139035, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10672,9 +10765,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "3a7d39ad1ad6a4172ce61cc65a69fe3778fbdb0b290b67432401815f41549614", + "tx_hash": "8fbb8e21ccd13de3169970348962d67abec23b387f46decc18634827d6206363", "block_index": 188, - "block_time": 1730116023 + "block_time": 1730139035 } ], "next_cursor": 475, @@ -10687,11 +10780,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878" + "tx_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb" }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730139124 } ], "next_cursor": 521, @@ -10704,11 +10797,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed" + "tx_hash": "0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109" }, - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "777b8db294c20301c6be44567366a7ae2c5f42c92f70002c4a90100213e13d88", "block_index": 187, - "block_time": 1730116019 + "block_time": 1730139032 } ], "next_cursor": null, @@ -10720,13 +10813,13 @@ "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", + "id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", + "order_match_id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", "status": "completed" }, - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "777b8db294c20301c6be44567366a7ae2c5f42c92f70002c4a90100213e13d88", "block_index": 187, - "block_time": 1730116019 + "block_time": 1730139032 } ], "next_cursor": 454, @@ -10740,18 +10833,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "order_match_id": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878_a99229640071f35b85a0da14ddeb88bdd5d79012ef59dfa3cd40591ef72a86ed", - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "destination": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "order_match_id": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb_0c2b02f34bfd235ccab8658c3a2ef4f6215f5dd761604a8089a54f314ecc4109", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "status": "valid", - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "777b8db294c20301c6be44567366a7ae2c5f42c92f70002c4a90100213e13d88", "tx_index": 53, - "block_time": 1730116019, + "block_time": 1730139032, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "6e3f8088f8aad965dff2dd90f9cb4d3dc8f3011165ca35c60f4630ec2e8f69a8", + "tx_hash": "777b8db294c20301c6be44567366a7ae2c5f42c92f70002c4a90100213e13d88", "block_index": 187, - "block_time": 1730116019 + "block_time": 1730139032 } ], "next_cursor": null, @@ -10764,16 +10857,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "08d5e2fddb77a378bba80f4c3ab4c67c074b8c5abfa417c3c4b1627a378f5888", - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "offer_hash": "1ef850048fccd57ed5563510f4f5dac7cfad13dc69f2ada5428f5fe52c58568a", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "status": "valid", - "tx_hash": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603", + "tx_hash": "6fe15c08049a8f5a9d8d40647fdea6088c7fa39f240ce1fc7ddf3720b1806e20", "tx_index": 58, - "block_time": 1730116037 + "block_time": 1730139050 }, - "tx_hash": "398e1c8b6697832f532b50a82baa767e1ff21ccf0f9f81edfca752a3148d5603", + "tx_hash": "6fe15c08049a8f5a9d8d40647fdea6088c7fa39f240ce1fc7ddf3720b1806e20", "block_index": 192, - "block_time": 1730116037 + "block_time": 1730139050 } ], "next_cursor": null, @@ -10786,13 +10879,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 207, - "order_hash": "a70ce7125c42feadb85d92fd31b02c36796f61001b0bdc0b5090381056026878", - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "block_time": 1730116110 + "order_hash": "6651c7af2b3b3ca982cc44fb64ad576df930a3eb1b150e66ae8ee85dfe4af1bb", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "block_time": 1730139124 }, - "tx_hash": "5debab2e96d25f5f52a6be0fbcf653a08b383298b6f153c20b75ade42ba5bba8", + "tx_hash": "99faf2609669146712968aea77a416fbcce596d82a7afe3a291ecbe010115199", "block_index": 207, - "block_time": 1730116110 + "block_time": 1730139124 } ], "next_cursor": 462, @@ -10805,14 +10898,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "8d26642e8ec7569f872b62e6d41b0aeae5b425892bd23645e8f3e30a04544e2f_6bbddda390690d7820de5c32faeba4a02f6c7f315a1a5fdd4cf843aaf4a780b1", - "tx0_address": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "tx1_address": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", - "block_time": 1730115936 + "order_match_id": "0fecf53d73c330e40cd413dfb2484842169fe570d296e3f671996d646335197c_2c9739c4b32a49f1a690d13a7cb87c3d70603a1c26d9b9e702a96442bd657671", + "tx0_address": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "tx1_address": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", + "block_time": 1730138958 }, "tx_hash": null, "block_index": 184, - "block_time": 1730115936 + "block_time": 1730138958 } ], "next_cursor": null, @@ -10831,17 +10924,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "origin": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "satoshirate": 1, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "status": 0, - "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "tx_hash": "d9ebbde4d57e28e43829a23e320e99bd09a0cc05ea6b0c59351e0aee002c241f", "tx_index": 62, - "block_time": 1730116052, + "block_time": 1730139065, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -10850,9 +10943,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "d6012e928d54427c329637a109adda64225eaf42f0ef0d1a063d22a2669a6109", + "tx_hash": "d9ebbde4d57e28e43829a23e320e99bd09a0cc05ea6b0c59351e0aee002c241f", "block_index": 196, - "block_time": 1730116052 + "block_time": 1730139065 } ], "next_cursor": 272, @@ -10867,9 +10960,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "status": 0, - "tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", + "tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", "asset_info": { "divisible": true, "asset_longname": null, @@ -10879,9 +10972,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 560, @@ -10895,13 +10988,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mrTk1ThfTwE2f6PUY5vjkJvga5VgZXf4bk", + "destination": "muiEfYPpvbgzQs92KTRehUaij59RKHzNSo", "dispense_quantity": 10, - "dispenser_tx_hash": "a809a9c0b667c336b61ce3e892a7f2d80231121804f3f7db594da58d9ded5a52", - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", - "tx_hash": "a623caab6512fc5492719029eb7ec34044e6fe307b96362340125090670d3242", + "dispenser_tx_hash": "26ebc0b3d811f899208f2fd859858a2f4c5ffc200c40b4a93bd969c6d36a3b8e", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", + "tx_hash": "9df76050313158d384d2259e1d729943c97dc2ed63ced9beeb2c11b4e00fa430", "tx_index": 31, - "block_time": 1730115837, + "block_time": 1730138846, "asset_info": { "divisible": true, "asset_longname": null, @@ -10911,9 +11004,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "a623caab6512fc5492719029eb7ec34044e6fe307b96362340125090670d3242", + "tx_hash": "9df76050313158d384d2259e1d729943c97dc2ed63ced9beeb2c11b4e00fa430", "block_index": 144, - "block_time": 1730115837 + "block_time": 1730138846 } ], "next_cursor": null, @@ -10928,14 +11021,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qm9gtchu3srk07yrggk3rpgjs47fhzry6guyhsh", + "destination": "bcrt1qsvxfnnzdgm579mjlr7uz43fqh2t7u7r87ldtpj", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "02adba79f48bfc57955b6fca76d5b53a29321a592c4c65def8e0bcfffac60d80", - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "dispenser_tx_hash": "22b115d5d08d8e82e95c1ced1062a952f95dd832297c996ee0cb7342e4b35f4e", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -10946,9 +11039,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 561, @@ -10963,19 +11056,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qhqjqm0x5n2euhf765sq94nrz4zueaflpwqzdvx", + "source": "bcrt1qp3xs5scsevpxl0ttk20k6v0jxfn3v5ym73592j", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "tx_hash": "b62b9151ddb7d171028938e3fa175d44f647c4d938dd939a62f845796c500c47", "tx_index": 25, "value": 66600.0, - "block_time": 1730115814, + "block_time": 1730138821, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "74a1886324b57a0719ac45d0d10c53c94918cec860ff284bc1ed3cba30997dd9", + "tx_hash": "b62b9151ddb7d171028938e3fa175d44f647c4d938dd939a62f845796c500c47", "block_index": 138, - "block_time": 1730115814 + "block_time": 1730138821 } ], "next_cursor": 213, @@ -11006,12 +11099,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "source": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "start_block": 0, "status": "open", - "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_hash": "42a285d407b0482a81904545dacac2ecf78dd87157cdc4ff5c37086b078ee059", "tx_index": 42, - "block_time": 1730115889, + "block_time": 1730138899, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11019,9 +11112,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "88006357feb6d722ac555f43813faee40cd5b557ca1cdfb685624f11d700dffb", + "tx_hash": "42a285d407b0482a81904545dacac2ecf78dd87157cdc4ff5c37086b078ee059", "block_index": 155, - "block_time": 1730115889 + "block_time": 1730138899 } ], "next_cursor": 196, @@ -11034,11 +11127,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "833afe3ce71424c6e84deafd11dbe5306e35a0d2e0b4bd11a1786005c19799dc" + "tx_hash": "484463111a0414fb5c61a2480486d42e52aa4fcb1316ab426dcf72d369af3cc8" }, "tx_hash": null, "block_index": 130, - "block_time": 1730115785 + "block_time": 1730138790 } ], "next_cursor": 110, @@ -11054,17 +11147,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "947f0db1c4b99079a05ff30bb0a26ed8931cc75f9a1318e05d51759325d7fae0", + "fairminter_tx_hash": "29b7175f8cb8f4c4676752ff62c91262d377175a6994145c8fb27e832eadcd98", "paid_quantity": 34, - "source": "bcrt1q55q2qgztdsgax24sh52t0ruakccqrxycr3pvjv", + "source": "bcrt1qajuax22km5787psq6mvjtl6t95945zd974jesy", "status": "valid", - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "cb3f7778d2be0cdafe509a5da15d6a13ccbd7acb72821744a6bd3fc15571b4bd", "tx_index": 23, - "block_time": 1730115808, + "block_time": 1730138813, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, @@ -11072,9 +11165,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "aba1ad35daf84b9876aa9138f056c6e4886dafa558885d98479bf0d5842e2869", + "tx_hash": "cb3f7778d2be0cdafe509a5da15d6a13ccbd7acb72821744a6bd3fc15571b4bd", "block_index": 136, - "block_time": 1730115808 + "block_time": 1730138813 } ], "next_cursor": 190, @@ -11088,28 +11181,28 @@ "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "f703cfe223c19e062e103d02c092a7eeb75f16c14dc6840c066ea940ddab89ed:1", + "destination": "6f1e63822f8db7e05983b10e5eccb809a113ddc5d101ffbf44b9987ff6cbc53e:1", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "source": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen", "status": "valid", - "tx_hash": "f703cfe223c19e062e103d02c092a7eeb75f16c14dc6840c066ea940ddab89ed", + "tx_hash": "6f1e63822f8db7e05983b10e5eccb809a113ddc5d101ffbf44b9987ff6cbc53e", "tx_index": 65, - "block_time": 1730116064, + "block_time": 1730139077, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1ql0x92ewd0u4r2fvw7sxkvd6sduxwn87m7dstkg", + "issuer": "bcrt1qq3eeqxztzyejc9wq4j9f2de726gjj4a6zqdpen", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "f703cfe223c19e062e103d02c092a7eeb75f16c14dc6840c066ea940ddab89ed", + "tx_hash": "6f1e63822f8db7e05983b10e5eccb809a113ddc5d101ffbf44b9987ff6cbc53e", "block_index": 199, - "block_time": 1730116064 + "block_time": 1730139077 } ], "next_cursor": 319, @@ -11123,28 +11216,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qfy4ea38tnlawjr60tt9zxvhh5jmryqy8zqgykz", + "destination": "bcrt1qmpe9apwn620rg688seeaa0u2u4mlmu5w6f3x4x", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "ebdd9911ac289e537ed7c712b293decfb0d690c1b2390873d53383b30979e9c8:0", + "source": "a7551034f9a746afa2c8901b415aea2b7f64f7d6b6a15a1f71c78c6a66c99a84:0", "status": "valid", - "tx_hash": "16c2e31138126762962006973bfedc1ced24b4fc3d41616f4ea36346add19de5", + "tx_hash": "f4b6a4879fbd453a637c6317d28e351780e0bdf59819076f1c14710cf8a1e649", "tx_index": 38, - "block_time": 1730115873, + "block_time": 1730138872, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q3p3cky3prtfgsltsz0xl4x9cyt4h7gs2pftdzr", + "issuer": "bcrt1q40770egq4raqhyf69xs4kc2yme6ratywqymz2c", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "16c2e31138126762962006973bfedc1ced24b4fc3d41616f4ea36346add19de5", + "tx_hash": "f4b6a4879fbd453a637c6317d28e351780e0bdf59819076f1c14710cf8a1e649", "block_index": 151, - "block_time": 1730115873 + "block_time": 1730138872 } ], "next_cursor": null, @@ -11158,14 +11251,14 @@ "params": { "asset": "XCP", "block_index": 208, - "destination": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8:0", + "destination": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67:0", "msg_index": 1, "quantity": 1500000000, - "source": "a5fcd9eb6b92f3840e58492e05215e61940e99afc9283b9151f75b2a768e886e:1", + "source": "e2cc073543776eaaa0a071c0815758e414107b9725087b550a4edb68ad87bc71:1", "status": "valid", - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "tx_index": 75, - "block_time": 1730116123, + "block_time": 1730139139, "asset_info": { "divisible": true, "asset_longname": null, @@ -11175,9 +11268,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "790c03753b8d30c2f4641985af79e8c5ffa5841c8447a7dc9ef4c3fa21f4baf8", + "tx_hash": "46d10a67402725e87f5362ad69a83e0e811546dc74a35b484d0e3378ac534f67", "block_index": 208, - "block_time": 1730116123 + "block_time": 1730139139 } ], "next_cursor": 667, @@ -11192,17 +11285,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qrac7m6sqdzx9h798y52wk0qj5205d7vtqfjyds", + "source": "bcrt1qvvlvuw98tvd8xzd0yrsvzfzhgypmh20dkl87yf", "status": "valid", - "tx_hash": "40efc8e4de6bc24410016279eb759071c80e3ac3ee8fc7a52725555c3f89979e", + "tx_hash": "979d8c9a2ebdf389de52fa1660a98b1137ec6da41c097f2a1b0570a06bb4feba", "tx_index": 9, - "block_time": 1730115749, + "block_time": 1730138755, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "40efc8e4de6bc24410016279eb759071c80e3ac3ee8fc7a52725555c3f89979e", + "tx_hash": "979d8c9a2ebdf389de52fa1660a98b1137ec6da41c097f2a1b0570a06bb4feba", "block_index": 121, - "block_time": 1730115749 + "block_time": 1730138755 } ], "next_cursor": 65, diff --git a/dredd.yml b/dredd.yml index dbebfba882..e657201046 100644 --- a/dredd.yml +++ b/dredd.yml @@ -70,6 +70,7 @@ only: - Addresses > Get Fairminters By Address > Get Fairminters By Address - Addresses > Get Fairmints By Address > Get Fairmints By Address - Addresses > Get Fairmints By Address And Asset > Get Fairmints By Address And Asset +- Utxos > Get Utxo Balances > Get Utxo Balances - Compose > Compose Broadcast > Compose Broadcast - Compose > Compose BTCPay > Compose BTCPay - Compose > Compose Burn > Compose Burn diff --git a/release-notes/release-notes-v10.6.1.md b/release-notes/release-notes-v10.6.1.md index 5cc7739d6c..612061ce0c 100644 --- a/release-notes/release-notes-v10.6.1.md +++ b/release-notes/release-notes-v10.6.1.md @@ -20,6 +20,7 @@ ## API - Added `memos` and `memos_are_hex` parameters to the MPMA compose API. When using MPMA sends, one memo must be provided for each destination if these parameters are used. +- Add `/v2/utxos//balances` route ## CLI From 5dfb7257e35aece183d2ce21c66673827fe5ecdf Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 28 Oct 2024 20:06:22 +0000 Subject: [PATCH 17/23] Don't use UTXOs with balances --- apiary.apib | 4034 +++++++++-------- .../counterpartycore/lib/api/compose.py | 10 + .../counterpartycore/lib/transaction.py | 5 + .../transaction_helper/transaction_inputs.py | 28 +- .../test/fixtures/api_v2_fixtures.json | 126 + .../test/regtest/apidoc/apicache.json | 3586 +++++++-------- .../scenarios/scenario_8_atomicswap.py | 3 + .../scenarios/scenario_last_mempool.py | 16 + .../test/regtest/testscenarios.py | 12 +- release-notes/release-notes-v10.6.1.md | 2 + 10 files changed, 4061 insertions(+), 3761 deletions(-) diff --git a/apiary.apib b/apiary.apib index 55eaa6dfcb..5080aef6f2 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-28 20:15:58.904494. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-28 20:32:34.773096. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 662, "event": "NEW_BLOCK", "params": { - "block_hash": "57df81dd0c83bf7c8d47680b1cc451f7132f2b28ab8a8552d803ee58419522c9", + "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", "block_index": 208, - "block_time": 1730146542, + "block_time": 1730147539, "difficulty": 545259519, - "previous_block_hash": "56ae91d142f683a09d940b258acad4656326d617818b4c9ab8d3e465c7498eb4" + "previous_block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086" }, "tx_hash": null, "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 653, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 663, "event": "NEW_TRANSACTION", "params": { - "block_hash": "57df81dd0c83bf7c8d47680b1cc451f7132f2b28ab8a8552d803ee58419522c9", + "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", "block_index": 208, - "block_time": 1730146542, + "block_time": 1730147539, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "fee": 0, - "source": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "utxos_info": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1 69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 654, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "out_index": 0, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "block_time": 1730146542, + "block_time": 1730147539, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 558, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "af771557f657a58f1e03ab74fddba4ca96cc9f46012fd299261597878446a1fc", - "messages_hash": "5c704de741dd3b8e77f1f0c520f22c961ebc5056011217f7a4fffc52990c919e", + "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", + "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", "transaction_count": 1, - "txlist_hash": "523269ab11d7c7275899631ce241fde1191bc71074618078d9beda622aabebad", - "block_time": 1730146542 + "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", + "block_time": 1730147539 }, "tx_hash": null, "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 661, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75 }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 660, @@ -328,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 208, - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 1500000000, "tx_index": 75, - "utxo": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "utxo_address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", - "block_time": 1730146542, + "utxo": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "utxo_address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -343,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 665, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 669, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "memo": null, "quantity": 1000, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "status": "valid", - "tx_hash": "9291277032ae953a6e14ff3e6a3dbfa85c0c62e03cd8549beaf5a5b0271a0fbd", + "tx_hash": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f", "tx_index": 69, - "block_time": 1730146500, + "block_time": 1730147498, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "9291277032ae953a6e14ff3e6a3dbfa85c0c62e03cd8549beaf5a5b0271a0fbd", + "tx_hash": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f", "block_index": 202, - "block_time": 1730146500 + "block_time": 1730147498 } ], "next_cursor": 498, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 206, - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "status": "valid", - "tx_hash": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "tx_index": 73, - "block_time": 1730146524, + "block_time": 1730147525, "asset_info": { "divisible": true, "asset_longname": null, @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "block_index": 206, - "block_time": 1730146524 + "block_time": 1730147525 } ], "next_cursor": 649, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "status": "valid", - "tx_hash": "2fe44fafe5dc6fed656ee0ae1a3030fee5ac7764531e086c0824911cba33019a", + "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", "tx_index": 60, - "block_time": 1730146454, + "block_time": 1730147463, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "2fe44fafe5dc6fed656ee0ae1a3030fee5ac7764531e086c0824911cba33019a", + "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", "block_index": 194, - "block_time": 1730146454 + "block_time": 1730147463 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "status": "valid", - "tx_hash": "babc61747028dfbe864a00fb10aa36000900c71d17ca5eca8f1f86c160f52548", + "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", "tx_index": 41, - "block_time": 1730146279, + "block_time": 1730147310, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "babc61747028dfbe864a00fb10aa36000900c71d17ca5eca8f1f86c160f52548", + "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", "block_index": 154, - "block_time": 1730146279 + "block_time": 1730147310 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 201, - "block_time": 1730146486 + "block_time": 1730147494 }, - "tx_hash": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567", + "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", "block_index": 201, - "block_time": 1730146486 + "block_time": 1730147494 } ], "next_cursor": 567, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "status": "valid", "transfer": false, - "tx_hash": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567", + "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", "tx_index": 68, - "block_time": 1730146486, + "block_time": 1730147494, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567", + "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", "block_index": 201, - "block_time": 1730146486 + "block_time": 1730147494 } ], "next_cursor": 568, @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "status": "valid", "tag": "64657374726f79", - "tx_hash": "43def1687dbb4eea99088dc74670dda0794297cef98d654356311c8e8f55b79f", + "tx_hash": "5709751e42222eb3fe342e7c1bdb4cfc6f20f4a9eec48c8dd200a08f1b4838bb", "tx_index": 61, - "block_time": 1730146457, + "block_time": 1730147466, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "43def1687dbb4eea99088dc74670dda0794297cef98d654356311c8e8f55b79f", + "tx_hash": "5709751e42222eb3fe342e7c1bdb4cfc6f20f4a9eec48c8dd200a08f1b4838bb", "block_index": 195, - "block_time": 1730146457 + "block_time": 1730147466 } ], "next_cursor": 157, @@ -706,11 +706,11 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "status": "open", - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "tx_index": 74, - "block_time": 1730146529, + "block_time": 1730147530, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -734,9 +734,9 @@ Here is a list of events classified by theme and for each an example response: "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_time": 1730146529 + "block_time": 1730147530 } ], "next_cursor": 529, @@ -759,20 +759,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", + "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", "tx0_index": 51, - "tx1_address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "tx1_address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "tx1_index": 54, - "block_time": 1730146412, + "block_time": 1730147430, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -791,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "tx_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "block_index": 188, - "block_time": 1730146412 + "block_time": 1730147430 } ], "next_cursor": 475, @@ -811,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be" + "tx_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2" }, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_time": 1730146529 + "block_time": 1730147530 } ], "next_cursor": 521, @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4" + "tx_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f" }, - "tx_hash": "85727579c983fd177497804c779ca6842a233390f9e5ffda0e8b8c4b7e31c78e", + "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", "block_index": 187, - "block_time": 1730146408 + "block_time": 1730147427 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", - "order_match_id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", + "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", "status": "completed" }, - "tx_hash": "85727579c983fd177497804c779ca6842a233390f9e5ffda0e8b8c4b7e31c78e", + "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", "block_index": 187, - "block_time": 1730146408 + "block_time": 1730147427 } ], "next_cursor": 454, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "order_match_id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "status": "valid", - "tx_hash": "85727579c983fd177497804c779ca6842a233390f9e5ffda0e8b8c4b7e31c78e", + "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", "tx_index": 53, - "block_time": 1730146408, + "block_time": 1730147427, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "85727579c983fd177497804c779ca6842a233390f9e5ffda0e8b8c4b7e31c78e", + "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", "block_index": 187, - "block_time": 1730146408 + "block_time": 1730147427 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "44cd686fa15d9508241d20e5c7c2c60e8907dd3a651f43acf2b465f65fe3a0b0", - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "offer_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "status": "valid", - "tx_hash": "94cbba7505e891b909a9ad4681d0652ed8677e2f6c6176d66189f53a154d0875", + "tx_hash": "62c09c5f1959d825532f5594282ad39694424a743802d560f520b42aab6c4ee3", "tx_index": 58, - "block_time": 1730146437 + "block_time": 1730147455 }, - "tx_hash": "94cbba7505e891b909a9ad4681d0652ed8677e2f6c6176d66189f53a154d0875", + "tx_hash": "62c09c5f1959d825532f5594282ad39694424a743802d560f520b42aab6c4ee3", "block_index": 192, - "block_time": 1730146437 + "block_time": 1730147455 } ], "next_cursor": null, @@ -935,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 207, - "order_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "block_time": 1730146529 + "order_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_time": 1730147530 }, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_time": 1730146529 + "block_time": 1730147530 } ], "next_cursor": 462, @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72_f00583215a74977d825af48a15ba3115eafcd73029016d7fb72e2b677f982665", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "tx1_address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "block_time": 1730146339 + "order_match_id": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962_9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "block_time": 1730147353 }, "tx_hash": null, "block_index": 184, - "block_time": 1730146339 + "block_time": 1730147353 } ], "next_cursor": null, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "satoshirate": 1, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "status": 0, - "tx_hash": "a84431367d549b443ffdb3837c6f52a401a4649d9bc4c46b51f336351e712cf3", + "tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", "tx_index": 62, - "block_time": 1730146461, + "block_time": 1730147470, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -1011,9 +1011,9 @@ Here is a list of events classified by theme and for each an example response: "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "a84431367d549b443ffdb3837c6f52a401a4649d9bc4c46b51f336351e712cf3", + "tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", "block_index": 196, - "block_time": 1730146461 + "block_time": 1730147470 } ], "next_cursor": 272, @@ -1033,9 +1033,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "status": 0, - "tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 560, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "n3NcfeHqrFcRKSpTX8sSuQd1ukhJSvpgq9", + "destination": "mg2iDq9hHHgarJckVLMgpwt5YE7WjvUVPs", "dispense_quantity": 10, - "dispenser_tx_hash": "b445952967bcc37d4b9c9af9daf910e389b7ba4d19496d3a5ec371392331620b", - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "tx_hash": "8d3d28442c33aa567bb7c60471bedf0f0d7340469170fa9e9ccf6da549fdd04c", + "dispenser_tx_hash": "aa2eb896e9aab9ff1080957160ee3e8e9ccdfe2e0d1487c2aea504a2fbd46ff9", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx_hash": "50b70420fcd4c675beb859a7e474226f70f8b78df85e5fb5b74d596b4d4947d2", "tx_index": 31, - "block_time": 1730146241, + "block_time": 1730147261, "asset_info": { "divisible": true, "asset_longname": null, @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "8d3d28442c33aa567bb7c60471bedf0f0d7340469170fa9e9ccf6da549fdd04c", + "tx_hash": "50b70420fcd4c675beb859a7e474226f70f8b78df85e5fb5b74d596b4d4947d2", "block_index": 144, - "block_time": 1730146241 + "block_time": 1730147261 } ], "next_cursor": null, @@ -1104,14 +1104,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 561, @@ -1146,19 +1146,19 @@ Here is a list of events classified by theme and for each an example response: "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "d93f2f554dff8c8f834a6f3edfcd5675bfd43cadf382fdc3ec07953a491925cf", + "tx_hash": "524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e", "tx_index": 25, "value": 66600.0, - "block_time": 1730146217, + "block_time": 1730147237, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "d93f2f554dff8c8f834a6f3edfcd5675bfd43cadf382fdc3ec07953a491925cf", + "tx_hash": "524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e", "block_index": 138, - "block_time": 1730146217 + "block_time": 1730147237 } ], "next_cursor": 213, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "start_block": 0, "status": "open", - "tx_hash": "adf5bd6deaba6cfeb6ec892a6fd69ba021d135559674853ad7bde8145789e4f9", + "tx_hash": "0998f235a3feba0746e143f431c1f698ca50ae3f8745598a4671168e9c151cef", "tx_index": 42, - "block_time": 1730146283, + "block_time": 1730147313, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "adf5bd6deaba6cfeb6ec892a6fd69ba021d135559674853ad7bde8145789e4f9", + "tx_hash": "0998f235a3feba0746e143f431c1f698ca50ae3f8745598a4671168e9c151cef", "block_index": 155, - "block_time": 1730146283 + "block_time": 1730147313 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "813fabeb4671db0750f64a1def89364f381970217838a1cd7c35859ed53cecf0" + "tx_hash": "ef648a52d64c60ed013aa174ae6a48421d17f923b88d3aba2e05b58ef0c76886" }, "tx_hash": null, "block_index": 130, - "block_time": 1730146186 + "block_time": 1730147206 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "91ab2f030c6b3d93359b217216415696e99d5800a0423a27dd32b8dd72f6b7c1", + "fairminter_tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", "paid_quantity": 34, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "status": "valid", - "tx_hash": "7e828b53dcd7e0b212fa0b15a0cf8a214c551ab1d1c67d4676345eda71be1d6e", + "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", "tx_index": 23, - "block_time": 1730146209, + "block_time": 1730147231, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "7e828b53dcd7e0b212fa0b15a0cf8a214c551ab1d1c67d4676345eda71be1d6e", + "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", "block_index": 136, - "block_time": 1730146209 + "block_time": 1730147231 } ], "next_cursor": 190, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "8bc3e63a71ec60fcf21ba09ddcca7c2b9242bec039d2c1bf0d6727228fc345c3:0", + "destination": "1950deb5128ae4637f94cfc62169527e92eed21f5d5327948f13c8199d4d8aeb:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t", + "source": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", "status": "valid", - "tx_hash": "8bc3e63a71ec60fcf21ba09ddcca7c2b9242bec039d2c1bf0d6727228fc345c3", + "tx_hash": "1950deb5128ae4637f94cfc62169527e92eed21f5d5327948f13c8199d4d8aeb", "tx_index": 65, - "block_time": 1730146472, + "block_time": 1730147482, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t", + "issuer": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "8bc3e63a71ec60fcf21ba09ddcca7c2b9242bec039d2c1bf0d6727228fc345c3", + "tx_hash": "1950deb5128ae4637f94cfc62169527e92eed21f5d5327948f13c8199d4d8aeb", "block_index": 199, - "block_time": 1730146472 + "block_time": 1730147482 } ], "next_cursor": 319, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qcuwkj6w32f4llkdhcht2lhs8xtc3v5424em4lv", + "destination": "bcrt1qcz42hsauvvj7zvqys6awauwvtlxm66sq2gnk5v", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "ada2535c1fa5b9d7e5607c6cca03c5bd0d6d41b80278ddede04442c5a7a7cb8e:0", + "source": "0e342a2ee7897e26da5b3b27ef89ed24cb2f5db944eb6471b2b3b214318205e4:0", "status": "valid", - "tx_hash": "c52bf330fc776175ce2b85ba385389ba68a61372cb37473758c08f8722f42f9d", + "tx_hash": "b9aeb481d6d93a3eee3edaee0438c4e3a7efc7f5f40d59eaa8606c125a6b2d9f", "tx_index": 38, - "block_time": 1730146268, + "block_time": 1730147299, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c52bf330fc776175ce2b85ba385389ba68a61372cb37473758c08f8722f42f9d", + "tx_hash": "b9aeb481d6d93a3eee3edaee0438c4e3a7efc7f5f40d59eaa8606c125a6b2d9f", "block_index": 151, - "block_time": 1730146268 + "block_time": 1730147299 } ], "next_cursor": null, @@ -1375,14 +1375,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 208, - "destination": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "msg_index": 1, "quantity": 1500000000, - "source": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", + "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", "status": "valid", - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -1392,9 +1392,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 667, @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qzyczyf4semgualrm5vymhsyc3vte8uf9stcyug", + "source": "bcrt1qutqyvw6qfn824wrr8kc5u5lhtyml7s9fg92uds", "status": "valid", - "tx_hash": "67b310d4eebe9282c687e3867430c7203d82c1a32dcf143aa3154aed98394481", + "tx_hash": "9e48aa492c822fb8f10573455eaf92d7238d1c56139fd15c3731cd53d0c10e6e", "tx_index": 9, - "block_time": 1730146151, + "block_time": 1730147172, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "67b310d4eebe9282c687e3867430c7203d82c1a32dcf143aa3154aed98394481", + "tx_hash": "9e48aa492c822fb8f10573455eaf92d7238d1c56139fd15c3731cd53d0c10e6e", "block_index": 121, - "block_time": 1730146151 + "block_time": 1730147172 } ], "next_cursor": 65, @@ -1483,61 +1483,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 208, - "block_hash": "57df81dd0c83bf7c8d47680b1cc451f7132f2b28ab8a8552d803ee58419522c9", - "block_time": 1730146542, - "previous_block_hash": "56ae91d142f683a09d940b258acad4656326d617818b4c9ab8d3e465c7498eb4", + "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", + "block_time": 1730147539, + "previous_block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", "difficulty": 545259519, - "ledger_hash": "af771557f657a58f1e03ab74fddba4ca96cc9f46012fd299261597878446a1fc", - "txlist_hash": "523269ab11d7c7275899631ce241fde1191bc71074618078d9beda622aabebad", - "messages_hash": "5c704de741dd3b8e77f1f0c520f22c961ebc5056011217f7a4fffc52990c919e", + "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", + "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", + "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "56ae91d142f683a09d940b258acad4656326d617818b4c9ab8d3e465c7498eb4", - "block_time": 1730146529, - "previous_block_hash": "071fed59eb7bad3d093eab7ea29ceede42014e64cafcd8efb9dbff512ae65ffd", + "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", + "block_time": 1730147530, + "previous_block_hash": "01846b45f3471c31292a5664be521ee633e3113f741f72dafb1bf6543e16d259", "difficulty": 545259519, - "ledger_hash": "5ab2cb84987e793b99ade7732c6b1688882bd1cdf1b3f7c404c5db987ded5d1b", - "txlist_hash": "ec7586785056d9e91ad17f871b07673dfcfae5fbd12bf50cac763f8a35298e13", - "messages_hash": "1f351285ae7106abe2237b6f656b4fae82e2076efe6fcc53d1afba0c2929c104", + "ledger_hash": "ac0e12a27a7095f9b6950e51b5c19d8bb6e9f5f645489c0d4898a3d6afae586a", + "txlist_hash": "6478f1ea88d777dd859ecc2d26434b2b10bd8b347825cca5122f9ac6fac07ec5", + "messages_hash": "0c2fd82e70a9920a39eb3bb2efadb7c20f3f790a86774945f11c49b35278c16b", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "071fed59eb7bad3d093eab7ea29ceede42014e64cafcd8efb9dbff512ae65ffd", - "block_time": 1730146524, - "previous_block_hash": "78f8b04445c886a48dfbe1b373998122c3c90b4233045d27b886f8ecc0541aa0", + "block_hash": "01846b45f3471c31292a5664be521ee633e3113f741f72dafb1bf6543e16d259", + "block_time": 1730147525, + "previous_block_hash": "3873d38f2cf1b4e0638c2afeefa858f06618aa1b2fbcaa8fa43d7beadd77ea33", "difficulty": 545259519, - "ledger_hash": "1122ca78eab140b53322dcfb7f46518bc32e2463ab80906be0f6c8d3c78b6641", - "txlist_hash": "857879f9e3df50de92a96f940cf84c6ec0fabc1e63684a3696cd78854f39b38e", - "messages_hash": "b16456f3a5c656e813a63f0644aac4825e1ae43658d044ad2bc022194ac5fbd0", + "ledger_hash": "7e8b6e3d55a0309fc8f54172602464cfcd4395a6a424927c0056173dfa15467a", + "txlist_hash": "ae305e97a3ca2fee8f6a95d548949e897c1b227625bd653d810b3f769c7d65f9", + "messages_hash": "8aee0249f0e25b26ae34201e5f3afa848a977216ac464bd377708dcffbee612f", "transaction_count": 1, "confirmed": true }, { "block_index": 205, - "block_hash": "78f8b04445c886a48dfbe1b373998122c3c90b4233045d27b886f8ecc0541aa0", - "block_time": 1730146511, - "previous_block_hash": "0f715b69edf13726dc1d1d27b09dddeb5086bae38268ef9456b5d49c6ff906b6", + "block_hash": "3873d38f2cf1b4e0638c2afeefa858f06618aa1b2fbcaa8fa43d7beadd77ea33", + "block_time": 1730147521, + "previous_block_hash": "5d35bb0804bc053ef7d59c9d0c4a9f4bcd4bc52272146001da9b7757c898d039", "difficulty": 545259519, - "ledger_hash": "c8955caef64c282e238c9cec15c574b7fd564ce4cef8ca0ec31ac26b32de04ef", - "txlist_hash": "2a22acc267a5091648b5d0f36f5fd22ed7122c2562dfcea5d8929295a4479852", - "messages_hash": "2b96b7b946634ab1343745a1df563754816018755e0e10bd2fa2ee6e613c7a7b", + "ledger_hash": "e9ce7f40c431517eb719f00dbd6aec19395a35fdf1e169c6577059af09378484", + "txlist_hash": "afe39379f1e509b56e07873f33b98342581f9aaf90e155e2ed9165d469f622d3", + "messages_hash": "72a9b1cd32541e7f93a8eff9b694d19291e09fd9863364ce0ccc6240dac5d3dd", "transaction_count": 1, "confirmed": true }, { "block_index": 204, - "block_hash": "0f715b69edf13726dc1d1d27b09dddeb5086bae38268ef9456b5d49c6ff906b6", - "block_time": 1730146507, - "previous_block_hash": "0475da261e7efed25d02d43383b7aaa9cec5f58046c442761793288877b0a000", + "block_hash": "5d35bb0804bc053ef7d59c9d0c4a9f4bcd4bc52272146001da9b7757c898d039", + "block_time": 1730147517, + "previous_block_hash": "0770bd3567046a0c047163accfc399966280bdbd87644d765df50a5819c333f3", "difficulty": 545259519, - "ledger_hash": "1c33945789447aeef5775d68eb644231699f51daed7d5ee7bd41af7359552534", - "txlist_hash": "640bdfe7ba1b53dfb565367c27749f57b64e9b25a699c0d68f7cd9a3af9d44e1", - "messages_hash": "ab08738e31a2c291129b5ea6093512445cd2d2f6af7e0b3e40177c3daf9b0b56", + "ledger_hash": "1a0c19c4bd1e6608e2e33b517d6fb5ac32212fad8471f74cb0e1e6c5438a15f4", + "txlist_hash": "e66c89aefbfe780c7f0f18a77bf0823ba616f804e47aab1beabca6a84813f602", + "messages_hash": "ea18e0508f4e556ffde5975a7754fc7271808f9f7dbb042adf736443ecdfb7d6", "transaction_count": 1, "confirmed": true } @@ -1574,13 +1574,13 @@ Return the information of a block { "result": { "block_index": 208, - "block_hash": "57df81dd0c83bf7c8d47680b1cc451f7132f2b28ab8a8552d803ee58419522c9", - "block_time": 1730146542, - "previous_block_hash": "56ae91d142f683a09d940b258acad4656326d617818b4c9ab8d3e465c7498eb4", + "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", + "block_time": 1730147539, + "previous_block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", "difficulty": 545259519, - "ledger_hash": "af771557f657a58f1e03ab74fddba4ca96cc9f46012fd299261597878446a1fc", - "txlist_hash": "523269ab11d7c7275899631ce241fde1191bc71074618078d9beda622aabebad", - "messages_hash": "5c704de741dd3b8e77f1f0c520f22c961ebc5056011217f7a4fffc52990c919e", + "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", + "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", + "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `57df81dd0c83bf7c8d47680b1cc451f7132f2b28ab8a8552d803ee58419522c9` (str, required) - The index of the block to return + + block_hash: `4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263` (str, required) - The index of the block to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -1604,13 +1604,13 @@ Return the information of a block { "result": { "block_index": 208, - "block_hash": "57df81dd0c83bf7c8d47680b1cc451f7132f2b28ab8a8552d803ee58419522c9", - "block_time": 1730146542, - "previous_block_hash": "56ae91d142f683a09d940b258acad4656326d617818b4c9ab8d3e465c7498eb4", + "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", + "block_time": 1730147539, + "previous_block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", "difficulty": 545259519, - "ledger_hash": "af771557f657a58f1e03ab74fddba4ca96cc9f46012fd299261597878446a1fc", - "txlist_hash": "523269ab11d7c7275899631ce241fde1191bc71074618078d9beda622aabebad", - "messages_hash": "5c704de741dd3b8e77f1f0c520f22c961ebc5056011217f7a4fffc52990c919e", + "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", + "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", + "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", "transaction_count": 1, "confirmed": true } @@ -1641,17 +1641,17 @@ Returns the transactions of a block "result": [ { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_hash": "57df81dd0c83bf7c8d47680b1cc451f7132f2b28ab8a8552d803ee58419522c9", - "block_time": 1730146542, - "source": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", - "destination": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", + "block_time": 1730147539, + "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1 69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1697,11 +1697,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "af771557f657a58f1e03ab74fddba4ca96cc9f46012fd299261597878446a1fc", - "messages_hash": "5c704de741dd3b8e77f1f0c520f22c961ebc5056011217f7a4fffc52990c919e", + "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", + "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", "transaction_count": 1, - "txlist_hash": "523269ab11d7c7275899631ce241fde1191bc71074618078d9beda622aabebad", - "block_time": 1730146542 + "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", + "block_time": 1730147539 }, "tx_hash": null }, @@ -1710,10 +1710,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75 }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d" + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" }, { "event_index": 673, @@ -1722,14 +1722,14 @@ Returns the events of a block "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -1740,7 +1740,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d" + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" }, { "event_index": 672, @@ -1749,9 +1749,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "status": 0, - "tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "asset_info": { "divisible": true, "asset_longname": null, @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d" + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -1786,7 +1786,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d" + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" } ], "next_cursor": 670, @@ -1869,16 +1869,16 @@ Returns the events of a block filtered by event "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,7 +1888,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d" + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" }, { "event_index": 669, @@ -1898,12 +1898,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 1500000000, "tx_index": 75, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "block_time": 1730146542, + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -1913,7 +1913,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d" + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" }, { "event_index": 666, @@ -1923,22 +1923,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 1500000000, "tx_index": 75, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "block_time": 1730146542, + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_time": 1730147539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d" + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" } ], "next_cursor": null, @@ -2001,16 +2001,16 @@ Returns the credits of a block "result": [ { "block_index": 208, - "address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,12 +2026,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -2047,16 +2047,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -2116,12 +2116,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "utxo": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "utxo_address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "utxo": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "utxo_address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -2137,16 +2137,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "utxo": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "utxo_address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "utxo": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "utxo_address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", + "object_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", "block_index": 207, "confirmed": true, - "block_time": 1730146529 + "block_time": 1730147530 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 58, - "tx_hash": "94cbba7505e891b909a9ad4681d0652ed8677e2f6c6176d66189f53a154d0875", + "tx_hash": "62c09c5f1959d825532f5594282ad39694424a743802d560f520b42aab6c4ee3", "block_index": 192, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "offer_hash": "44cd686fa15d9508241d20e5c7c2c60e8907dd3a651f43acf2b465f65fe3a0b0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "offer_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", "status": "valid", "confirmed": true, - "block_time": 1730146437 + "block_time": 1730147455 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 61, - "tx_hash": "43def1687dbb4eea99088dc74670dda0794297cef98d654356311c8e8f55b79f", + "tx_hash": "5709751e42222eb3fe342e7c1bdb4cfc6f20f4a9eec48c8dd200a08f1b4838bb", "block_index": 195, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730146457, + "block_time": 1730147466, "asset_info": { "divisible": true, "asset_longname": null, @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 68, - "tx_hash": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567", + "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730146486, + "block_time": 1730147494, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "destination": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "destination": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 75, "dispense_index": 0, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "destination": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "last_status_tx_hash": null, - "origin": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 60, - "tx_hash": "2fe44fafe5dc6fed656ee0ae1a3030fee5ac7764531e086c0824911cba33019a", + "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", "block_index": 194, - "source": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730146454, + "block_time": 1730147463, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "adf5bd6deaba6cfeb6ec892a6fd69ba021d135559674853ad7bde8145789e4f9", + "tx_hash": "0998f235a3feba0746e143f431c1f698ca50ae3f8745598a4671168e9c151cef", "tx_index": 42, "block_index": 155, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730146283, + "block_time": 1730147313, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "7e828b53dcd7e0b212fa0b15a0cf8a214c551ab1d1c67d4676345eda71be1d6e", + "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "91ab2f030c6b3d93359b217216415696e99d5800a0423a27dd32b8dd72f6b7c1", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146209, + "block_time": 1730147231, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -2692,17 +2692,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "d93f2f554dff8c8f834a6f3edfcd5675bfd43cadf382fdc3ec07953a491925cf", + "tx_hash": "524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e", "block_index": 138, - "block_hash": "037531acd511d2102e2690aa856d5513a4d6799fdaa5ab56172b68f66c506506", - "block_time": 1730146217, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "block_hash": "2fcbf18cc3dfb9a5825aae833f64a2024408a3814194e101ae2bb408df9068b3", + "block_time": 1730147237, + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "d93f2f554dff8c8f834a6f3edfcd5675bfd43cadf382fdc3ec07953a491925cf:1", + "utxos_info": "524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2727,25 +2727,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "85727579c983fd177497804c779ca6842a233390f9e5ffda0e8b8c4b7e31c78e", + "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", "block_index": 187, - "block_hash": "20c1f07b4504c95d42db0bc0f02d8e591201499b6b784a8e81a317c12f7c5ccf", - "block_time": 1730146408, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "23585706865636328db1867229f8ab3fce048f7e7cc6f7bd4f806a1bc4836686", + "block_time": 1730147427, + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "btc_amount": 2000, "fee": 10000, - "data": "0bd0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", + "data": "0b99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da248c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", "supported": true, - "utxos_info": "85727579c983fd177497804c779ca6842a233390f9e5ffda0e8b8c4b7e31c78e:0", + "utxos_info": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "tx1_hash": "3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", - "order_match_id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", + "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx1_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", "status": "valid" } }, @@ -2760,23 +2760,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "94cbba7505e891b909a9ad4681d0652ed8677e2f6c6176d66189f53a154d0875", + "tx_hash": "62c09c5f1959d825532f5594282ad39694424a743802d560f520b42aab6c4ee3", "block_index": 192, - "block_hash": "5c6a44cbc7c56324c750acc370adae3b06400b60697fa5985853d15af4e08e98", - "block_time": 1730146437, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "45223d15b17b80bb872fad71cae6d8df005a80474e6de4960ee4761dca87edd8", + "block_time": 1730147455, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "4644cd686fa15d9508241d20e5c7c2c60e8907dd3a651f43acf2b465f65fe3a0b0", + "data": "46db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", "supported": true, - "utxos_info": "94cbba7505e891b909a9ad4681d0652ed8677e2f6c6176d66189f53a154d0875:1", + "utxos_info": "62c09c5f1959d825532f5594282ad39694424a743802d560f520b42aab6c4ee3:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "44cd686fa15d9508241d20e5c7c2c60e8907dd3a651f43acf2b465f65fe3a0b0", + "offer_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", "status": "valid" } }, @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "43def1687dbb4eea99088dc74670dda0794297cef98d654356311c8e8f55b79f", + "tx_hash": "5709751e42222eb3fe342e7c1bdb4cfc6f20f4a9eec48c8dd200a08f1b4838bb", "block_index": 195, - "block_hash": "636d7f219ae37347fed21218f8a6b2fe2dd3a403b5a37cc9cd10cba1367d095f", - "block_time": 1730146457, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "block_hash": "149a5a5c81d63887c370638f94421cf6b9971b309477a96e64bc2a7dd993e523", + "block_time": 1730147466, + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "43def1687dbb4eea99088dc74670dda0794297cef98d654356311c8e8f55b79f:1", + "utxos_info": "5709751e42222eb3fe342e7c1bdb4cfc6f20f4a9eec48c8dd200a08f1b4838bb:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2831,17 +2831,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "a84431367d549b443ffdb3837c6f52a401a4649d9bc4c46b51f336351e712cf3", + "tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", "block_index": 196, - "block_hash": "38e7dd19eba5c30d71ef4d80fcf269ef92c80e2ba72eff2bb80eef6373566114", - "block_time": 1730146461, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "6e3f5a8eed6443bc7d99d746c295abf249770c8fbdd357caa7d9ebccce09ac62", + "block_time": 1730147470, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "a84431367d549b443ffdb3837c6f52a401a4649d9bc4c46b51f336351e712cf3:1", + "utxos_info": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2858,7 +2858,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -2877,17 +2877,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_hash": "57df81dd0c83bf7c8d47680b1cc451f7132f2b28ab8a8552d803ee58419522c9", - "block_time": 1730146542, - "source": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", - "destination": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", + "block_time": 1730147539, + "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1 69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2907,17 +2907,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "babc61747028dfbe864a00fb10aa36000900c71d17ca5eca8f1f86c160f52548", + "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", "block_index": 154, - "block_hash": "243cdd804b5938b203c1834461474227c094b011265d02bf72116d3068204273", - "block_time": 1730146279, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "3f4f9e8300085157088d9a038ad9b190f095d7e07a51838e883f106cc5392f3c", + "block_time": 1730147310, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "babc61747028dfbe864a00fb10aa36000900c71d17ca5eca8f1f86c160f52548:1", + "utxos_info": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2930,7 +2930,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -2955,17 +2955,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 68, - "tx_hash": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567", + "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", "block_index": 201, - "block_hash": "4bc9890a02562ad915e6473ffb15c6fa4b3e5b02801aa2a7c642246859efc3a8", - "block_time": 1730146486, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "7156384707e1643c99729bcff455e508cc134e75ff200fe29f1138d04e3ffe6b", + "block_time": 1730147494, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567:1", + "utxos_info": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2997,17 +2997,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 74, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_hash": "56ae91d142f683a09d940b258acad4656326d617818b4c9ab8d3e465c7498eb4", - "block_time": 1730146529, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", + "block_time": 1730147530, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159:1", + "utxos_info": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3050,17 +3050,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 69, - "tx_hash": "9291277032ae953a6e14ff3e6a3dbfa85c0c62e03cd8549beaf5a5b0271a0fbd", + "tx_hash": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f", "block_index": 202, - "block_hash": "0dcbc84c2d95109090eb22746a665b5439533041aeecb240621cbb17fa7f68d2", - "block_time": 1730146500, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "5b62183f865f9122b0b1823726656c462dab8e5c45823a9c43b72ce9ce1bdbde", + "block_time": 1730147498, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d4c77d66fa0fdd86114939522fe26fb4007aa23e", + "data": "02000000178d82231300000000000003e880d2621d21756eb8ebb22ce432b26450ae670d208f", "supported": true, - "utxos_info": "9291277032ae953a6e14ff3e6a3dbfa85c0c62e03cd8549beaf5a5b0271a0fbd:1", + "utxos_info": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3068,12 +3068,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -3091,17 +3091,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 73, - "tx_hash": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "block_index": 206, - "block_hash": "071fed59eb7bad3d093eab7ea29ceede42014e64cafcd8efb9dbff512ae65ffd", - "block_time": 1730146524, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "block_hash": "01846b45f3471c31292a5664be521ee633e3113f741f72dafb1bf6543e16d259", + "block_time": 1730147525, + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380797d6ec17db07615f16099cd8ba63f5d8ef19e26803c5b324bad0b5d20f0f3f24368314a7712e336558029cd5d950d66789a5d1f7d02a448584db013a75d88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380527fc786dce354681ff9800bc9b06a2a44fd524e803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2088746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a:0", + "utxos_info": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3109,14 +3109,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -3124,7 +3124,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3150,23 +3150,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 60, - "tx_hash": "2fe44fafe5dc6fed656ee0ae1a3030fee5ac7764531e086c0824911cba33019a", + "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", "block_index": 194, - "block_hash": "51739c5c104b97f556458c39a8bd6a5eab6b84ed2e8c1d455fcb52e1ed12fe90", - "block_time": 1730146454, - "source": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "block_hash": "1bf0c1bee7bbbd597e29e168bc4980a54e46c17cf49aaac2dc48ed76345357d7", + "block_time": 1730147463, + "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "048029cd5d950d66789a5d1f7d02a448584db013a75d017377656570206d7920617373657473", + "data": "0480e8357d02fbc701ab928c73d7d2cfcd62d7dd2c20017377656570206d7920617373657473", "supported": true, - "utxos_info": "2fe44fafe5dc6fed656ee0ae1a3030fee5ac7764531e086c0824911cba33019a:1", + "utxos_info": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "flags": 1, "memo": "sweep my assets" } @@ -3199,17 +3199,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_hash": "57df81dd0c83bf7c8d47680b1cc451f7132f2b28ab8a8552d803ee58419522c9", - "block_time": 1730146542, - "source": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", - "destination": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", + "block_time": 1730147539, + "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1 69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3222,17 +3222,17 @@ Returns the list of the last ten transactions }, { "tx_index": 74, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_hash": "56ae91d142f683a09d940b258acad4656326d617818b4c9ab8d3e465c7498eb4", - "block_time": 1730146529, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", + "block_time": 1730147530, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159:1", + "utxos_info": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3277,7 +3277,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001018bd2e6a22d07b0d9e157e44c8299644d758c83305c565beb4657a7ad6ce9237e0000000000ffffffff020000000000000000356a3387b6ed65e93b8986345c7aa741b22b101d4852ca862222197cf2b7f676f9904dfdcbbff01847f072bc43bb362dcafd4f4f4d35f0ca052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26024730440220526060e8b142fd6aa3b387d53335a4184613711ad9f08ac7dd87257130e182e8022011fa19fa5995cc901f2d7759e1804843324fc4aca75ede11899865dac09663da0121027036d44abfb4df852f3c4f59791560960703a4b1f71c106e783ddc73b38059fb00000000` (str, required) - Raw transaction in hex format + + rawtransaction: `0200000000010603eb7b2120bd3de02c1ad129d11a48c9acb377c6b0bd799813367fdd1f7c81450000000000ffffffff529e0c801ebb4d5203b89593cfc4a5b0fd302cfdfa29d31283cd1a8ebd5b654b0000000000ffffffff716491af6c6b1530054e03b9887305dbb982136f0e42b61c148706e10e0845010000000000ffffffff181a23460a56059dffe405360c4c1d35cb503f5ff0452f951ae0ba63213ba7320000000000ffffffffc0a6cb160237308a59dacf6f68a88f6e33e6446b653dc48f2bb8b6b813ebc6dc0000000000ffffffffd7153b6c88b84e9727c746dde7931bd12b0aec2662aaa32f7bc4475ba0bf6f560000000000ffffffff04e80300000000000069512102a643a4ff08f7a6ce081b9dc80ce7fa92204726be3ebc2f811acf90796fec6f442102f1ca1cbe98a71273ada4d14ac84876c0836317d039e09f02327fe9039d5ccdf6210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53aee80300000000000069512103a643a4ff08f7a6ce08b30f47ffe24a40cc509fdbf92e436528781749494fb61b2102d1459c87e879e0276d54d9ee522df9c3ffa89834974657efbf27fb32e69bcc80210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53aee803000000000000695121028743a4ff08f7a6ce08189dcb8c35188f01324806d50e574e43569f50498b62902103d1459c87e879e00d78e14c5beee7f9c3ffa89834974cd282da4a9401669bcc52210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53ae387923fc06000000160014527fc786dce354681ff9800bc9b06a2a44fd524e0247304402205f607226f87467d9ec99d07b2f55dca3fffec5fc4d34c9f2ee59070647283ddf02206a84273f17748ce50a9f104d91930e73cd83019a7310686eb0574872c561849e01210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e024730440220609c34c72ed9688a6f65d72931ebe50a4d29109849b0fe9fbe5380d10e3ead8202202bf1098796b3f9f861c2cf1eb7324c1763cc389124c689c69b4bf94ae4b58b6f01210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e02473044022064bbc765ae9fe2d806b9262233fb449ea9cdc556c76949ce7f3d12ea56a3c81002204dfd87424d79f8a8e2c2d047a9cb23d691558f4421b6a1f5f09221299b8f08c301210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e0247304402205189c0231cd313bc7ec75614a27a36f6520bb3c742bbbf6a775cba4e7d58493a022054b4de7fa2f5d055ebb233f3cb97b8077d6dfbee126f4ed11c2192161d2ebb3b01210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e024730440220189421cb50e385ebbb4145f1a0009e2ed115d40c2dde5db9c7ac72bed9ca21ea02207d39b7fd0b1614cbfb4857609e9463fcd27979aefccc1047789c20dcf52063ef01210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e0247304402202d5d65b9c03c396247bea5a3e975d1c6cec94d7da3b6d950c4bf5607f60fb2e30220680f965ae329cbc74e57466d61af9af750b3be686f8c27a5ee9c1cbb30808d7c01210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e00000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -3290,18 +3290,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "03000380d2621d21756eb8ebb22ce432b26450ae670d208f803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2040000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "8bd2e6a22d07b0d9e157e44c8299644d758c83305c565beb4657a7ad6ce9237e", + "hash": "03eb7b2120bd3de02c1ad129d11a48c9acb377c6b0bd799813367fdd1f7c8145", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "529e0c801ebb4d5203b89593cfc4a5b0fd302cfdfa29d31283cd1a8ebd5b654b", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "716491af6c6b1530054e03b9887305dbb982136f0e42b61c148706e10e084501", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "181a23460a56059dffe405360c4c1d35cb503f5ff0452f951ae0ba63213ba732", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "c0a6cb160237308a59dacf6f68a88f6e33e6446b653dc48f2bb8b6b813ebc6dc", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "d7153b6c88b84e9727c746dde7931bd12b0aec2662aaa32f7bc4475ba0bf6f56", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3310,51 +3345,75 @@ Returns Counterparty information from a raw transaction in hex format. ], "vout": [ { - "value": 0, - "script_pub_key": "6a3387b6ed65e93b8986345c7aa741b22b101d4852ca862222197cf2b7f676f9904dfdcbbff01847f072bc43bb362dcafd4f4f4d35" + "value": 1000, + "script_pub_key": "512102a643a4ff08f7a6ce081b9dc80ce7fa92204726be3ebc2f811acf90796fec6f442102f1ca1cbe98a71273ada4d14ac84876c0836317d039e09f02327fe9039d5ccdf6210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53ae" + }, + { + "value": 1000, + "script_pub_key": "512103a643a4ff08f7a6ce08b30f47ffe24a40cc509fdbf92e436528781749494fb61b2102d1459c87e879e0276d54d9ee522df9c3ffa89834974657efbf27fb32e69bcc80210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53ae" }, { - "value": 4999990000, - "script_pub_key": "0014797d6ec17db07615f16099cd8ba63f5d8ef19e26" + "value": 1000, + "script_pub_key": "5121028743a4ff08f7a6ce08189dcb8c35188f01324806d50e574e43569f50498b62902103d1459c87e879e00d78e14c5beee7f9c3ffa89834974cd282da4a9401669bcc52210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53ae" + }, + { + "value": 29999987000, + "script_pub_key": "0014527fc786dce354681ff9800bc9b06a2a44fd524e" } ], "vtxinwit": [ - "30440220526060e8b142fd6aa3b387d53335a4184613711ad9f08ac7dd87257130e182e8022011fa19fa5995cc901f2d7759e1804843324fc4aca75ede11899865dac09663da01", - "027036d44abfb4df852f3c4f59791560960703a4b1f71c106e783ddc73b38059fb" + "304402205f607226f87467d9ec99d07b2f55dca3fffec5fc4d34c9f2ee59070647283ddf02206a84273f17748ce50a9f104d91930e73cd83019a7310686eb0574872c561849e01", + "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e", + "30440220609c34c72ed9688a6f65d72931ebe50a4d29109849b0fe9fbe5380d10e3ead8202202bf1098796b3f9f861c2cf1eb7324c1763cc389124c689c69b4bf94ae4b58b6f01", + "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e", + "3044022064bbc765ae9fe2d806b9262233fb449ea9cdc556c76949ce7f3d12ea56a3c81002204dfd87424d79f8a8e2c2d047a9cb23d691558f4421b6a1f5f09221299b8f08c301", + "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e", + "304402205189c0231cd313bc7ec75614a27a36f6520bb3c742bbbf6a775cba4e7d58493a022054b4de7fa2f5d055ebb233f3cb97b8077d6dfbee126f4ed11c2192161d2ebb3b01", + "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e", + "30440220189421cb50e385ebbb4145f1a0009e2ed115d40c2dde5db9c7ac72bed9ca21ea02207d39b7fd0b1614cbfb4857609e9463fcd27979aefccc1047789c20dcf52063ef01", + "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e", + "304402202d5d65b9c03c396247bea5a3e975d1c6cec94d7da3b6d950c4bf5607f60fb2e30220680f965ae329cbc74e57466d61af9af750b3be686f8c27a5ee9c1cbb30808d7c01", + "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e" ], "lock_time": 0, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", - "tx_id": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159" + "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "tx_id": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767" }, "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "quantity": 10, + "memo": "memo2", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } + { + "asset": "XCP", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "quantity": 10, + "memo": "memo1", + "memo_is_hex": false, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] }, "btc_amount_normalized": "0.00000000" } @@ -3366,7 +3425,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7` (str, required) - Transaction hash + + tx_hash: `46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4` (str, required) - Transaction hash + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3377,18 +3436,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710803c5b324bad0b5d20f0f3f24368314a7712e33655", + "data": "0200000000000000010000000000002710803970def27ed5459d1126af8f037ccb8fe4aeac4d", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "559640c9921bb2c96f2d0a09eac7cdbd4d88102fa3bec6b04e2040850c099b0a", + "hash": "8d4bef92b931a1c06d6bab5395537943d4218a8c17b832cf1f27c4b5d26ca3f1", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3398,20 +3457,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2ebf9f191654c9ea4ef5b671e626c10fbe1545ebad7c38b0e9c6fc94e101253d96b51ae96768f93fdf8082cdf61c74" + "script_pub_key": "6a2ecd2b19017aed9c5dec4f390093b39dd1f0ec75729a5e5c59cf26a61505a3042769517cf7e577fb7d37c37417c0e4" }, { "value": 4999970000, - "script_pub_key": "001429cd5d950d66789a5d1f7d02a448584db013a75d" + "script_pub_key": "0014e8357d02fbc701ab928c73d7d2cfcd62d7dd2c20" } ], "vtxinwit": [ - "304402204574515467ae18de404ff3768b6ec3bf972681bf325c17c6771cb62a9df2517702202e85f3dbcbe0e38ae45919cd7871d13bcc707909672a92408cfb031e676bd31301", - "03473fcf2505338e252e6cf65a0b9aa2352e6ae98dd95a616107b2eb92edfe7c9e" + "30440220692dde2e060e2cc05bae5e602158bf81c34d18f821fe613e16e0dbed4383928502206d827185874c9b7639ffc09756d99f2517e843c8769bf32d809dab219ee44bb301", + "03d019ffa6402ee701cc2792ac17105aa83f73c2941f477e20277c2d2132d0bb7a" ], "lock_time": 0, - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", - "tx_id": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7" + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_id": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3419,7 +3478,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "memo": null, "asset_info": { "divisible": true, @@ -3480,17 +3539,17 @@ Returns a transaction by its index. { "result": { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_hash": "57df81dd0c83bf7c8d47680b1cc451f7132f2b28ab8a8552d803ee58419522c9", - "block_time": 1730146542, - "source": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", - "destination": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", + "block_time": 1730147539, + "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1 69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3509,7 +3568,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d` (str, required) - The hash of the transaction + + tx_hash: `39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2` (str, required) - The hash of the transaction + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3521,17 +3580,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_hash": "57df81dd0c83bf7c8d47680b1cc451f7132f2b28ab8a8552d803ee58419522c9", - "block_time": 1730146542, - "source": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", - "destination": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", + "block_time": 1730147539, + "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1 69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3574,12 +3633,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75 }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 673, @@ -3588,14 +3647,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -3606,9 +3665,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 672, @@ -3617,9 +3676,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "status": 0, - "tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "asset_info": { "divisible": true, "asset_longname": null, @@ -3629,24 +3688,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -3656,9 +3715,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 670, @@ -3666,14 +3725,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 208, - "destination": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "msg_index": 1, "quantity": 1500000000, - "source": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", + "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", "status": "valid", - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -3683,9 +3742,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 669, @@ -3698,7 +3757,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d` (str, required) - The hash of the transaction to return + + tx_hash: `39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `675` (str, optional) - The last event index to return @@ -3722,12 +3781,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75 }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 673, @@ -3736,14 +3795,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -3754,9 +3813,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 672, @@ -3765,9 +3824,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "status": 0, - "tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "asset_info": { "divisible": true, "asset_longname": null, @@ -3777,24 +3836,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -3804,9 +3863,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 670, @@ -3814,14 +3873,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 208, - "destination": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "msg_index": 1, "quantity": 1500000000, - "source": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", + "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", "status": "valid", - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -3831,9 +3890,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 669, @@ -3846,7 +3905,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d` (str, required) - The hash of the transaction to return + + tx_hash: `39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2` (str, required) - The hash of the transaction to return + cursor (str, optional) - The last index of the debits to return + Default: `None` + limit: `5` (int, optional) - The maximum number of debits to return @@ -3865,10 +3924,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "destination": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3876,7 +3935,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -3889,10 +3948,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "destination": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3900,11 +3959,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -3922,7 +3981,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d` (str, required) - The hash of the transaction to return + + tx_hash: `39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2` (str, required) - The hash of the transaction to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -3942,27 +4001,27 @@ Returns the dispenses of a block { "tx_index": 75, "dispense_index": 0, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "destination": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "last_status_tx_hash": null, - "origin": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3977,7 +4036,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -4021,16 +4080,16 @@ Returns the events of a transaction "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -4040,9 +4099,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 669, @@ -4052,12 +4111,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 1500000000, "tx_index": 75, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "block_time": 1730146542, + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -4067,9 +4126,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 666, @@ -4079,24 +4138,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 1500000000, "tx_index": 75, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "block_time": 1730146542, + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_time": 1730147539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": null, @@ -4109,7 +4168,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d` (str, required) - The hash of the transaction to return + + tx_hash: `39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `675` (str, optional) - The last event index to return + Default: `None` @@ -4131,16 +4190,16 @@ Returns the events of a transaction "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -4150,9 +4209,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 669, @@ -4162,12 +4221,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 1500000000, "tx_index": 75, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "block_time": 1730146542, + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -4177,9 +4236,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 666, @@ -4189,24 +4248,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 1500000000, "tx_index": 75, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "block_time": 1730146542, + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_time": 1730147539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": null, @@ -4221,7 +4280,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0,bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m,bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - Comma separated list of addresses + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -4245,7 +4304,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4255,7 +4314,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4266,7 +4325,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4276,7 +4335,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4287,7 +4346,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4297,7 +4356,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4308,7 +4367,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4318,7 +4377,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4329,7 +4388,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4339,7 +4398,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4350,7 +4409,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4360,7 +4419,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4377,7 +4436,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0,bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m,bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - Comma separated list of addresses to return + cursor: `75` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4396,17 +4455,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 74, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_hash": "56ae91d142f683a09d940b258acad4656326d617818b4c9ab8d3e465c7498eb4", - "block_time": 1730146529, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", + "block_time": 1730147530, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159:1", + "utxos_info": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4442,17 +4501,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 73, - "tx_hash": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "block_index": 206, - "block_hash": "071fed59eb7bad3d093eab7ea29ceede42014e64cafcd8efb9dbff512ae65ffd", - "block_time": 1730146524, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "block_hash": "01846b45f3471c31292a5664be521ee633e3113f741f72dafb1bf6543e16d259", + "block_time": 1730147525, + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380797d6ec17db07615f16099cd8ba63f5d8ef19e26803c5b324bad0b5d20f0f3f24368314a7712e336558029cd5d950d66789a5d1f7d02a448584db013a75d88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380527fc786dce354681ff9800bc9b06a2a44fd524e803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2088746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a:0", + "utxos_info": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4460,14 +4519,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4475,7 +4534,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4494,17 +4553,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 72, - "tx_hash": "bf6dc611418389c02104fbc5a96daaf298072b3687afde41b544e177672f36bd", + "tx_hash": "4f72d5bee6053f9591d332772cf67ec1874d67118be7049fac7da1ed5b6f83b8", "block_index": 205, - "block_hash": "78f8b04445c886a48dfbe1b373998122c3c90b4233045d27b886f8ecc0541aa0", - "block_time": 1730146511, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "block_hash": "3873d38f2cf1b4e0638c2afeefa858f06618aa1b2fbcaa8fa43d7beadd77ea33", + "block_time": 1730147521, + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380797d6ec17db07615f16099cd8ba63f5d8ef19e26803c5b324bad0b5d20f0f3f24368314a7712e336558029cd5d950d66789a5d1f7d02a448584db013a75dc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380527fc786dce354681ff9800bc9b06a2a44fd524e803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c20c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "bf6dc611418389c02104fbc5a96daaf298072b3687afde41b544e177672f36bd:0", + "utxos_info": "4f72d5bee6053f9591d332772cf67ec1874d67118be7049fac7da1ed5b6f83b8:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4512,14 +4571,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4527,7 +4586,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4546,17 +4605,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 71, - "tx_hash": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "block_index": 204, - "block_hash": "0f715b69edf13726dc1d1d27b09dddeb5086bae38268ef9456b5d49c6ff906b6", - "block_time": 1730146507, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "5d35bb0804bc053ef7d59c9d0c4a9f4bcd4bc52272146001da9b7757c898d039", + "block_time": 1730147517, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d4c77d66fa0fdd86114939522fe26fb4007aa23e803c5b324bad0b5d20f0f3f24368314a7712e336558029cd5d950d66789a5d1f7d02a448584db013a75d40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d2621d21756eb8ebb22ce432b26450ae670d208f803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2040000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5:0", + "utxos_info": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4564,14 +4623,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4579,7 +4638,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4598,17 +4657,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 70, - "tx_hash": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14", + "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", "block_index": 203, - "block_hash": "0475da261e7efed25d02d43383b7aaa9cec5f58046c442761793288877b0a000", - "block_time": 1730146503, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "0770bd3567046a0c047163accfc399966280bdbd87644d765df50a5819c333f3", + "block_time": 1730147502, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d4c77d66fa0fdd86114939522fe26fb4007aa23e803c5b324bad0b5d20f0f3f24368314a7712e336558029cd5d950d66789a5d1f7d02a448584db013a75d88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d2621d21756eb8ebb22ce432b26450ae670d208f803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2088746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14:0", + "utxos_info": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4616,14 +4675,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4631,7 +4690,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4659,7 +4718,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0,bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m,bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `675` (str, optional) - The last event index to return @@ -4695,11 +4754,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "status": "open", - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "tx_index": 74, - "block_time": 1730146529, + "block_time": 1730147530, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4723,24 +4782,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_time": 1730146529 + "block_time": 1730147530 }, { "event_index": 658, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "block_index": 207, - "event": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "event": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "quantity": 1000, "tx_index": 74, "utxo": null, "utxo_address": null, - "block_time": 1730146529, + "block_time": 1730147530, "asset_info": { "divisible": true, "asset_longname": null, @@ -4750,37 +4809,37 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_time": 1730146529 + "block_time": 1730147530 }, { "event_index": 657, "event": "ORDER_EXPIRATION", "params": { "block_index": 207, - "order_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "block_time": 1730146529 + "order_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_time": 1730147530 }, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_time": 1730146529 + "block_time": 1730147530 }, { "event_index": 656, "event": "CREDIT", "params": { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "block_index": 207, "calling_function": "cancel order", - "event": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", + "event": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730146529, + "block_time": 1730147530, "asset_info": { "divisible": true, "asset_longname": null, @@ -4790,25 +4849,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00005000" }, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_time": 1730146529 + "block_time": 1730147530 }, { "event_index": 654, "event": "NEW_TRANSACTION", "params": { - "block_hash": "56ae91d142f683a09d940b258acad4656326d617818b4c9ab8d3e465c7498eb4", + "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", "block_index": 207, - "block_time": 1730146529, + "block_time": 1730147530, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "tx_index": 74, - "utxos_info": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159:1", + "utxos_info": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4840,9 +4899,9 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_time": 1730146529 + "block_time": 1730147530 } ], "next_cursor": 650, @@ -4855,7 +4914,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx,bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0,bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm` (str, required) - Comma separated list of addresses to return + cursor (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return @@ -4871,17 +4930,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "memo": null, "quantity": 10000, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "status": "valid", - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "tx_index": 76, "asset_info": { "divisible": true, @@ -4892,22 +4951,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "CREDIT", "params": { - "address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -4917,22 +4976,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "XCP", "block_index": 208, - "event": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -4942,30 +5001,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730146546.5615797, + "block_time": 1730147542.563512, "btc_amount": 0, - "data": "0200000000000000010000000000002710803c5b324bad0b5d20f0f3f24368314a7712e33655", + "data": "0200000000000000010000000000002710803970def27ed5459d1126af8f037ccb8fe4aeac4d", "destination": "", "fee": 10000, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "tx_index": 76, - "utxos_info": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7:1", + "utxos_info": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "memo": null, "asset_info": { "divisible": true, @@ -4979,7 +5038,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 } ], "next_cursor": null, @@ -4992,7 +5051,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -5012,7 +5071,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5020,14 +5079,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5035,14 +5094,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5050,14 +5109,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -5072,7 +5131,7 @@ Returns the balances of an address "quantity_normalized": "826.49941000" }, { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5080,7 +5139,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -5097,7 +5156,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -5110,7 +5169,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -5135,7 +5194,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5185,16 +5244,16 @@ Returns the credits of an address "result": [ { "block_index": 207, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", + "event": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146529, + "block_time": 1730147530, "asset_info": { "divisible": true, "asset_longname": null, @@ -5206,16 +5265,16 @@ Returns the credits of an address }, { "block_index": 206, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "event": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146524, + "block_time": 1730147525, "asset_info": { "divisible": true, "asset_longname": null, @@ -5227,16 +5286,16 @@ Returns the credits of an address }, { "block_index": 205, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "bf6dc611418389c02104fbc5a96daaf298072b3687afde41b544e177672f36bd", + "event": "4f72d5bee6053f9591d332772cf67ec1874d67118be7049fac7da1ed5b6f83b8", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146511, + "block_time": 1730147521, "asset_info": { "divisible": true, "asset_longname": null, @@ -5248,20 +5307,20 @@ Returns the credits of an address }, { "block_index": 201, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567", + "event": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", "tx_index": 68, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146486, + "block_time": 1730147494, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -5269,16 +5328,16 @@ Returns the credits of an address }, { "block_index": 192, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "44cd686fa15d9508241d20e5c7c2c60e8907dd3a651f43acf2b465f65fe3a0b0", + "event": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146437, + "block_time": 1730147455, "asset_info": { "divisible": true, "asset_longname": null, @@ -5299,7 +5358,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5338,16 +5397,16 @@ Returns the debits of an address "result": [ { "block_index": 207, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "event": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146529, + "block_time": 1730147530, "asset_info": { "divisible": true, "asset_longname": null, @@ -5359,16 +5418,16 @@ Returns the debits of an address }, { "block_index": 204, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "event": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146507, + "block_time": 1730147517, "asset_info": { "divisible": true, "asset_longname": null, @@ -5380,20 +5439,20 @@ Returns the debits of an address }, { "block_index": 204, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "event": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146507, + "block_time": 1730147517, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -5401,16 +5460,16 @@ Returns the debits of an address }, { "block_index": 203, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14", + "event": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146503, + "block_time": 1730147502, "asset_info": { "divisible": true, "asset_longname": null, @@ -5422,20 +5481,20 @@ Returns the debits of an address }, { "block_index": 203, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14", + "event": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146503, + "block_time": 1730147502, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -5452,7 +5511,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address of the feed + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5487,7 +5546,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + cursor (str, optional) - The last index of the broadcasts to return + Default: `None` + limit: `5` (int, optional) - The maximum number of broadcasts to return @@ -5506,9 +5565,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "75d373adf0de96f6ed32dc878f287920ccf7cdb7b9c5012fcd6ec9ef3d3939c5", + "tx_hash": "18aaf369ee7b22607393e152af0efd92979dee2ef001c12f68449f3dd6a3c100", "block_index": 137, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5516,7 +5575,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730146212, + "block_time": 1730147234, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5530,7 +5589,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + cursor (str, optional) - The last index of the burns to return + Default: `None` + limit: `5` (int, optional) - The maximum number of burns to return @@ -5549,14 +5608,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "592a291762602e14b2078525874c2575b187f4b831f0a5d3aad9492cc4006ca6", + "tx_hash": "2fed39c42c5098183f1ae8e1361e26ab555b2ec5955749c972b5f1067f3e2c72", "block_index": 112, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730146119, + "block_time": 1730147143, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5571,7 +5630,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + cursor (str, optional) - The last index of the sends to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sends to return @@ -5590,10 +5649,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 71, - "tx_hash": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "block_index": 204, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5601,7 +5660,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730146507, + "block_time": 1730147517, "asset_info": { "divisible": true, "asset_longname": null, @@ -5614,10 +5673,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 71, - "tx_hash": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "block_index": 204, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5625,11 +5684,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730146507, + "block_time": 1730147517, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -5638,10 +5697,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 71, - "tx_hash": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "block_index": 204, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5649,11 +5708,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730146507, + "block_time": 1730147517, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -5662,10 +5721,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 70, - "tx_hash": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14", + "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", "block_index": 203, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5673,7 +5732,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730146503, + "block_time": 1730147502, "asset_info": { "divisible": true, "asset_longname": null, @@ -5686,10 +5745,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 70, - "tx_hash": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14", + "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", "block_index": 203, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5697,11 +5756,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730146503, + "block_time": 1730147502, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -5719,7 +5778,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qcuwkj6w32f4llkdhcht2lhs8xtc3v5424em4lv` (str, required) - The address to return + + address: `bcrt1qcz42hsauvvj7zvqys6awauwvtlxm66sq2gnk5v` (str, required) - The address to return + cursor (str, optional) - The last index of the sends to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sends to return @@ -5738,10 +5797,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "c52bf330fc776175ce2b85ba385389ba68a61372cb37473758c08f8722f42f9d", + "tx_hash": "b9aeb481d6d93a3eee3edaee0438c4e3a7efc7f5f40d59eaa8606c125a6b2d9f", "block_index": 151, - "source": "ada2535c1fa5b9d7e5607c6cca03c5bd0d6d41b80278ddede04442c5a7a7cb8e:0", - "destination": "bcrt1qcuwkj6w32f4llkdhcht2lhs8xtc3v5424em4lv", + "source": "0e342a2ee7897e26da5b3b27ef89ed24cb2f5db944eb6471b2b3b214318205e4:0", + "destination": "bcrt1qcz42hsauvvj7zvqys6awauwvtlxm66sq2gnk5v", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5749,11 +5808,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730146268, + "block_time": 1730147299, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -5771,7 +5830,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5791,10 +5850,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 71, - "tx_hash": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "block_index": 204, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5802,11 +5861,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730146507, + "block_time": 1730147517, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -5815,10 +5874,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 71, - "tx_hash": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "block_index": 204, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5826,11 +5885,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730146507, + "block_time": 1730147517, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -5839,10 +5898,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 70, - "tx_hash": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14", + "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", "block_index": 203, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5850,11 +5909,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730146503, + "block_time": 1730147502, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -5863,10 +5922,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 70, - "tx_hash": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14", + "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", "block_index": 203, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5874,11 +5933,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730146503, + "block_time": 1730147502, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -5887,10 +5946,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 69, - "tx_hash": "9291277032ae953a6e14ff3e6a3dbfa85c0c62e03cd8549beaf5a5b0271a0fbd", + "tx_hash": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f", "block_index": 202, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5898,11 +5957,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730146500, + "block_time": 1730147498, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -5920,7 +5979,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qcuwkj6w32f4llkdhcht2lhs8xtc3v5424em4lv` (str, required) - The address to return + + address: `bcrt1qcz42hsauvvj7zvqys6awauwvtlxm66sq2gnk5v` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5948,7 +6007,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5977,9 +6036,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5988,7 +6047,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5998,7 +6057,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -6014,9 +6073,9 @@ Returns the dispensers of an address }, { "tx_index": 62, - "tx_hash": "a84431367d549b443ffdb3837c6f52a401a4649d9bc4c46b51f336351e712cf3", + "tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", "block_index": 197, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6025,7 +6084,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6035,11 +6094,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146466, + "block_time": 1730147475, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -6060,7 +6119,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -6073,9 +6132,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6084,7 +6143,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6094,7 +6153,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -6116,7 +6175,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -6136,19 +6195,19 @@ Returns the dispenses of a source { "tx_index": 63, "dispense_index": 0, - "tx_hash": "13c91a5e226bbe809951bd97672f3031d9107245b3e4ab5299ad5f9307e754bc", + "tx_hash": "3eaa0359313df169f4e9a098ef8e0ab8cdd5939ab338dca7fa670dbbfb3c0111", "block_index": 197, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a84431367d549b443ffdb3837c6f52a401a4649d9bc4c46b51f336351e712cf3", + "dispenser_tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6156,7 +6215,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6171,11 +6230,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146466, + "block_time": 1730147475, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -6185,19 +6244,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5b9bb8529c715bea15f2be58f7affcd1300399f23a3001f3fc89e43885ee0fab", + "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6205,7 +6264,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6220,7 +6279,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -6234,19 +6293,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b58ea6d9c455cf1d2efe992936d841dab3e1b9b878c223aad78c7885de92ba17", + "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", "block_index": 140, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6254,7 +6313,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6269,7 +6328,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146224, + "block_time": 1730147244, "asset_info": { "divisible": true, "asset_longname": null, @@ -6291,7 +6350,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k` (str, required) - The address to return + + address: `bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -6311,19 +6370,19 @@ Returns the dispenses of a destination { "tx_index": 63, "dispense_index": 0, - "tx_hash": "13c91a5e226bbe809951bd97672f3031d9107245b3e4ab5299ad5f9307e754bc", + "tx_hash": "3eaa0359313df169f4e9a098ef8e0ab8cdd5939ab338dca7fa670dbbfb3c0111", "block_index": 197, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a84431367d549b443ffdb3837c6f52a401a4649d9bc4c46b51f336351e712cf3", + "dispenser_tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6331,7 +6390,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6346,11 +6405,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146466, + "block_time": 1730147475, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -6360,19 +6419,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5b9bb8529c715bea15f2be58f7affcd1300399f23a3001f3fc89e43885ee0fab", + "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6380,7 +6439,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6395,7 +6454,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -6409,19 +6468,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b58ea6d9c455cf1d2efe992936d841dab3e1b9b878c223aad78c7885de92ba17", + "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", "block_index": 140, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6429,7 +6488,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6444,7 +6503,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146224, + "block_time": 1730147244, "asset_info": { "divisible": true, "asset_longname": null, @@ -6466,7 +6525,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` @@ -6487,19 +6546,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5b9bb8529c715bea15f2be58f7affcd1300399f23a3001f3fc89e43885ee0fab", + "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6507,7 +6566,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6522,7 +6581,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -6536,19 +6595,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b58ea6d9c455cf1d2efe992936d841dab3e1b9b878c223aad78c7885de92ba17", + "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", "block_index": 140, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6556,7 +6615,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6571,7 +6630,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146224, + "block_time": 1730147244, "asset_info": { "divisible": true, "asset_longname": null, @@ -6593,7 +6652,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k` (str, required) - The address to return + + address: `bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` @@ -6614,19 +6673,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5b9bb8529c715bea15f2be58f7affcd1300399f23a3001f3fc89e43885ee0fab", + "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6634,7 +6693,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6649,7 +6708,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -6663,19 +6722,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b58ea6d9c455cf1d2efe992936d841dab3e1b9b878c223aad78c7885de92ba17", + "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", "block_index": 140, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6683,7 +6742,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6698,7 +6757,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146224, + "block_time": 1730147244, "asset_info": { "divisible": true, "asset_longname": null, @@ -6720,7 +6779,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx` (str, required) - The address to return + + address: `bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0` (str, required) - The address to return + cursor (str, optional) - The last index of the sweeps to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sweeps to return @@ -6739,16 +6798,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 60, - "tx_hash": "2fe44fafe5dc6fed656ee0ae1a3030fee5ac7764531e086c0824911cba33019a", + "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", "block_index": 194, - "source": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730146454, + "block_time": 1730147463, "fee_paid_normalized": "0.00600000" } ], @@ -6762,7 +6821,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6794,14 +6853,14 @@ Returns the issuances of an address "result": [ { "tx_index": 68, - "tx_hash": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567", + "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -6816,20 +6875,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730146486, + "block_time": 1730147494, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "008a089de6c3b027c215e285abb61355f96f3c800e0b8b8980bac499a00fc56b", + "tx_hash": "ecedf49fefa307a78131f6b1d7f52c17b4ececb2e16f6ace25f1e6735fe7090f", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -6844,20 +6903,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730146316, + "block_time": 1730147339, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "46c3e96bb3baf10e4bf6d73e6229478349243117097c6cc77c3b827bb46076be", + "tx_hash": "4ef076610716e47917b7d9a1703541120e00b089e1da54ae1a615438306de745", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -6872,20 +6931,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730146313, + "block_time": 1730147334, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "9464b995c9d7ac49fafffbca07dd001741049bad5a26e88e531296a769d8c1a5", + "tx_hash": "4a865f981bedcaa6f59c08c2b25f1e47c0c1db264cac059bd89ad1011fd381e0", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -6900,20 +6959,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730146309, + "block_time": 1730147330, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "f4764011430ba111384fbec6512934bda4cb0e12779d0d6dd8a2092bf0dfed8b", + "tx_hash": "a65366c8d04355c3ec10374f3abcb6c2aa5d455b1ff2ca72cee7c67943ff6e12", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -6928,7 +6987,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730146296, + "block_time": 1730147326, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6943,7 +7002,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The issuer or owner to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6966,8 +7025,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 100000000000, @@ -6975,16 +7034,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730146486, - "last_issuance_block_time": 1730146486, + "first_issuance_block_time": 1730147494, + "last_issuance_block_time": 1730147494, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 10000000000, @@ -6992,16 +7051,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730146296, - "last_issuance_block_time": 1730146313, + "first_issuance_block_time": 1730147326, + "last_issuance_block_time": 1730147334, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 100000000000, @@ -7009,16 +7068,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730146256, - "last_issuance_block_time": 1730146256, + "first_issuance_block_time": 1730147287, + "last_issuance_block_time": 1730147287, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 40, @@ -7026,16 +7085,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730146205, - "last_issuance_block_time": 1730146209, + "first_issuance_block_time": 1730147227, + "last_issuance_block_time": 1730147231, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 19, @@ -7043,8 +7102,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730146189, - "last_issuance_block_time": 1730146201, + "first_issuance_block_time": 1730147211, + "last_issuance_block_time": 1730147222, "supply_normalized": "0.00000019" } ], @@ -7058,7 +7117,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The issuer to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The issuer to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7081,8 +7140,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 100000000000, @@ -7090,16 +7149,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730146486, - "last_issuance_block_time": 1730146486, + "first_issuance_block_time": 1730147494, + "last_issuance_block_time": 1730147494, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 10000000000, @@ -7107,16 +7166,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730146296, - "last_issuance_block_time": 1730146313, + "first_issuance_block_time": 1730147326, + "last_issuance_block_time": 1730147334, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 100000000000, @@ -7124,16 +7183,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730146256, - "last_issuance_block_time": 1730146256, + "first_issuance_block_time": 1730147287, + "last_issuance_block_time": 1730147287, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 40, @@ -7141,16 +7200,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730146205, - "last_issuance_block_time": 1730146209, + "first_issuance_block_time": 1730147227, + "last_issuance_block_time": 1730147231, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 19, @@ -7158,8 +7217,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730146189, - "last_issuance_block_time": 1730146201, + "first_issuance_block_time": 1730147211, + "last_issuance_block_time": 1730147222, "supply_normalized": "0.00000019" } ], @@ -7173,7 +7232,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The owner to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7196,8 +7255,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 100000000000, @@ -7205,16 +7264,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730146486, - "last_issuance_block_time": 1730146486, + "first_issuance_block_time": 1730147494, + "last_issuance_block_time": 1730147494, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 10000000000, @@ -7222,16 +7281,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730146296, - "last_issuance_block_time": 1730146313, + "first_issuance_block_time": 1730147326, + "last_issuance_block_time": 1730147334, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 100000000000, @@ -7239,16 +7298,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730146256, - "last_issuance_block_time": 1730146256, + "first_issuance_block_time": 1730147287, + "last_issuance_block_time": 1730147287, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 40, @@ -7256,16 +7315,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730146205, - "last_issuance_block_time": 1730146209, + "first_issuance_block_time": 1730147227, + "last_issuance_block_time": 1730147231, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 19, @@ -7273,8 +7332,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730146189, - "last_issuance_block_time": 1730146201, + "first_issuance_block_time": 1730147211, + "last_issuance_block_time": 1730147222, "supply_normalized": "0.00000019" } ], @@ -7288,7 +7347,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + cursor: `75` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7307,17 +7366,17 @@ Returns the transactions of an address "result": [ { "tx_index": 74, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_hash": "56ae91d142f683a09d940b258acad4656326d617818b4c9ab8d3e465c7498eb4", - "block_time": 1730146529, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", + "block_time": 1730147530, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159:1", + "utxos_info": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7353,17 +7412,17 @@ Returns the transactions of an address }, { "tx_index": 71, - "tx_hash": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "block_index": 204, - "block_hash": "0f715b69edf13726dc1d1d27b09dddeb5086bae38268ef9456b5d49c6ff906b6", - "block_time": 1730146507, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "5d35bb0804bc053ef7d59c9d0c4a9f4bcd4bc52272146001da9b7757c898d039", + "block_time": 1730147517, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d4c77d66fa0fdd86114939522fe26fb4007aa23e803c5b324bad0b5d20f0f3f24368314a7712e336558029cd5d950d66789a5d1f7d02a448584db013a75d40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d2621d21756eb8ebb22ce432b26450ae670d208f803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2040000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5:0", + "utxos_info": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7371,14 +7430,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -7386,7 +7445,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7405,17 +7464,17 @@ Returns the transactions of an address }, { "tx_index": 70, - "tx_hash": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14", + "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", "block_index": 203, - "block_hash": "0475da261e7efed25d02d43383b7aaa9cec5f58046c442761793288877b0a000", - "block_time": 1730146503, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "0770bd3567046a0c047163accfc399966280bdbd87644d765df50a5819c333f3", + "block_time": 1730147502, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d4c77d66fa0fdd86114939522fe26fb4007aa23e803c5b324bad0b5d20f0f3f24368314a7712e336558029cd5d950d66789a5d1f7d02a448584db013a75d88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d2621d21756eb8ebb22ce432b26450ae670d208f803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2088746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14:0", + "utxos_info": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7423,14 +7482,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -7438,7 +7497,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7457,17 +7516,17 @@ Returns the transactions of an address }, { "tx_index": 69, - "tx_hash": "9291277032ae953a6e14ff3e6a3dbfa85c0c62e03cd8549beaf5a5b0271a0fbd", + "tx_hash": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f", "block_index": 202, - "block_hash": "0dcbc84c2d95109090eb22746a665b5439533041aeecb240621cbb17fa7f68d2", - "block_time": 1730146500, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "5b62183f865f9122b0b1823726656c462dab8e5c45823a9c43b72ce9ce1bdbde", + "block_time": 1730147498, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d4c77d66fa0fdd86114939522fe26fb4007aa23e", + "data": "02000000178d82231300000000000003e880d2621d21756eb8ebb22ce432b26450ae670d208f", "supported": true, - "utxos_info": "9291277032ae953a6e14ff3e6a3dbfa85c0c62e03cd8549beaf5a5b0271a0fbd:1", + "utxos_info": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7475,12 +7534,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -7491,17 +7550,17 @@ Returns the transactions of an address }, { "tx_index": 68, - "tx_hash": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567", + "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", "block_index": 201, - "block_hash": "4bc9890a02562ad915e6473ffb15c6fa4b3e5b02801aa2a7c642246859efc3a8", - "block_time": 1730146486, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "7156384707e1643c99729bcff455e508cc134e75ff200fe29f1138d04e3ffe6b", + "block_time": 1730147494, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567:1", + "utxos_info": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7535,7 +7594,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + cursor (str, optional) - The last index of the assets to return + Default: `None` + limit: `5` (int, optional) - The maximum number of assets to return @@ -7554,20 +7613,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "babc61747028dfbe864a00fb10aa36000900c71d17ca5eca8f1f86c160f52548", + "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", "block_index": 154, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730146279, + "block_time": 1730147310, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -7592,7 +7651,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7621,9 +7680,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72", + "tx_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", "block_index": 184, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7638,7 +7697,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730146339, + "block_time": 1730147353, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7664,9 +7723,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", + "tx_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", "block_index": 207, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7681,7 +7740,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730146529, + "block_time": 1730147530, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7707,9 +7766,9 @@ Returns the orders of an address }, { "tx_index": 57, - "tx_hash": "44cd686fa15d9508241d20e5c7c2c60e8907dd3a651f43acf2b465f65fe3a0b0", + "tx_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", "block_index": 192, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7724,7 +7783,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730146437, + "block_time": 1730147455, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7750,9 +7809,9 @@ Returns the orders of an address }, { "tx_index": 59, - "tx_hash": "6ff02408b1201b2608b0689d0bea61aef5787a69dea23b48593fd7aeafbe8fab", + "tx_hash": "8c2d59b10cf446779609dae007a9bc91d0a00c457b17a0b279920ccbc776425e", "block_index": 193, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7767,7 +7826,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730146451, + "block_time": 1730147459, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7793,9 +7852,9 @@ Returns the orders of an address }, { "tx_index": 74, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7810,7 +7869,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730146529, + "block_time": 1730147530, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7845,7 +7904,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The source of the fairminter to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7870,10 +7929,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "adf5bd6deaba6cfeb6ec892a6fd69ba021d135559674853ad7bde8145789e4f9", + "tx_hash": "0998f235a3feba0746e143f431c1f698ca50ae3f8745598a4671168e9c151cef", "tx_index": 42, "block_index": 155, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7898,7 +7957,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730146283, + "block_time": 1730147313, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7907,10 +7966,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "91ab2f030c6b3d93359b217216415696e99d5800a0423a27dd32b8dd72f6b7c1", + "tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", "tx_index": 22, "block_index": 135, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7935,7 +7994,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730146205, + "block_time": 1730147227, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7947,10 +8006,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "92b6936e0fd4ebfe23aa10834e598f9eb5efad5d9a03db25cf6e6dec807c352a", + "tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", "tx_index": 18, "block_index": 131, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7975,7 +8034,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730146189, + "block_time": 1730147211, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7987,10 +8046,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "813fabeb4671db0750f64a1def89364f381970217838a1cd7c35859ed53cecf0", + "tx_hash": "ef648a52d64c60ed013aa174ae6a48421d17f923b88d3aba2e05b58ef0c76886", "tx_index": 14, "block_index": 130, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8015,7 +8074,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730146186, + "block_time": 1730147206, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8027,10 +8086,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "f45ea10dc40bf578b6b99d7e2c27432d1885c5cee4c83c1c4a8b2503e245ab7d", + "tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", "tx_index": 10, "block_index": 125, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8055,7 +8114,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730146166, + "block_time": 1730147187, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8077,7 +8136,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k` (str, required) - The address of the mints to return + + address: `bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8095,22 +8154,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "7e828b53dcd7e0b212fa0b15a0cf8a214c551ab1d1c67d4676345eda71be1d6e", + "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "91ab2f030c6b3d93359b217216415696e99d5800a0423a27dd32b8dd72f6b7c1", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146209, + "block_time": 1730147231, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -8119,22 +8178,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "28123f2716e40a4c1ecebe4c55a1bb6717ecb5d0a0e3efbb6a14b6f9288cf13c", + "tx_hash": "a9ec529d035361f0f926d689b0a23cdf4fef412a2be429d5399f71ab7fbd086a", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "92b6936e0fd4ebfe23aa10834e598f9eb5efad5d9a03db25cf6e6dec807c352a", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146201, + "block_time": 1730147222, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -8143,22 +8202,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "f0189ff8055fae52b2a895de0c0965efe86ed68c8614b80b157036b8f4b7af42", + "tx_hash": "93c5f036c8e324dda6f5e9e84e15f096906d0974ea4003bdf51cd4bd013c3ad4", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "92b6936e0fd4ebfe23aa10834e598f9eb5efad5d9a03db25cf6e6dec807c352a", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146197, + "block_time": 1730147218, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -8167,22 +8226,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "aadefa8b06c22ae58819261b95755f51b6ac15856c478e7a295b1c5f193d8130", + "tx_hash": "24ba6e5e817679a1c81bd41098b8ea21134e6fd0493e343e7ce171576bae5ef2", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "92b6936e0fd4ebfe23aa10834e598f9eb5efad5d9a03db25cf6e6dec807c352a", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146193, + "block_time": 1730147215, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -8191,22 +8250,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5fd061590c22232250641f19808b0b76ff6509318d08355076c708d88499b3e4", + "tx_hash": "c8d21094348438b7c4655120669db0ddae866ac6446b9ca3b607e8b9c96ac128", "tx_index": 15, "block_index": 127, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "813fabeb4671db0750f64a1def89364f381970217838a1cd7c35859ed53cecf0", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "ef648a52d64c60ed013aa174ae6a48421d17f923b88d3aba2e05b58ef0c76886", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146175, + "block_time": 1730147194, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -8215,22 +8274,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "97601db51012c772538d455f68e4ea86ea3b49bca62b515f3b339ce106818b06", + "tx_hash": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "f45ea10dc40bf578b6b99d7e2c27432d1885c5cee4c83c1c4a8b2503e245ab7d", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146159, + "block_time": 1730147180, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -8249,7 +8308,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k` (str, required) - The address of the mints to return + + address: `bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - The address of the mints to return + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -8268,22 +8327,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "97601db51012c772538d455f68e4ea86ea3b49bca62b515f3b339ce106818b06", + "tx_hash": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "f45ea10dc40bf578b6b99d7e2c27432d1885c5cee4c83c1c4a8b2503e245ab7d", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146159, + "block_time": 1730147180, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -8304,7 +8363,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0` (str, required) - The utxo to return + + utxo: `39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8324,8 +8383,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 1500000000, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "asset_info": { "divisible": true, "asset_longname": null, @@ -8338,12 +8397,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 1500000000, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -8378,13 +8437,13 @@ By default the default value of the `encoding` parameter detailed above is `auto - Sign the transaction following the `Bitcoinjs-lib on javascript, signing a P2SH redeeming transaction` section - **NOTE**: Don't leave pretxs hanging without transmitting the second transaction as this pollutes the UTXO set and risks making bitcoin harder to run on low spec nodes. -### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address}{&bet_type}{&deadline}{&wager_quantity}{&counterwager_quantity}{&expiration}{&leverage}{&target_value}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address}{&bet_type}{&deadline}{&wager_quantity}{&counterwager_quantity}{&expiration}{&leverage}{&target_value}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a bet against a feed. + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address that will make the bet - + feed_address: `bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will make the bet + + feed_address: `bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - The address that hosts the feed to be bet on + bet_type: `2` (int, required) - Bet 0 for Bullish CFD (deprecated), 1 for Bearish CFD (deprecated), 2 for Equal, 3 for NotEqual + deadline: `3000000000` (int, required) - The time at which the bet should be decided/settled, in Unix time (seconds since epoch) + wager_quantity: `1000` (int, required) - The quantities of XCP to wager (in satoshis, hence integer) @@ -8434,6 +8493,10 @@ Composes a transaction to issue a bet against a feed. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` + + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + Default: `False` + + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8447,12 +8510,12 @@ Composes a transaction to issue a bet against a feed. } ``` -### Compose Broadcast [GET /v2/addresses/{address}/compose/broadcast{?timestamp}{&value}{&fee_fraction}{&text}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Broadcast [GET /v2/addresses/{address}/compose/broadcast{?timestamp}{&value}{&fee_fraction}{&text}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to broadcast textual and numerical information to the network. + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + timestamp: `4003903985` (int, required) - The timestamp of the broadcast, in Unix time + value: `100` (float, required) - Numerical value of the broadcast + fee_fraction: `0.05` (float, required) - How much of every bet on this feed should go to its operator; a fraction of 1, (i.e. 0.05 is five percent) @@ -8497,6 +8560,10 @@ Composes a transaction to broadcast textual and numerical information to the net + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` + + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + Default: `False` + + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8508,7 +8575,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8518,9 +8585,9 @@ Composes a transaction to broadcast textual and numerical information to the net "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985142, - "btc_fee": 14858, - "rawtransaction": "020000000001011c5df33baf82f5ec5e7550f7e8d3196e1bf61506c78aa41eb645960dd70697e300000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff0200000000000000002b6a29d69253778e9ca2db792c5996b0bfdb3c549f3643ce2dc5402db3cbb70e59a2192b83320c92551d75fff6b7052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999985795, + "btc_fee": 14205, + "rawtransaction": "02000000000101ec554f96df34adde2d052d8c8ff141c82bbe4c0e291b407e2db656d0bcad131700000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff0200000000000000002b6a29c707dd529b7abad7f5c6edfa52a167c2b99a13f93fb0e203b60d7e7f271c4d040d8c93648bec77fada83ba052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8537,13 +8604,13 @@ Composes a transaction to broadcast textual and numerical information to the net } ``` -### Compose BTCPay [GET /v2/addresses/{address}/compose/btcpay{?order_match_id}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose BTCPay [GET /v2/addresses/{address}/compose/btcpay{?order_match_id}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to pay for a BTC order match. + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address that will be sending the payment - + order_match_id: `d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13` (str, required) - The ID of the order match to pay for + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be sending the payment + + order_match_id: `99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9` (str, required) - The ID of the order match to pay for + encoding (str, optional) - The encoding method to use + Default: `auto` + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis) @@ -8584,6 +8651,10 @@ Composes a transaction to pay for a BTC order match. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` + + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + Default: `False` + + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8595,23 +8666,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "order_match_id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13" + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9" }, "name": "btcpay", - "data": "434e5452505254590bd0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "data": "434e5452505254590b99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "btc_in": 5000000000, "btc_out": 3000, - "btc_change": 4999978090, - "btc_fee": 18910, - "rawtransaction": "02000000000101123eb40a326f2b1d7a6ad56fcdde7aaf993d8a7483b8cdde390cceead4c6e23a00000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff03b80b000000000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2600000000000000004b6a490d33c20b8da592f44103a41b6b8f42977d96555fcb93b80d6e9b36587946ba374021c1c6e2dcd7f7cb125d0538f757d00c3260e0cbd98dcf60eff7b91465c42809bdd4fe5885743aa86a9c052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999978921, + "btc_fee": 18079, + "rawtransaction": "02000000000101f783ff9ef8362151324d3e3c73fd567bdc7330f40489345ff887d25221866a0f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff03b80b000000000000160014527fc786dce354681ff9800bc9b06a2a44fd524e00000000000000004b6a49b2da7a60d77d3e2ff5da583fe83f15a8a9cc207b59c30ca77d213dc899f6c4a65378180ebf2504f1e34b96a5d845089e833b98161b8225a44c42a42a58827d9e94f03470c733093a41a99f052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "tx1_hash": "1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", - "order_match_id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "status": "valid" } } @@ -8619,12 +8690,12 @@ Composes a transaction to pay for a BTC order match. } ``` -### Compose Burn [GET /v2/addresses/{address}/compose/burn{?quantity}{&overburn}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Burn [GET /v2/addresses/{address}/compose/burn{?quantity}{&overburn}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, possible between blocks 278310 and 283810; on testnet it is still available). + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address with the BTC to burn + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address with the BTC to burn + quantity: `1000` (int, required) - The quantities of BTC to burn (in satoshis, hence integer) (1 BTC maximum burn per address) + overburn (bool, optional) - Whether to allow the burn to exceed 1 BTC for the address + Default: `False` @@ -8668,6 +8739,10 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` + + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + Default: `False` + + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8679,7 +8754,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "quantity": 1000, "overburn": false }, @@ -8687,20 +8762,20 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "data": null, "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999985186, - "btc_fee": 13814, - "rawtransaction": "020000000001014f259a41b2a7927731c3ccd442ac76b1908e2b451d61220758e67f86b357c4c100000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac22b8052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000" + "btc_change": 4999985793, + "btc_fee": 13207, + "rawtransaction": "020000000001017cc467ffa3846c0908d281028a906a2f987f00285abe9533fe70de6809112ed700000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000" } } ``` -### Compose Cancel [GET /v2/addresses/{address}/compose/cancel{?offer_hash}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Cancel [GET /v2/addresses/{address}/compose/cancel{?offer_hash}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to cancel an open order or bet. + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f` (str, required) - The hash of the order/bet to be cancelled + encoding (str, optional) - The encoding method to use + Default: `auto` + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis) @@ -8741,6 +8816,10 @@ Composes a transaction to cancel an open order or bet. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` + + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + Default: `False` + + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8752,21 +8831,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "offer_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159" + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "offer_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f" }, "name": "cancel", - "data": "434e545250525459461adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "data": "434e54525052545946ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985142, - "btc_fee": 14858, - "rawtransaction": "0200000000010198ff404d2c3ad8608f0042b5e158c65ae73e4a29ec400134c20e99858468fb3c00000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff0200000000000000002b6a2914893ee897b6e706ae084ce32d92c0eb8536b6c9cf87e0f1313836727b649a589d4a85ea38b3912e69f6b7052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999985795, + "btc_fee": 14205, + "rawtransaction": "02000000000101f21565ec24ac8a6c096fe0d96924dbef615d2d131b10317105784673b582f96000000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff0200000000000000002b6a298bcb8bd253cae71a7e3f78c9ba32e28019c386c1523aa89e7b3c6138f2172a03481507a8669ac7efdb83ba052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "offer_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "status": "valid" } } @@ -8774,12 +8853,12 @@ Composes a transaction to cancel an open order or bet. } ``` -### Compose Destroy [GET /v2/addresses/{address}/compose/destroy{?asset}{&quantity}{&tag}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Destroy [GET /v2/addresses/{address}/compose/destroy{?asset}{&quantity}{&tag}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be sending the asset to be destroyed + asset: `XCP` (str, required) - The asset to be destroyed + quantity: `1000` (int, required) - The quantity of the asset to be destroyed (in satoshis, hence integer) + tag: `"bugs!"` (str, required) - A tag for the destruction @@ -8823,6 +8902,10 @@ Composes a transaction to destroy a quantity of an asset. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` + + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + Default: `False` + + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8834,7 +8917,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8851,9 +8934,9 @@ Composes a transaction to destroy a quantity of an asset. "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985695, - "btc_fee": 14305, - "rawtransaction": "02000000000101804de83071766dbd6dcee6a55ee2c0456458e9c6953ba90c21a2536bc1aa991000000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff020000000000000000226a2012976dd9117eed8cab44767cd2a35f82dbab8a2b287f3c86e01d4060bed0a1d31fba052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999986323, + "btc_fee": 13677, + "rawtransaction": "02000000000101edca6184e83a2f2a9bb0ac09055f30de12f8f1e8e6099d7d60efe1f13506b06800000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000226a208a5dc160058962707268a118313c98488ef8e198371871ff602001eaf8963b3e93bc052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8868,12 +8951,12 @@ Composes a transaction to destroy a quantity of an asset. } ``` -### Compose Dispenser [GET /v2/addresses/{address}/compose/dispenser{?asset}{&give_quantity}{&escrow_quantity}{&mainchainrate}{&status}{&open_address}{&oracle_address}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Dispenser [GET /v2/addresses/{address}/compose/dispenser{?asset}{&give_quantity}{&escrow_quantity}{&mainchainrate}{&status}{&open_address}{&oracle_address}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to opens or closes a dispenser for a given asset at a given rate of main chain asset (BTC). Escrowed quantity on open must be equal or greater than give_quantity. It is suggested that you escrow multiples of give_quantity to ease dispenser operation. + Parameters - + address: `bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + asset: `XCP` (str, required) - The asset or subasset to dispense + give_quantity: `1000` (int, required) - The quantity of the asset to dispense (in satoshis, hence integer) + escrow_quantity: `1000` (int, required) - The quantity of the asset to reserve for this dispenser (in satoshis, hence integer) @@ -8923,6 +9006,10 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` + + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + Default: `False` + + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -8932,59 +9019,16 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv ``` { - "result": { - "params": { - "source": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t", - "asset": "XCP", - "give_quantity": 1000, - "escrow_quantity": 1000, - "mainchainrate": 100, - "status": 0, - "open_address": null, - "oracle_address": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "escrow_quantity_normalized": "0.00001000" - }, - "name": "dispenser", - "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", - "btc_in": 4949934500, - "btc_out": 0, - "btc_change": 4949919581, - "btc_fee": 14919, - "rawtransaction": "0200000000010139ba59842d40247ff3d84cfb914f09e5d2f2c32ca54f919b74cc30022a32aaee01000000160014b7c57fc2d37c1518d4d34a896f1421490a5b9facffffffff0200000000000000002c6a2a206836ab671bb85b33b690e9c4838bb23be22c3ce0dd8579c3a650b8ad987541880b4c0e628b603ae9e95dc7092701000000160014b7c57fc2d37c1518d4d34a896f1421490a5b9fac02000000000000", - "unpacked_data": { - "message_type": "dispenser", - "message_type_id": 12, - "message_data": { - "asset": "XCP", - "give_quantity": 1000, - "escrow_quantity": 1000, - "mainchainrate": 100, - "dispenser_status": 0, - "action_address": null, - "oracle_address": null, - "status": "valid", - "give_quantity_normalized": "0.00001000", - "escrow_quantity_normalized": "0.00001000" - } - } - } + "error": "invalid UTXO: 39b475d96fe427bf70a7413c344bbfa88768c4f038da4a0efceb2d0a3b5065bf:0" } ``` -### Compose Dividend [GET /v2/addresses/{address}/compose/dividend{?quantity_per_unit}{&asset}{÷nd_asset}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Dividend [GET /v2/addresses/{address}/compose/dividend{?quantity_per_unit}{&asset}{÷nd_asset}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a dividend to holders of a given asset. + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + quantity_per_unit: `1` (int, required) - The amount of dividend_asset rewarded (in satoshis, hence integer) + asset: `FAIRMINTA` (str, required) - The asset or subasset that the dividends are being rewarded on + dividend_asset: `XCP` (str, required) - The asset or subasset that the dividends are paid in @@ -9028,6 +9072,10 @@ Composes a transaction to issue a dividend to holders of a given asset. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` + + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + Default: `False` + + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9039,14 +9087,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -9063,9 +9111,9 @@ Composes a transaction to issue a dividend to holders of a given asset. "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985634, - "btc_fee": 14366, - "rawtransaction": "0200000000010166b5f11db5a4712a26489c0dd17f1a5444d68c72a57a83940ca31524493bb74300000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff020000000000000000236a2115757642be8756ff69842aad0d9a28b652ce6d86f8b955af31a06652d808f7841ee2b9052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999986264, + "btc_fee": 13736, + "rawtransaction": "020000000001018aaa34296c5eaaaa5af41403de267a2b2d8521c1318fd5952d28e9f92d6c179300000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000236a21e9b0acfa86a694d7f95ef829118248d90aa0eb3df28e46d40ba6e86282c5e54dce58bc052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9081,15 +9129,15 @@ Composes a transaction to issue a dividend to holders of a given asset. } ``` -### Compose Issuance [GET /v2/addresses/{address}/compose/issuance{?asset}{&quantity}{&transfer_destination}{&divisible}{&lock}{&reset}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Issuance [GET /v2/addresses/{address}/compose/issuance{?asset}{&quantity}{&transfer_destination}{&divisible}{&lock}{&reset}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to Issue a new asset, issue more of an existing asset, lock an asset, reset existing supply, or transfer the ownership of an asset. + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be issuing or transfering the asset + asset: `XCPTEST` (str, required) - The assets to issue or transfer. This can also be a subasset longname for new subasset issuances + quantity: `1000` (int, required) - The quantity of the asset to issue (set to 0 if transferring an asset) (in satoshis, hence integer) - + transfer_destination: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, optional) - The address to receive the asset + Default: `None` + divisible (bool, optional) - Whether this asset is divisible or not (if a transfer, this value must match the value specified when the asset was originally issued) + Default: `True` @@ -9139,6 +9187,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` + + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + Default: `False` + + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9150,10 +9202,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "transfer_destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "lock": false, "reset": false, @@ -9164,9 +9216,9 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999983000, - "btc_fee": 16454, - "rawtransaction": "02000000000101ad30629eb8e015f59dd0d815c9e690d5651183edd3598d160eb74e30462a185600000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff032202000000000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e260000000000000000236a21870ad70288670a9e4739ba8a2b095196b1937106663ecf76cd31871463f1cc007198af052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999983723, + "btc_fee": 15731, + "rawtransaction": "0200000000010154ad99d547dce324cf6c8c1cad5a34d8fbec5ca1144b1dc1e1d84bc790b3aada00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff032202000000000000160014527fc786dce354681ff9800bc9b06a2a44fd524e0000000000000000236a2110b125f993ac326e3f43a8ef54c0b53167c5af10c3ef537d00ef290d80cfed305c6bb2052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9190,14 +9242,14 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo } ``` -### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memos}{&memos_are_hex}{&memo}{&memo_is_hex}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memos}{&memos_are_hex}{&memo}{&memo_is_hex}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to send multiple payments to multiple addresses. + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0,bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m,bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9247,6 +9299,10 @@ Composes a transaction to send multiple payments to multiple addresses. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` + + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + Default: `False` + + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9258,16 +9314,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", 1 ], [ "MPMASSET", - "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", 2 ] ], @@ -9275,26 +9331,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280797d6ec17db07615f16099cd8ba63f5d8ef19e2680d4c77d66fa0fdd86114939522fe26fb4007aa23e40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280527fc786dce354681ff9800bc9b06a2a44fd524e80d2621d21756eb8ebb22ce432b26450ae670d208f40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, - "btc_change": 19999942989, - "btc_fee": 55011, - "rawtransaction": "020000000001047a6e1d082b377de104941955d64a3345afa8ec20eecb91581f027099eb1bcae800000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff8531479536c09cfabd80292a8f1d6fbec04be166a936e8b18b7b9e33b181bc9c00000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff25f7e83e677eb1a61fde096b4d6a51c0cd63f21f58e98fa8ef3697c97805f7a400000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffffb8a974131a525e7916b54102304298a42fbad3dcae520b6e249925adf4c3263a00000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff03e803000000000000695121036b3fb3b0a39b2223988ae03b7a2e4031a96182c5ac9b6e82f82a2bcffa6b69a72102e8eadadde00ee8287f50cc8d1ac71c3a35c79342ccafcdfbd20e55d5c084029c21027036d44abfb4df852f3c4f59791560960703a4b1f71c106e783ddc73b38059fb53aee80300000000000069512102743fb3b0a39b22239859e039fa573d5f683832b3b96a0e1b35a58df0a7e598f4210276cc5b0927738ed2708d4a9c53fe4e15d7a82742b60df3bbd20e5036a00cc6b621027036d44abfb4df852f3c4f59791560960703a4b1f71c106e783ddc73b38059fb53ae4de916a804000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000002000002000002000000000000", + "btc_change": 19999945404, + "btc_fee": 52596, + "rawtransaction": "02000000000104eb16b1dea782b710fe959e2403a3444a73b1b428be97b4f759db556ec294cd6e00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff8bfecbfd4d7c1ac49abe78c4aab75848d36f482911123a35161cd1948d5ad31a00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff44b8185ee04b24bf5457051abf4738e1ab2202b08208d0900d3bb07d3859e35600000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffffb3a91e8473d3bcf38592e933a9a9a1c886b76a2edbd1d705ab37223ec621994f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff03e80300000000000069512103229c1ad740e1fc7fe315b713d61367a44b16f37daa05db4a8a0c3b783897df28210247b946b98e1484ab58f866adaf57143b427f4078cb44b221122d6c84343f3449210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53aee803000000000000695121033d9c1ad740e1fc7fe3c6b71156411863cdee1029c21a22ca81c18b1212d32203210215f7c76bec09a5de36408d1f83b32689262fee1fc6643d61122d696754b7f062210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53aebcf216a804000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9305,12 +9361,12 @@ Composes a transaction to send multiple payments to multiple addresses. } ``` -### Compose Order [GET /v2/addresses/{address}/compose/order{?give_asset}{&give_quantity}{&get_asset}{&get_quantity}{&expiration}{&fee_required}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Order [GET /v2/addresses/{address}/compose/order{?give_asset}{&give_quantity}{&get_asset}{&get_quantity}{&expiration}{&fee_required}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + give_asset: `XCP` (str, required) - The asset that will be given in the trade + give_quantity: `1000` (int, required) - The quantity of the asset that will be given (in satoshis, hence integer) + get_asset: `FAIRMINTA` (str, required) - The asset that will be received in the trade @@ -9357,6 +9413,10 @@ Composes a transaction to place an order on the distributed exchange. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` + + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + Default: `False` + + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9368,7 +9428,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9385,7 +9445,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -9397,9 +9457,9 @@ Composes a transaction to place an order on the distributed exchange. "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999984528, - "btc_fee": 15472, - "rawtransaction": "0200000000010101400da17a9c38969e9349938c712cb5fe17e140d556684d40609bbc8de6f71800000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff020000000000000000356a334888e644a4432368ffac60f51d328dbaa7867cadc37f156cf82d1110aacd6ef2f10db25c4e35f27776e0953b2f32aa528e782c90b5052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999985208, + "btc_fee": 14792, + "rawtransaction": "020000000001013ccaeac64cc74c78aef490bfae465b26ce4d220bd88c53177d880ed6dfea3dd700000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000356a335729e4bf32af8f0e0ce28caf305a31a0812e519e4adc58500482f912e756736022499ff5709b2ca48cd36bcb4cb95e61cb179138b8052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9420,13 +9480,13 @@ Composes a transaction to place an order on the distributed exchange. } ``` -### Compose Send [GET /v2/addresses/{address}/compose/send{?destination}{&asset}{&quantity}{&memo}{&memo_is_hex}{&use_enhanced_send}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Send [GET /v2/addresses/{address}/compose/send{?destination}{&asset}{&quantity}{&memo}{&memo_is_hex}{&use_enhanced_send}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to send a quantity of an asset to another address. + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k` (str, required) - The address that will be receiving the asset + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - The address that will be receiving the asset + asset: `XCP` (str, required) - The asset or subasset to send + quantity: `1000` (int, required) - The quantity of the asset to send (in satoshis, hence integer) + memo (str, optional) - The Memo associated with this transaction @@ -9475,6 +9535,10 @@ Composes a transaction to send a quantity of an asset to another address. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` + + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + Default: `False` + + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9486,8 +9550,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9503,19 +9567,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d4c77d66fa0fdd86114939522fe26fb4007aa23e", + "data": "434e54525052545902000000000000000100000000000003e880d2621d21756eb8ebb22ce432b26450ae670d208f", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999984835, - "btc_fee": 15165, - "rawtransaction": "02000000000101325a0e2bd800d6a210fec7d1488022dab51af1855e5a2cc9e9d209a9ad4fb24100000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff020000000000000000306a2ebe505c15e04cc6ff252064b5caeea6f93291adca44cab277c0b875e5e9b6f1c62bac17a18f8b67c5881eee5ecea9c3b6052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999985501, + "btc_fee": 14499, + "rawtransaction": "02000000000101d2f9655814140cfeae93a2e40eb2285f960de02624abe024150dab6c014da1f300000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000306a2eb969df85bea8ea91ea294ef9f0aaa6469576d27c614e4adbf7deee7540e457ac380a29697a2f5d6b0577e85a2c735db9052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "memo": null, "quantity_normalized": "0.00001000" } @@ -9524,13 +9588,13 @@ Composes a transaction to send a quantity of an asset to another address. } ``` -### Compose Sweep [GET /v2/addresses/{address}/compose/sweep{?destination}{&flags}{&memo}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Sweep [GET /v2/addresses/{address}/compose/sweep{?destination}{&flags}{&memo}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to Sends all assets and/or transfer ownerships to a destination address. + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address that will be sending - + destination: `bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be sending + + destination: `bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - The address to receive the assets and/or ownerships + flags: `7` (int, required) - An OR mask of flags indicating how the sweep should be processed. Possible flags are: - FLAG_BALANCES: (integer) 1, specifies that all balances should be transferred. - FLAG_OWNERSHIP: (integer) 2, specifies that all ownerships should be transferred. - FLAG_BINARY_MEMO: (integer) 4, specifies that the memo is in binary/hex form. + memo: `FFFF` (str, required) - The Memo associated with this transaction in hex format + encoding (str, optional) - The encoding method to use @@ -9573,6 +9637,10 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` + + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + Default: `False` + + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9584,23 +9652,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480d4c77d66fa0fdd86114939522fe26fb4007aa23e07ffff", + "data": "434e5452505254590480d2621d21756eb8ebb22ce432b26450ae670d208f07ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985634, - "btc_fee": 14366, - "rawtransaction": "0200000000010110884d89bf54c72ac74c8356cd74d43192c2e6fa58208f3e3c7023a57d40fdf100000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff020000000000000000236a21125f708511fb73418041897f838e9ec624edf64c5652f92226378aa8087503df5ee2b9052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999986264, + "btc_fee": 13736, + "rawtransaction": "02000000000101673d5bbca76da706712756c51a521ad02e735ebcd33dde3f61a615cffb602c8700000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000236a21ff6f20411bc7edae051336c0c581ebeac8000a4390289d2ca70960fa50db2a70d158bc052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "flags": 7, "memo": "ffff" } @@ -9609,13 +9677,13 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti } ``` -### Compose Dispense [GET /v2/addresses/{address}/compose/dispense{?dispenser}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Dispense [GET /v2/addresses/{address}/compose/dispense{?dispenser}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to send BTC to a dispenser. + Parameters - + address: `bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm` (str, required) - The dispenser that will be receiving the asset + quantity: `1000` (int, required) - The quantity of BTC to send (in satoshis, hence integer) + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9657,6 +9725,10 @@ Composes a transaction to send BTC to a dispenser. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` + + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + Default: `False` + + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9668,17 +9740,17 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "quantity": 1000 }, "name": "dispense", "data": "434e5452505254590d00", "btc_in": 4949828000, "btc_out": 1000, - "btc_change": 4949811958, - "btc_fee": 15042, - "rawtransaction": "020000000001018a50b8a677043e332f0fc76414f842c99e19dc1a3ea547cf7d675e92eeb9b47803000000160014d4c77d66fa0fdd86114939522fe26fb4007aa23effffffff03e80300000000000016001429cd5d950d66789a5d1f7d02a448584db013a75d00000000000000000c6a0aeba5e2f638331881c242f622082701000000160014d4c77d66fa0fdd86114939522fe26fb4007aa23e02000000000000", + "btc_change": 4949812619, + "btc_fee": 14381, + "rawtransaction": "02000000000101e636303a873dcef54d7de9aa2af7c6eba3d2db3a0db88c259eeb62884461a52f03000000160014d2621d21756eb8ebb22ce432b26450ae670d208fffffffff03e803000000000000160014e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2000000000000000000c6a0adc4ca86eef93f50841298b25082701000000160014d2621d21756eb8ebb22ce432b26450ae670d208f02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9690,12 +9762,12 @@ Composes a transaction to send BTC to a dispenser. } ``` -### Compose Fairminter [GET /v2/addresses/{address}/compose/fairminter{?asset}{&asset_parent}{&price}{&quantity_by_price}{&max_mint_per_tx}{&hard_cap}{&premint_quantity}{&start_block}{&end_block}{&soft_cap}{&soft_cap_deadline_block}{&minted_asset_commission}{&burn_payment}{&lock_description}{&lock_quantity}{&divisible}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Fairminter [GET /v2/addresses/{address}/compose/fairminter{?asset}{&asset_parent}{&price}{&quantity_by_price}{&max_mint_per_tx}{&hard_cap}{&premint_quantity}{&start_block}{&end_block}{&soft_cap}{&soft_cap_deadline_block}{&minted_asset_commission}{&burn_payment}{&lock_description}{&lock_quantity}{&divisible}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address that will be issuing the asset + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be issuing the asset + asset: `MYASSET` (str, required) - The asset to issue + asset_parent (str, optional) - The parent asset of the asset to issue + Default: `` @@ -9769,6 +9841,10 @@ Composes a transaction to issue a new asset using the FairMinter protocol. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` + + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + Default: `False` + + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9780,7 +9856,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9809,9 +9885,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999984774, - "btc_fee": 15226, - "rawtransaction": "02000000000101828eeeb3b189f96c284bb43b56b3a233ba0f450235b12900448443587892a2d200000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff020000000000000000316a2f7cdc7dab733d05cded49bf3a92e00657a00ce5c9e6094d340a415d4a869107d31b1aa1d67854513c577f640710dd5d86b6052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999985443, + "btc_fee": 14557, + "rawtransaction": "020000000001019e8858a0cbb589a8d8d5b69862a7b6a3ac33ff311114fdc36a7fe9b27cd09e6f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000316a2f9f0dae530e4c2d83cc5b76667cb865f3c426c948aa34ddff60fa6e66025c62bab7ddcb6a1237be3e0a37741a99eeef23b9052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9845,12 +9921,12 @@ Composes a transaction to issue a new asset using the FairMinter protocol. } ``` -### Compose Fairmint [GET /v2/addresses/{address}/compose/fairmint{?asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Fairmint [GET /v2/addresses/{address}/compose/fairmint{?asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to mint a quantity of an asset using the FairMinter protocol. + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address that will be minting the asset + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be minting the asset + asset: `FAIRMINTC` (str, required) - The asset to mint + quantity: `1` (int, optional) - The quantity of the asset to mint (in satoshis, hence integer) + Default: `0` @@ -9894,6 +9970,10 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` + + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + Default: `False` + + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9905,13 +9985,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -9921,9 +10001,9 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "data": "434e5452505254595b464149524d494e54437c31", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986432, - "btc_fee": 13568, - "rawtransaction": "0200000000010173f3e15bff328e7684dd324e7169121eef4b8f41f01b76f87fd3fef014b97a1200000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff020000000000000000166a146eeb78d76bc2d0f664303f1fed8536163282cfa900bd052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999987028, + "btc_fee": 12972, + "rawtransaction": "0200000000010113279095345a2f2ac96393d18fbf278be94aea081285a8b7626dc89b7d11f23f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000166a14f50858299126a56cacebad8bcc2eb8bde8c35f6254bf052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -9937,15 +10017,15 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto } ``` -### Compose Attach [GET /v2/addresses/{address}/compose/attach{?asset}{&quantity}{&destination}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Attach [GET /v2/addresses/{address}/compose/attach{?asset}{&quantity}{&destination}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address from which the assets are attached + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) - + destination: `1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159:1` (str, optional) - The utxo to attach the assets to + + destination: `db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767:3` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9987,6 +10067,10 @@ Composes a transaction to attach assets from an address to UTXO. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` + + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + Default: `False` + + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -9998,8 +10082,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159:1", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767:3", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -10012,12 +10096,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713039376b617374616b706d70747574716e3878636866336c746b3830723833786e386a7272307c316164663235613339626561626636616565316537373862636534646135633063323466653638336265303361626562336431653161363865326266623135393a317c5843507c31303030", + "data": "434e5452505254596462637274317132666c7530706b757564327873386c65737139756e76723239667a3036356a7730336136346d7c646230353531373664633534666438393539633761353661663535646636666535376337626337643161633564663363393466363436616334353733623736373a337c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, - "btc_change": 29999914790, - "btc_fee": 82210, - "rawtransaction": "020000000001064a30d7aa97621fa7215b9068628b34582143025b23e43c919385d15e65a61fd500000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26fffffffffc639cf81bdb7eebfa4fd07f2b0a04522ef4b77694adee2eb59cc5fb9ea2b8cf00000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff7855472d95a4a5008c79a4e02256979897834672bddf030452b192f92d3f1f6900000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffffba85891632b3eb28b41823b39010fa9a72d14f363940fdb2f404b43908d43b0800000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffffb6401fece1b00e2669640d168680924096044a7b70347dd619b359f973b3466200000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffffc38b2dbd8cc1942ccd1659726f4e126e209ec15ecc0e58c8c48181df2c09c1a900000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff04e80300000000000069512103304643debd9caeaa49bf99a9f687163ca87053b420c44714c755bdc20c3a260b21026946620cae6a1aaae7ace816b5ab88521027d0490040c04bf909e1fca64fe67f21027036d44abfb4df852f3c4f59791560960703a4b1f71c106e783ddc73b38059fb53aee80300000000000069512102304643debd9caeaa49e8c2a8e192452bae2801ba70d204429447b3d74c2b33ad21032d4b6a17ff361afcbde0b04ce0e983000a2c8a1016039506a95ebdffa618e18021027036d44abfb4df852f3c4f59791560960703a4b1f71c106e783ddc73b38059fb53aee803000000000000695121021a4643debd9caeaa49b9caffbdc91631c00a34a370870345ac25d0b2784f520c210218285a74cd027c998bd8832e85d9b0616849e8237232f037c868859a947a879421027036d44abfb4df852f3c4f59791560960703a4b1f71c106e783ddc73b38059fb53ae265f22fc06000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000002000002000002000002000002000000000000", + "btc_change": 29999918400, + "btc_fee": 78600, + "rawtransaction": "020000000001066b9740003b749ea753f9d0b74a875c83c60667410c961203fa761dc7bdcb008f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffffd7606422e2d0ada7d99ccad4bcdb51dbe0c0d3a4d601253a9742899b5fb1292800000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff5975cc919095d0a390c024e7674d89beb25fe0fd759a73b8247d1a5e4e7e0c1f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff271e2d4f309e0a86df152fad193229530fa40288f2f4817d5289a3bcf2d221f200000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffffaacfa165e430871e4aac30fc62e6f07950866fa5e90ba26425aeed455236c2eb00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff389e7f52492ec0939d60faee8742c64336f492ed6bb50d8f983fb6d372d3cbb500000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff04e8030000000000006951210222ab349b8563f53461bed1c6278c3ee9156292f56c7a4608a2add91f6754f83a2102573836ca5bed8cddce8b8ec41112fabeede30072f363f52986c057c3d18c4fe2210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53aee8030000000000006951210222ab349b8563f53461ecd7c660cc69fc1f3dcbb93f3d4c48e1a88d522108f2012103042d22c619e0cdcd9f858c8f4047fab0fce0502af131ae61d4c304c2d18a4be5210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53aee8030000000000006951210308ab349b8563f53461b8849362c23ce47f47aefc6d3a1d4dd7c9eb67146c94232103324b47f32e83faaffcb2e8be2124cfd49ad33313c5579855e2a267f6e4bd78b9210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53ae406d22fc06000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10029,13 +10113,13 @@ Composes a transaction to attach assets from an address to UTXO. } ``` -### Compose Detach [GET /v2/utxos/{utxo}/compose/detach{?destination}{&asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&verbose}{&show_unconfirmed}] +### Compose Detach [GET /v2/utxos/{utxo}/compose/detach{?destination}{&asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to detach assets from UTXO to an address. + Parameters - + utxo: `69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address to detach the assets to + + utxo: `39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to detach the assets to + asset: `XCP` (str, required) - The asset or subasset to detach + quantity: `1000` (int, required) - The quantity of the asset to detach (in satoshis, hence integer) + encoding (str, optional) - The encoding method to use @@ -10078,6 +10162,10 @@ Composes a transaction to detach assets from UTXO to an address. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` + + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + Default: `False` + + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -10089,8 +10177,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -10103,12 +10191,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964363961386631316536653365313537336237376531656637313434613039313634636538343738653332396430666635333363323433363739333666653035643a307c6263727431713039376b617374616b706d70747574716e3878636866336c746b3830723833786e386a7272307c5843507c31303030", + "data": "434e54525052545964333965653735326233313262373733323931303561363861623335633636376238303330376636613564326232303434396232366438656263316534313863323a307c62637274317132666c7530706b757564327873386c65737139756e76723239667a3036356a7730336136346d7c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, - "btc_change": 4950028128, - "btc_fee": 48872, - "rawtransaction": "02000000000103fb37a9dca5cc96fd9a77e163f5f335e99b823266ff66d4bb65a06deda7f6027f01000000160014ca3b94a05ec1dc09d7418d591bec418e3b2ec34afffffffff455d6dde2b5a53586e8e6d7e3d75437569bd8b0964969ca5776f47d9745a57600000000160014ca3b94a05ec1dc09d7418d591bec418e3b2ec34affffffffd611c71a066a2bba749fb82d4e8f0108a5e4b650e746ceb766375a80ecc516b001000000160014ca3b94a05ec1dc09d7418d591bec418e3b2ec34affffffff04e80300000000000069512102a571539b846ac9afa19f3027cd04c180838ac4eeb90532870676be68d4ce5d172103ad9176dce1e69f11b35589c470c5578363977f1f5a014b0bcf53250e30a8556b210204f56e87afd9282bd63ff393241251f5f49e0c4221dfa73db9b9944a7ddd072e53aee80300000000000069512102a571539b846ac9afa1cf35289b059487d48ac2beee5a33ce5326ae2bd2da5cbe2103f1c02a8ca6a69f4afa09cf8466d41ed96cd779440e0b434fc20d204f3bf81ff4210204f56e87afd9282bd63ff393241251f5f49e0c4221dfa73db9b9944a7ddd072e53aee803000000000000695121028f71539b846ac9afa1953e74de4e97cdeaaca2f7bb5033823145dc5fe3ab6cc92102c8f741edd5d2fe218a64bff013a06fb754af1a2c68382f3ba935103d03cb6782210204f56e87afd9282bd63ff393241251f5f49e0c4221dfa73db9b9944a7ddd072e53ae606f0b2701000000160014ca3b94a05ec1dc09d7418d591bec418e3b2ec34a02000002000002000000000000", + "btc_change": 4950030275, + "btc_fee": 46725, + "rawtransaction": "02000000000103d9d64e30e4cddc4ae711b103673ff2ef778b8b76a0ac6f4837a710f94ff2b80d01000000160014683c2d33034856d0b1db09c7b7e1773ae80add54ffffffff9ab86aed71e4c98fe94801572d8dd97a70c6ab07ec9052ddf5b44bcbbff0dad200000000160014683c2d33034856d0b1db09c7b7e1773ae80add54ffffffff12ac675882dc75787ee844b16a29500ca2d9d580928628d0e631bd8cad66a0df01000000160014683c2d33034856d0b1db09c7b7e1773ae80add54ffffffff04e8030000000000006951210299cdde3a3c495e64c938ac002b937eab26380991760805e8a9a35e27004c13c321021fb8e637e1d21d7b95419c3ccf53d234602cf32dacd2f131e09781b4a0227c272102e724a18b424760c2ae31273f48b5a06c7a2a3bccc4115ff383a3e80b8dbdbd6053aee8030000000000006951210299cdde3a3c495e64c938a75c2c9578fb206b02c3765002a3f8f215620108406e21034fecf265a28c0b38c7448677c70c87707723e776be92a13ab6d985bbf77a3dbc2102e724a18b424760c2ae31273f48b5a06c7a2a3bccc4115ff383a3e80b8dbdbd6053aee80300000000000069512102b3cdde3a3c495e64c96cac5878c224e24c196adc755a02ef9a916716307972f5210229808755d2e77e4da376fe04ff60e203061a9218c8e09303d0a3b58dc2104ad02102e724a18b424760c2ae31273f48b5a06c7a2a3bccc4115ff383a3e80b8dbdbd6053aec3770b2701000000160014683c2d33034856d0b1db09c7b7e1773ae80add5402000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10177,8 +10265,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 100000000000, @@ -10186,16 +10274,16 @@ Returns the valid assets "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730146486, - "last_issuance_block_time": 1730146486, + "first_issuance_block_time": 1730147494, + "last_issuance_block_time": 1730147494, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t", - "owner": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t", + "issuer": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", + "owner": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", "divisible": true, "locked": false, "supply": 100000000000, @@ -10203,16 +10291,16 @@ Returns the valid assets "first_issuance_block_index": 198, "last_issuance_block_index": 198, "confirmed": true, - "first_issuance_block_time": 1730146469, - "last_issuance_block_time": 1730146469, + "first_issuance_block_time": 1730147479, + "last_issuance_block_time": 1730147479, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 10000000000, @@ -10220,16 +10308,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730146296, - "last_issuance_block_time": 1730146313, + "first_issuance_block_time": 1730147326, + "last_issuance_block_time": 1730147334, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", - "owner": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "issuer": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "owner": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "divisible": true, "locked": false, "supply": 100000000000, @@ -10237,16 +10325,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730146291, - "last_issuance_block_time": 1730146291, + "first_issuance_block_time": 1730147321, + "last_issuance_block_time": 1730147321, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 100000000000, @@ -10254,8 +10342,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730146256, - "last_issuance_block_time": 1730146256, + "first_issuance_block_time": 1730147287, + "last_issuance_block_time": 1730147287, "supply_normalized": "1000.00000000" } ], @@ -10283,8 +10371,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 10000000000, @@ -10292,8 +10380,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730146156, - "last_issuance_block_time": 1730146166, + "first_issuance_block_time": 1730147176, + "last_issuance_block_time": 1730147187, "supply_normalized": "100.00000000" } } @@ -10324,7 +10412,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10332,14 +10420,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10347,7 +10435,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -10365,7 +10453,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -10377,7 +10465,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -10431,9 +10519,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72", + "tx_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", "block_index": 184, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10448,7 +10536,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730146339, + "block_time": 1730147353, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10474,9 +10562,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", + "tx_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", "block_index": 207, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10491,7 +10579,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730146529, + "block_time": 1730147530, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10517,9 +10605,9 @@ Returns the orders of an asset }, { "tx_index": 57, - "tx_hash": "44cd686fa15d9508241d20e5c7c2c60e8907dd3a651f43acf2b465f65fe3a0b0", + "tx_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", "block_index": 192, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10534,7 +10622,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730146437, + "block_time": 1730147455, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10560,9 +10648,9 @@ Returns the orders of an asset }, { "tx_index": 59, - "tx_hash": "6ff02408b1201b2608b0689d0bea61aef5787a69dea23b48593fd7aeafbe8fab", + "tx_hash": "8c2d59b10cf446779609dae007a9bc91d0a00c457b17a0b279920ccbc776425e", "block_index": 193, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10577,7 +10665,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730146451, + "block_time": 1730147459, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10603,9 +10691,9 @@ Returns the orders of an asset }, { "tx_index": 74, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10620,7 +10708,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730146529, + "block_time": 1730147530, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10682,13 +10770,13 @@ Returns the orders of an asset { "result": [ { - "id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "tx0_index": 51, - "tx0_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 54, - "tx1_hash": "1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", - "tx1_address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "tx1_address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10702,7 +10790,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730146412, + "block_time": 1730147430, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10722,13 +10810,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", + "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", "tx0_index": 51, - "tx0_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 52, - "tx1_hash": "3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", - "tx1_address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "tx1_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10742,7 +10830,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730146408, + "block_time": 1730147427, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10762,13 +10850,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72_f00583215a74977d825af48a15ba3115eafcd73029016d7fb72e2b677f982665", + "id": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962_9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", "tx0_index": 49, - "tx0_hash": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 50, - "tx1_hash": "f00583215a74977d825af48a15ba3115eafcd73029016d7fb72e2b677f982665", - "tx1_address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "tx1_hash": "9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", + "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10782,7 +10870,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730146339, + "block_time": 1730147353, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10862,20 +10950,20 @@ Returns the credits of an asset "result": [ { "block_index": 194, - "address": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "2fe44fafe5dc6fed656ee0ae1a3030fee5ac7764531e086c0824911cba33019a", + "event": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146454, + "block_time": 1730147463, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -10883,20 +10971,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "b3b09508da940091d185f31dfe33e03423789cb1d05266ffc65086293c0ae82e", + "event": "f758697b62ece0df11283b89756ced9214a9f2bc83f7f4e02b74736099dab0d7", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146166, + "block_time": 1730147187, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -10904,20 +10992,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "5392c98ba0d3b4a1e9cc178928aef013fb91044efbadc13b3ef0b481e3f75652", + "event": "830a7b9e1f16656de3d506078bbeb7daa4cac5f7a80eb58cd6d4e749dea4b48c", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146163, + "block_time": 1730147183, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -10925,20 +11013,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "97601db51012c772538d455f68e4ea86ea3b49bca62b515f3b339ce106818b06", + "event": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146163, + "block_time": 1730147183, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -10950,16 +11038,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "5392c98ba0d3b4a1e9cc178928aef013fb91044efbadc13b3ef0b481e3f75652", + "event": "830a7b9e1f16656de3d506078bbeb7daa4cac5f7a80eb58cd6d4e749dea4b48c", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146163, + "block_time": 1730147183, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -11019,12 +11107,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "utxo": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "utxo_address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "utxo": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "utxo_address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -11036,16 +11124,16 @@ Returns the debits of an asset }, { "block_index": 207, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "event": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146529, + "block_time": 1730147530, "asset_info": { "divisible": true, "asset_longname": null, @@ -11057,16 +11145,16 @@ Returns the debits of an asset }, { "block_index": 206, - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "event": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146524, + "block_time": 1730147525, "asset_info": { "divisible": true, "asset_longname": null, @@ -11078,16 +11166,16 @@ Returns the debits of an asset }, { "block_index": 205, - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "bf6dc611418389c02104fbc5a96daaf298072b3687afde41b544e177672f36bd", + "event": "4f72d5bee6053f9591d332772cf67ec1874d67118be7049fac7da1ed5b6f83b8", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146511, + "block_time": 1730147521, "asset_info": { "divisible": true, "asset_longname": null, @@ -11099,16 +11187,16 @@ Returns the debits of an asset }, { "block_index": 204, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "event": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146507, + "block_time": 1730147517, "asset_info": { "divisible": true, "asset_longname": null, @@ -11188,14 +11276,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "b3b09508da940091d185f31dfe33e03423789cb1d05266ffc65086293c0ae82e", + "tx_hash": "f758697b62ece0df11283b89756ced9214a9f2bc83f7f4e02b74736099dab0d7", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -11210,20 +11298,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730146166, + "block_time": 1730147187, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "5392c98ba0d3b4a1e9cc178928aef013fb91044efbadc13b3ef0b481e3f75652", + "tx_hash": "830a7b9e1f16656de3d506078bbeb7daa4cac5f7a80eb58cd6d4e749dea4b48c", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -11238,20 +11326,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730146163, + "block_time": 1730147183, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "97601db51012c772538d455f68e4ea86ea3b49bca62b515f3b339ce106818b06", + "tx_hash": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -11266,20 +11354,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730146159, + "block_time": 1730147180, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "f45ea10dc40bf578b6b99d7e2c27432d1885c5cee4c83c1c4a8b2503e245ab7d", + "tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -11294,7 +11382,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730146156, + "block_time": 1730147176, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11328,10 +11416,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "destination": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11339,7 +11427,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -11352,10 +11440,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 73, - "tx_hash": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "block_index": 206, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11363,7 +11451,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730146524, + "block_time": 1730147525, "asset_info": { "divisible": true, "asset_longname": null, @@ -11376,10 +11464,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 72, - "tx_hash": "bf6dc611418389c02104fbc5a96daaf298072b3687afde41b544e177672f36bd", + "tx_hash": "4f72d5bee6053f9591d332772cf67ec1874d67118be7049fac7da1ed5b6f83b8", "block_index": 205, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11387,7 +11475,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730146511, + "block_time": 1730147521, "asset_info": { "divisible": true, "asset_longname": null, @@ -11400,10 +11488,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 71, - "tx_hash": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "block_index": 204, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11411,7 +11499,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730146507, + "block_time": 1730147517, "asset_info": { "divisible": true, "asset_longname": null, @@ -11424,10 +11512,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 70, - "tx_hash": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14", + "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", "block_index": 203, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11435,7 +11523,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730146503, + "block_time": 1730147502, "asset_info": { "divisible": true, "asset_longname": null, @@ -11486,9 +11574,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11497,7 +11585,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11507,7 +11595,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -11523,9 +11611,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "aea7cc7426759bffef79ccd4e1e4316cd4b731eaf39c4948e5fe9e54550af005", + "tx_hash": "0f8b14713e0204ae9ff12c34e2165f2d60b09ca423e678e8a5330a4016d691d1", "block_index": 142, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11534,7 +11622,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "origin": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11544,7 +11632,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146233, + "block_time": 1730147253, "asset_info": { "divisible": true, "asset_longname": null, @@ -11560,9 +11648,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "b445952967bcc37d4b9c9af9daf910e389b7ba4d19496d3a5ec371392331620b", + "tx_hash": "aa2eb896e9aab9ff1080957160ee3e8e9ccdfe2e0d1487c2aea504a2fbd46ff9", "block_index": 150, - "source": "n3NcfeHqrFcRKSpTX8sSuQd1ukhJSvpgq9", + "source": "mg2iDq9hHHgarJckVLMgpwt5YE7WjvUVPs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11570,10 +11658,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "12e174f3b45733917eadded26c45db953bc6d535141701bdec44a4ecf9b3748f", - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "last_status_tx_hash": "c1af00f61ee9d962dec73cc4efbdaaefc68742f334d37368fddf8dfefe137210", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 0, - "last_status_tx_source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "last_status_tx_source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11581,7 +11669,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146265, + "block_time": 1730147296, "asset_info": { "divisible": true, "asset_longname": null, @@ -11597,18 +11685,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "last_status_tx_hash": null, - "origin": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11618,7 +11706,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -11643,7 +11731,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - The address to return + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -11656,9 +11744,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11667,7 +11755,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11677,7 +11765,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -11727,7 +11815,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -11735,7 +11823,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11744,7 +11832,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -11752,7 +11840,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11761,7 +11849,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -11769,7 +11857,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11778,7 +11866,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -11815,27 +11903,27 @@ Returns the dispenses of an asset { "tx_index": 75, "dispense_index": 0, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "destination": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "last_status_tx_hash": null, - "origin": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11850,7 +11938,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -11864,27 +11952,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "76a545977df47657ca694996b0d89b563754d7e3d7e6e88635a5b5e2ddd655f4", + "tx_hash": "d2daf0bfcb4bb4f5dd5290ec07abc6707ad98d2d570148e98fc9e471ed6ab89a", "block_index": 147, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "destination": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "destination": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "last_status_tx_hash": null, - "origin": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11899,7 +11987,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730146253, + "block_time": 1730147283, "asset_info": { "divisible": true, "asset_longname": null, @@ -11913,19 +12001,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5b9bb8529c715bea15f2be58f7affcd1300399f23a3001f3fc89e43885ee0fab", + "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11933,7 +12021,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11948,7 +12036,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -11962,19 +12050,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b58ea6d9c455cf1d2efe992936d841dab3e1b9b878c223aad78c7885de92ba17", + "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", "block_index": 140, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11982,7 +12070,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11997,7 +12085,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146224, + "block_time": 1730147244, "asset_info": { "divisible": true, "asset_longname": null, @@ -12071,10 +12159,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "f45ea10dc40bf578b6b99d7e2c27432d1885c5cee4c83c1c4a8b2503e245ab7d", + "tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", "tx_index": 10, "block_index": 125, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12099,7 +12187,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730146166, + "block_time": 1730147187, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12139,22 +12227,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "b3b09508da940091d185f31dfe33e03423789cb1d05266ffc65086293c0ae82e", + "tx_hash": "f758697b62ece0df11283b89756ced9214a9f2bc83f7f4e02b74736099dab0d7", "tx_index": 13, "block_index": 125, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", - "fairminter_tx_hash": "f45ea10dc40bf578b6b99d7e2c27432d1885c5cee4c83c1c4a8b2503e245ab7d", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146166, + "block_time": 1730147187, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -12163,22 +12251,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "5392c98ba0d3b4a1e9cc178928aef013fb91044efbadc13b3ef0b481e3f75652", + "tx_hash": "830a7b9e1f16656de3d506078bbeb7daa4cac5f7a80eb58cd6d4e749dea4b48c", "tx_index": 12, "block_index": 124, - "source": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", - "fairminter_tx_hash": "f45ea10dc40bf578b6b99d7e2c27432d1885c5cee4c83c1c4a8b2503e245ab7d", + "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146163, + "block_time": 1730147183, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -12187,22 +12275,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "97601db51012c772538d455f68e4ea86ea3b49bca62b515f3b339ce106818b06", + "tx_hash": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "f45ea10dc40bf578b6b99d7e2c27432d1885c5cee4c83c1c4a8b2503e245ab7d", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146159, + "block_time": 1730147180, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -12221,7 +12309,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k` (str, required) - The address of the mints to return + + address: `bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - The address of the mints to return + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -12240,22 +12328,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "97601db51012c772538d455f68e4ea86ea3b49bca62b515f3b339ce106818b06", + "tx_hash": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "f45ea10dc40bf578b6b99d7e2c27432d1885c5cee4c83c1c4a8b2503e245ab7d", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146159, + "block_time": 1730147180, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -12308,9 +12396,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72", + "tx_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", "block_index": 184, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12325,7 +12413,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730146339, + "block_time": 1730147353, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12351,9 +12439,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", + "tx_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", "block_index": 187, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12368,7 +12456,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730146408, + "block_time": 1730147427, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12394,9 +12482,9 @@ Returns all the orders }, { "tx_index": 54, - "tx_hash": "1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "tx_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "block_index": 188, - "source": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12411,7 +12499,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730146412, + "block_time": 1730147430, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12437,9 +12525,9 @@ Returns all the orders }, { "tx_index": 57, - "tx_hash": "44cd686fa15d9508241d20e5c7c2c60e8907dd3a651f43acf2b465f65fe3a0b0", + "tx_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", "block_index": 192, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12454,7 +12542,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730146437, + "block_time": 1730147455, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12480,9 +12568,9 @@ Returns all the orders }, { "tx_index": 59, - "tx_hash": "6ff02408b1201b2608b0689d0bea61aef5787a69dea23b48593fd7aeafbe8fab", + "tx_hash": "8c2d59b10cf446779609dae007a9bc91d0a00c457b17a0b279920ccbc776425e", "block_index": 193, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12497,7 +12585,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730146451, + "block_time": 1730147459, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12532,7 +12620,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159` (str, required) - The hash of the transaction that created the order + + order_hash: `ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f` (str, required) - The hash of the transaction that created the order + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -12544,9 +12632,9 @@ Returns the information of an order { "result": { "tx_index": 74, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12561,7 +12649,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730146529, + "block_time": 1730147530, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12593,7 +12681,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be` (str, required) - The hash of the transaction that created the order + + order_hash: `99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2` (str, required) - The hash of the transaction that created the order + status (enum[str], optional) - The status of the order matches to return + Default: `all` + Members @@ -12620,13 +12708,13 @@ Returns the order matches of an order { "result": [ { - "id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "tx0_index": 51, - "tx0_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 54, - "tx1_hash": "1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", - "tx1_address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "tx1_address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12640,7 +12728,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730146412, + "block_time": 1730147430, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12660,13 +12748,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", + "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", "tx0_index": 51, - "tx0_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 52, - "tx1_hash": "3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", - "tx1_address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "tx1_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12680,7 +12768,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730146408, + "block_time": 1730147427, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12710,7 +12798,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be` (str, required) - The hash of the transaction that created the order + + order_hash: `99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2` (str, required) - The hash of the transaction that created the order + cursor (str, optional) - The last index of the resolutions to return + Default: `None` + limit: `5` (int, optional) - The maximum number of resolutions to return @@ -12729,15 +12817,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "85727579c983fd177497804c779ca6842a233390f9e5ffda0e8b8c4b7e31c78e", + "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", "block_index": 187, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "btc_amount": 2000, - "order_match_id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", + "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", "status": "valid", "confirmed": true, - "block_time": 1730146408, + "block_time": 1730147427, "btc_amount_normalized": "0.00002000" } ], @@ -12781,9 +12869,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", + "tx_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", "block_index": 187, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12801,7 +12889,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730146408, + "block_time": 1730147427, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12827,9 +12915,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "tx_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "block_index": 188, - "source": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12847,7 +12935,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730146412, + "block_time": 1730147430, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12873,9 +12961,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72", + "tx_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", "block_index": 184, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12893,7 +12981,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730146339, + "block_time": 1730147353, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12919,9 +13007,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", + "tx_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", "block_index": 207, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12939,7 +13027,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730146529, + "block_time": 1730147530, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12965,9 +13053,9 @@ Returns the orders to exchange two assets }, { "tx_index": 57, - "tx_hash": "44cd686fa15d9508241d20e5c7c2c60e8907dd3a651f43acf2b465f65fe3a0b0", + "tx_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", "block_index": 192, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12985,7 +13073,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730146437, + "block_time": 1730147455, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13048,13 +13136,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "tx0_index": 51, - "tx0_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 54, - "tx1_hash": "1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", - "tx1_address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "tx1_address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13071,7 +13159,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730146412, + "block_time": 1730147430, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13091,13 +13179,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", + "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", "tx0_index": 51, - "tx0_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 52, - "tx1_hash": "3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", - "tx1_address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "tx1_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13114,7 +13202,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730146408, + "block_time": 1730147427, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13134,13 +13222,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72_f00583215a74977d825af48a15ba3115eafcd73029016d7fb72e2b677f982665", + "id": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962_9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", "tx0_index": 49, - "tx0_hash": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 50, - "tx1_hash": "f00583215a74977d825af48a15ba3115eafcd73029016d7fb72e2b677f982665", - "tx1_address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "tx1_hash": "9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", + "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13157,7 +13245,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730146339, + "block_time": 1730147353, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13215,13 +13303,13 @@ Returns all the order matches { "result": [ { - "id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "tx0_index": 51, - "tx0_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 54, - "tx1_hash": "1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", - "tx1_address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "tx1_address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13235,7 +13323,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730146412, + "block_time": 1730147430, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13255,13 +13343,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", + "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", "tx0_index": 51, - "tx0_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 52, - "tx1_hash": "3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", - "tx1_address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "tx1_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13275,7 +13363,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730146408, + "block_time": 1730147427, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13295,13 +13383,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72_f00583215a74977d825af48a15ba3115eafcd73029016d7fb72e2b677f982665", + "id": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962_9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", "tx0_index": 49, - "tx0_hash": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 50, - "tx1_hash": "f00583215a74977d825af48a15ba3115eafcd73029016d7fb72e2b677f982665", - "tx1_address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "tx1_hash": "9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", + "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13315,7 +13403,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730146339, + "block_time": 1730147353, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13483,66 +13571,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "67b310d4eebe9282c687e3867430c7203d82c1a32dcf143aa3154aed98394481", + "tx_hash": "9e48aa492c822fb8f10573455eaf92d7238d1c56139fd15c3731cd53d0c10e6e", "block_index": 121, - "source": "bcrt1qzyczyf4semgualrm5vymhsyc3vte8uf9stcyug", + "source": "bcrt1qutqyvw6qfn824wrr8kc5u5lhtyml7s9fg92uds", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730146151, + "block_time": 1730147172, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "23ab1040472e994db62627a5bdc82e01e6db96a9dd2e111226cf178f771a72af", + "tx_hash": "422452cf31c8190bad76ee05114c8fef9cfc2bff2289189668e02bd227432259", "block_index": 120, - "source": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730146146, + "block_time": 1730147169, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "06bd5b05718dde3c28e4409dfe5df7ef5f853b6873382d5f2b4bc4e90bd71bcd", + "tx_hash": "83350ea2ef8988a3e3c47e9bb475d84937d37345db027a863e145ec516e24496", "block_index": 119, - "source": "bcrt1qtc04kxxqg2zrc8jxw7d9uulhcqgfsw5twzty8q", + "source": "bcrt1qh2m2jullqmwfxs3vllx9krdjz6qgz0r4x3jc8s", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730146143, + "block_time": 1730147165, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "41c6dd554f78893753e66936ffebd48e0c34db2ec734077153ab9e2ceb967c32", + "tx_hash": "f2ce999766ff3d70a5dd5bcc7a744b6f9b64861ee7a2abf190bc84f85562267a", "block_index": 118, - "source": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t", + "source": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730146140, + "block_time": 1730147161, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "7dc41c84fbdcf25225dc3aa8aa5f444208e30043546ea450ca9b97e157ebc433", + "tx_hash": "52dda604707387f581bee24b3be851cf8da91a4e256837de0021558ac7fc8970", "block_index": 117, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730146137, + "block_time": 1730147158, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13587,9 +13675,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13598,7 +13686,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13608,7 +13696,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -13624,9 +13712,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "aea7cc7426759bffef79ccd4e1e4316cd4b731eaf39c4948e5fe9e54550af005", + "tx_hash": "0f8b14713e0204ae9ff12c34e2165f2d60b09ca423e678e8a5330a4016d691d1", "block_index": 142, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13635,7 +13723,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "origin": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13645,7 +13733,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146233, + "block_time": 1730147253, "asset_info": { "divisible": true, "asset_longname": null, @@ -13661,9 +13749,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "b445952967bcc37d4b9c9af9daf910e389b7ba4d19496d3a5ec371392331620b", + "tx_hash": "aa2eb896e9aab9ff1080957160ee3e8e9ccdfe2e0d1487c2aea504a2fbd46ff9", "block_index": 150, - "source": "n3NcfeHqrFcRKSpTX8sSuQd1ukhJSvpgq9", + "source": "mg2iDq9hHHgarJckVLMgpwt5YE7WjvUVPs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13671,10 +13759,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "12e174f3b45733917eadded26c45db953bc6d535141701bdec44a4ecf9b3748f", - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "last_status_tx_hash": "c1af00f61ee9d962dec73cc4efbdaaefc68742f334d37368fddf8dfefe137210", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 0, - "last_status_tx_source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "last_status_tx_source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13682,7 +13770,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146265, + "block_time": 1730147296, "asset_info": { "divisible": true, "asset_longname": null, @@ -13698,9 +13786,9 @@ Returns all dispensers }, { "tx_index": 62, - "tx_hash": "a84431367d549b443ffdb3837c6f52a401a4649d9bc4c46b51f336351e712cf3", + "tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", "block_index": 197, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13709,7 +13797,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13719,11 +13807,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146466, + "block_time": 1730147475, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -13735,18 +13823,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "last_status_tx_hash": null, - "origin": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13756,7 +13844,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -13781,7 +13869,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102` (str, required) - The hash of the dispenser to return + + dispenser_hash: `ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00` (str, required) - The hash of the dispenser to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -13793,9 +13881,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13804,7 +13892,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13814,7 +13902,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -13836,7 +13924,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102` (str, required) - The hash of the dispenser to return + + dispenser_hash: `ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00` (str, required) - The hash of the dispenser to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -13856,19 +13944,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5b9bb8529c715bea15f2be58f7affcd1300399f23a3001f3fc89e43885ee0fab", + "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13876,7 +13964,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13891,7 +13979,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -13905,19 +13993,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b58ea6d9c455cf1d2efe992936d841dab3e1b9b878c223aad78c7885de92ba17", + "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", "block_index": 140, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13925,7 +14013,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13940,7 +14028,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146224, + "block_time": 1730147244, "asset_info": { "divisible": true, "asset_longname": null, @@ -13982,20 +14070,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "babc61747028dfbe864a00fb10aa36000900c71d17ca5eca8f1f86c160f52548", + "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", "block_index": 154, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730146279, + "block_time": 1730147310, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -14020,7 +14108,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `babc61747028dfbe864a00fb10aa36000900c71d17ca5eca8f1f86c160f52548` (str, required) - The hash of the dividend to return + + dividend_hash: `f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895` (str, required) - The hash of the dividend to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -14032,20 +14120,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "babc61747028dfbe864a00fb10aa36000900c71d17ca5eca8f1f86c160f52548", + "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", "block_index": 154, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730146279, + "block_time": 1730147310, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -14067,7 +14155,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `babc61747028dfbe864a00fb10aa36000900c71d17ca5eca8f1f86c160f52548` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895` (str, required) - The hash of the dividend distribution to return + cursor (str, optional) - The last index of the credit to return + Default: `None` + limit: `5` (int, optional) - The maximum number of credit to return @@ -14090,12 +14178,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "babc61747028dfbe864a00fb10aa36000900c71d17ca5eca8f1f86c160f52548", + "event": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", "tx_index": 41, - "utxo": "0a9b090c8540204eb0c6bea32f10884dbdcdc7ea090a2d6fc9b21b92c9409655:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "utxo": "f1a36cd2b5c4271fcf32b8178c8a21d44379539553ab6b6dc0a131b992ef4b8d:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "confirmed": true, - "block_time": 1730146279, + "block_time": 1730147310, "asset_info": { "divisible": true, "asset_longname": null, @@ -14107,16 +14195,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qcuwkj6w32f4llkdhcht2lhs8xtc3v5424em4lv", + "address": "bcrt1qcz42hsauvvj7zvqys6awauwvtlxm66sq2gnk5v", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "babc61747028dfbe864a00fb10aa36000900c71d17ca5eca8f1f86c160f52548", + "event": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146279, + "block_time": 1730147310, "asset_info": { "divisible": true, "asset_longname": null, @@ -14162,27 +14250,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "af771557f657a58f1e03ab74fddba4ca96cc9f46012fd299261597878446a1fc", - "messages_hash": "5c704de741dd3b8e77f1f0c520f22c961ebc5056011217f7a4fffc52990c919e", + "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", + "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", "transaction_count": 1, - "txlist_hash": "523269ab11d7c7275899631ce241fde1191bc71074618078d9beda622aabebad", - "block_time": 1730146542 + "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", + "block_time": 1730147539 }, "tx_hash": null, "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 674, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75 }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 673, @@ -14191,14 +14279,14 @@ Returns all events "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -14209,9 +14297,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 672, @@ -14220,9 +14308,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "status": 0, - "tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "asset_info": { "divisible": true, "asset_longname": null, @@ -14232,24 +14320,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -14259,9 +14347,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 670, @@ -14289,15 +14377,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "af771557f657a58f1e03ab74fddba4ca96cc9f46012fd299261597878446a1fc", - "messages_hash": "5c704de741dd3b8e77f1f0c520f22c961ebc5056011217f7a4fffc52990c919e", + "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", + "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", "transaction_count": 1, - "txlist_hash": "523269ab11d7c7275899631ce241fde1191bc71074618078d9beda622aabebad", - "block_time": 1730146542 + "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", + "block_time": 1730147539 }, "tx_hash": null, "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } } ``` @@ -14375,16 +14463,16 @@ Returns the events filtered by event name "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -14394,9 +14482,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 669, @@ -14406,12 +14494,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 1500000000, "tx_index": 75, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "block_time": 1730146542, + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -14421,9 +14509,9 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 666, @@ -14433,39 +14521,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 1500000000, "tx_index": 75, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "block_time": 1730146542, + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_time": 1730147539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 656, "event": "CREDIT", "params": { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "block_index": 207, "calling_function": "cancel order", - "event": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", + "event": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730146529, + "block_time": 1730147530, "asset_info": { "divisible": true, "asset_longname": null, @@ -14475,24 +14563,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00005000" }, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_time": 1730146529 + "block_time": 1730147530 }, { "event_index": 645, "event": "CREDIT", "params": { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "block_index": 206, "calling_function": "mpma send", - "event": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "event": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "quantity": 10, "tx_index": 73, "utxo": null, "utxo_address": null, - "block_time": 1730146524, + "block_time": 1730147525, "asset_info": { "divisible": true, "asset_longname": null, @@ -14502,9 +14590,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "block_index": 206, - "block_time": 1730146524 + "block_time": 1730147525 } ], "next_cursor": 644, @@ -14560,27 +14648,27 @@ Returns all the dispenses { "tx_index": 75, "dispense_index": 0, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "destination": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "last_status_tx_hash": null, - "origin": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14595,7 +14683,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -14609,19 +14697,19 @@ Returns all the dispenses { "tx_index": 63, "dispense_index": 0, - "tx_hash": "13c91a5e226bbe809951bd97672f3031d9107245b3e4ab5299ad5f9307e754bc", + "tx_hash": "3eaa0359313df169f4e9a098ef8e0ab8cdd5939ab338dca7fa670dbbfb3c0111", "block_index": 197, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a84431367d549b443ffdb3837c6f52a401a4649d9bc4c46b51f336351e712cf3", + "dispenser_tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14629,7 +14717,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14644,11 +14732,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146466, + "block_time": 1730147475, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -14658,27 +14746,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "76a545977df47657ca694996b0d89b563754d7e3d7e6e88635a5b5e2ddd655f4", + "tx_hash": "d2daf0bfcb4bb4f5dd5290ec07abc6707ad98d2d570148e98fc9e471ed6ab89a", "block_index": 147, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "destination": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "destination": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "last_status_tx_hash": null, - "origin": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14693,7 +14781,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730146253, + "block_time": 1730147283, "asset_info": { "divisible": true, "asset_longname": null, @@ -14707,19 +14795,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5b9bb8529c715bea15f2be58f7affcd1300399f23a3001f3fc89e43885ee0fab", + "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14727,7 +14815,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14742,7 +14830,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -14756,19 +14844,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b58ea6d9c455cf1d2efe992936d841dab3e1b9b878c223aad78c7885de92ba17", + "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", "block_index": 140, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14776,7 +14864,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14791,7 +14879,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146224, + "block_time": 1730147244, "asset_info": { "divisible": true, "asset_longname": null, @@ -14833,10 +14921,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "destination": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -14844,7 +14932,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -14857,10 +14945,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "destination": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -14868,11 +14956,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -14881,10 +14969,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 73, - "tx_hash": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "block_index": 206, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14892,7 +14980,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730146524, + "block_time": 1730147525, "asset_info": { "divisible": true, "asset_longname": null, @@ -14905,10 +14993,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 73, - "tx_hash": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "block_index": 206, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14916,11 +15004,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730146524, + "block_time": 1730147525, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -14929,10 +15017,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 73, - "tx_hash": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "block_index": 206, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14940,11 +15028,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730146524, + "block_time": 1730147525, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -14995,14 +15083,14 @@ Returns all the issuances "result": [ { "tx_index": 68, - "tx_hash": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567", + "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -15017,20 +15105,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730146486, + "block_time": 1730147494, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 64, - "tx_hash": "c11afdaac9b596be7f1b7b213aa67e1cc3b2360dc5566dc5388c5e0d93eb5b3d", + "tx_hash": "0a9d770a1093b62fffeae30fc71fdcfbe41e571d6df0b5586d3e4e3368f6b254", "msg_index": 0, "block_index": 198, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t", - "issuer": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t", + "source": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", + "issuer": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", "transfer": false, "callable": false, "call_date": 0, @@ -15045,20 +15133,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730146469, + "block_time": 1730147479, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "008a089de6c3b027c215e285abb61355f96f3c800e0b8b8980bac499a00fc56b", + "tx_hash": "ecedf49fefa307a78131f6b1d7f52c17b4ececb2e16f6ace25f1e6735fe7090f", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -15073,20 +15161,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730146316, + "block_time": 1730147339, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "46c3e96bb3baf10e4bf6d73e6229478349243117097c6cc77c3b827bb46076be", + "tx_hash": "4ef076610716e47917b7d9a1703541120e00b089e1da54ae1a615438306de745", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -15101,20 +15189,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730146313, + "block_time": 1730147334, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "9464b995c9d7ac49fafffbca07dd001741049bad5a26e88e531296a769d8c1a5", + "tx_hash": "4a865f981bedcaa6f59c08c2b25f1e47c0c1db264cac059bd89ad1011fd381e0", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -15129,7 +15217,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730146309, + "block_time": 1730147330, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15144,7 +15232,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567` (str, required) - The hash of the transaction to return + + tx_hash: `b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15156,14 +15244,14 @@ Returns the issuances of a block { "result": { "tx_index": 68, - "tx_hash": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567", + "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -15178,7 +15266,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730146486, + "block_time": 1730147494, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15210,16 +15298,16 @@ Returns all sweeps "result": [ { "tx_index": 60, - "tx_hash": "2fe44fafe5dc6fed656ee0ae1a3030fee5ac7764531e086c0824911cba33019a", + "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", "block_index": 194, - "source": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730146454, + "block_time": 1730147463, "fee_paid_normalized": "0.00600000" } ], @@ -15233,7 +15321,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `2fe44fafe5dc6fed656ee0ae1a3030fee5ac7764531e086c0824911cba33019a` (str, required) - The hash of the transaction to return + + tx_hash: `eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15246,16 +15334,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 60, - "tx_hash": "2fe44fafe5dc6fed656ee0ae1a3030fee5ac7764531e086c0824911cba33019a", + "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", "block_index": 194, - "source": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730146454, + "block_time": 1730147463, "fee_paid_normalized": "0.00600000" } ], @@ -15289,9 +15377,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "d93f2f554dff8c8f834a6f3edfcd5675bfd43cadf382fdc3ec07953a491925cf", + "tx_hash": "524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e", "block_index": 138, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15299,14 +15387,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730146217, + "block_time": 1730147237, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "75d373adf0de96f6ed32dc878f287920ccf7cdb7b9c5012fcd6ec9ef3d3939c5", + "tx_hash": "18aaf369ee7b22607393e152af0efd92979dee2ef001c12f68449f3dd6a3c100", "block_index": 137, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15314,7 +15402,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730146212, + "block_time": 1730147234, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15328,7 +15416,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `d93f2f554dff8c8f834a6f3edfcd5675bfd43cadf382fdc3ec07953a491925cf` (str, required) - The hash of the transaction to return + + tx_hash: `524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15340,9 +15428,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "d93f2f554dff8c8f834a6f3edfcd5675bfd43cadf382fdc3ec07953a491925cf", + "tx_hash": "524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e", "block_index": 138, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15350,7 +15438,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730146217, + "block_time": 1730147237, "fee_fraction_int_normalized": "0.00000000" } } @@ -15387,10 +15475,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "adf5bd6deaba6cfeb6ec892a6fd69ba021d135559674853ad7bde8145789e4f9", + "tx_hash": "0998f235a3feba0746e143f431c1f698ca50ae3f8745598a4671168e9c151cef", "tx_index": 42, "block_index": 155, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15415,7 +15503,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730146283, + "block_time": 1730147313, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15424,10 +15512,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "91ab2f030c6b3d93359b217216415696e99d5800a0423a27dd32b8dd72f6b7c1", + "tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", "tx_index": 22, "block_index": 135, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15452,7 +15540,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730146205, + "block_time": 1730147227, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15464,10 +15552,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "92b6936e0fd4ebfe23aa10834e598f9eb5efad5d9a03db25cf6e6dec807c352a", + "tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", "tx_index": 18, "block_index": 131, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15492,7 +15580,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730146189, + "block_time": 1730147211, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15504,10 +15592,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "813fabeb4671db0750f64a1def89364f381970217838a1cd7c35859ed53cecf0", + "tx_hash": "ef648a52d64c60ed013aa174ae6a48421d17f923b88d3aba2e05b58ef0c76886", "tx_index": 14, "block_index": 130, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15532,7 +15620,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730146186, + "block_time": 1730147206, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15544,10 +15632,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "f45ea10dc40bf578b6b99d7e2c27432d1885c5cee4c83c1c4a8b2503e245ab7d", + "tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", "tx_index": 10, "block_index": 125, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15572,7 +15660,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730146166, + "block_time": 1730147187, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15641,22 +15729,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "7e828b53dcd7e0b212fa0b15a0cf8a214c551ab1d1c67d4676345eda71be1d6e", + "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "91ab2f030c6b3d93359b217216415696e99d5800a0423a27dd32b8dd72f6b7c1", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146209, + "block_time": 1730147231, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -15665,22 +15753,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "28123f2716e40a4c1ecebe4c55a1bb6717ecb5d0a0e3efbb6a14b6f9288cf13c", + "tx_hash": "a9ec529d035361f0f926d689b0a23cdf4fef412a2be429d5399f71ab7fbd086a", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "92b6936e0fd4ebfe23aa10834e598f9eb5efad5d9a03db25cf6e6dec807c352a", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146201, + "block_time": 1730147222, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -15689,22 +15777,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "f0189ff8055fae52b2a895de0c0965efe86ed68c8614b80b157036b8f4b7af42", + "tx_hash": "93c5f036c8e324dda6f5e9e84e15f096906d0974ea4003bdf51cd4bd013c3ad4", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "92b6936e0fd4ebfe23aa10834e598f9eb5efad5d9a03db25cf6e6dec807c352a", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146197, + "block_time": 1730147218, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -15713,22 +15801,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "aadefa8b06c22ae58819261b95755f51b6ac15856c478e7a295b1c5f193d8130", + "tx_hash": "24ba6e5e817679a1c81bd41098b8ea21134e6fd0493e343e7ce171576bae5ef2", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "92b6936e0fd4ebfe23aa10834e598f9eb5efad5d9a03db25cf6e6dec807c352a", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146193, + "block_time": 1730147215, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -15737,22 +15825,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "a97099230853cfb3c9c2f0d6acaa6a7894cfa01aea8e4799ea71f63225118d83", + "tx_hash": "ddcb643e460d09cded92379e8a56186db44c87c5c1fac5fb1e41c45b4be96ee7", "tx_index": 17, "block_index": 129, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", - "fairminter_tx_hash": "813fabeb4671db0750f64a1def89364f381970217838a1cd7c35859ed53cecf0", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "fairminter_tx_hash": "ef648a52d64c60ed013aa174ae6a48421d17f923b88d3aba2e05b58ef0c76886", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146182, + "block_time": 1730147202, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -15771,7 +15859,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `7e828b53dcd7e0b212fa0b15a0cf8a214c551ab1d1c67d4676345eda71be1d6e` (str, required) - The hash of the fairmint to return + + tx_hash: `3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15782,22 +15870,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "7e828b53dcd7e0b212fa0b15a0cf8a214c551ab1d1c67d4676345eda71be1d6e", + "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "91ab2f030c6b3d93359b217216415696e99d5800a0423a27dd32b8dd72f6b7c1", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146209, + "block_time": 1730147231, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -15815,7 +15903,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t,bcrt1qtc04kxxqg2zrc8jxw7d9uulhcqgfsw5twzty8q` (str, required) - The addresses to search for + + addresses: `bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf,bcrt1qh2m2jullqmwfxs3vllx9krdjz6qgz0r4x3jc8s` (str, required) - The addresses to search for + unconfirmed (bool, optional) - Include unconfirmed transactions + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -15834,8 +15922,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "eeaa322a0230cc749b914fa52cc3f2d2e5094f91fb4cd8f37f24402d8459ba39", - "address": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t" + "txid": "c98bca33812483eb341164f4c5a4ba9d07609a460ff2889e15c58332db2b7878", + "address": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf" }, { "vout": 0, @@ -15843,8 +15931,8 @@ Returns a list of unspent outputs for a list of addresses "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "9a7aba5837431573d17d138f028df4c379a8b901c27ee3add94dc9679894a722", - "address": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t" + "txid": "39b475d96fe427bf70a7413c344bbfa88768c4f038da4a0efceb2d0a3b5065bf", + "address": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf" }, { "vout": 2, @@ -15852,8 +15940,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 52, "amount": 0.001, - "txid": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e", - "address": "bcrt1qtc04kxxqg2zrc8jxw7d9uulhcqgfsw5twzty8q" + "txid": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd", + "address": "bcrt1qh2m2jullqmwfxs3vllx9krdjz6qgz0r4x3jc8s" } ], "next_cursor": null, @@ -15866,7 +15954,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx` (str, required) - The address to search for + + address: `bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0` (str, required) - The address to search for + unconfirmed: `True` (bool, optional) - Include unconfirmed transactions + Default: `True` + only_tx_hashes: `True` (bool, optional) - Return only the tx hashes @@ -15882,28 +15970,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "3f0299bac8352482edc0eccc2d4e99c9f0f5ac3823ed8d6479edf2fe7dfcd605" + "tx_hash": "1e694ec5568f83f06a53f19617cb3373a81673e566a3f4674943004b4241310b" }, { - "tx_hash": "1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13" + "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68" }, { - "tx_hash": "5392c98ba0d3b4a1e9cc178928aef013fb91044efbadc13b3ef0b481e3f75652" + "tx_hash": "830a7b9e1f16656de3d506078bbeb7daa4cac5f7a80eb58cd6d4e749dea4b48c" }, { - "tx_hash": "ccb9b7d1943fd54784287d8b30c8ae918b05b4040903571ae381abb13a165f62" + "tx_hash": "48a65ca47e1f55ab2c324ea59ab0c61e1948101ffb108e7a0b1861245bfba996" }, { - "tx_hash": "cf7a03dadb21efb85537e9333e1f8b08821bc84cbf49e79f3da6cd6d6c50e57b" + "tx_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9" }, { - "tx_hash": "ada2535c1fa5b9d7e5607c6cca03c5bd0d6d41b80278ddede04442c5a7a7cb8e" + "tx_hash": "0e342a2ee7897e26da5b3b27ef89ed24cb2f5db944eb6471b2b3b214318205e4" }, { - "tx_hash": "2fe44fafe5dc6fed656ee0ae1a3030fee5ac7764531e086c0824911cba33019a" + "tx_hash": "c4c02b36eb4f5d00ec94e34a9caeeb533405c89dfe49d307bb4085c54b8a35e6" }, { - "tx_hash": "0ff9990de057ad4347e03fd447c857a01357fd8d37dad2736ba8261747d4d0e8" + "tx_hash": "c460c8c1cea374657e76abf6b2e42aa139e55eeab89569949f94ce705bdc60f4" } ], "next_cursor": null, @@ -15916,7 +16004,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9` (str, required) - The address to search for. + + address: `bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq` (str, required) - The address to search for. + block_index (int, optional) - The block index to search from. + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -15929,8 +16017,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 9, - "tx_hash": "c380d8ecde78e92e90bb3298e184cf7f97e083d1b7a46fef23d54e4869df66d3" + "block_index": 4, + "tx_hash": "258b682c0b3b5c300a74faa54c3b3c75e72556d56bbf097eebb51d521068de57" } } ``` @@ -15940,7 +16028,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t` (str, required) - The address to search for + + address: `bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf` (str, required) - The address to search for + unconfirmed (bool, optional) - Include unconfirmed transactions + Default: `False` + unspent_tx_hash (str, optional) - Filter by unspent_tx_hash @@ -15961,7 +16049,7 @@ Returns a list of unspent outputs for a specific address "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "eeaa322a0230cc749b914fa52cc3f2d2e5094f91fb4cd8f37f24402d8459ba39" + "txid": "c98bca33812483eb341164f4c5a4ba9d07609a460ff2889e15c58332db2b7878" }, { "vout": 0, @@ -15969,7 +16057,7 @@ Returns a list of unspent outputs for a specific address "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "9a7aba5837431573d17d138f028df4c379a8b901c27ee3add94dc9679894a722" + "txid": "39b475d96fe427bf70a7413c344bbfa88768c4f038da4a0efceb2d0a3b5065bf" } ], "next_cursor": null, @@ -15982,7 +16070,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0` (str, required) - Address to get pubkey for. + + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - Address to get pubkey for. + provided_pubkeys (str, optional) - Comma separated list of provided pubkeys. + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -15994,7 +16082,7 @@ Get pubkey for an address. ``` { - "result": "027036d44abfb4df852f3c4f59791560960703a4b1f71c106e783ddc73b38059fb" + "result": "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e" } ``` @@ -16003,7 +16091,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d` (str, required) - The transaction hash + + tx_hash: `39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2` (str, required) - The transaction hash + format: `hex` (str, optional) - Whether to return JSON output or raw hex + Default: `json` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -16015,7 +16103,7 @@ Get a transaction from the blockchain ``` { - "result": "020000000001012e28772d2e036f95ff1b248f7af0ad342a4f53d3315277b3a4bbe1fb8fc1ef870100000000ffffffff03e803000000000000160014ca3b94a05ec1dc09d7418d591bec418e3b2ec34a00000000000000000c6a0aa85eec846ff348436c54dced082701000000160014257dd6aad0f2f16058eba326e25c9a45af5f8f320247304402206aacfed176e6968c27113708ddf4fe44be16feba80c07eb6a6ca73a41bb21c7502204d247921542b6df0a5c736bbd502b5577dc9bc5cec73ce6282a98f843f7a7b85012102ace0460805a867b49c8d832e05c5c361af93fdaf9345011036eeb261ad10f56200000000" + "result": "02000000000101dd6036f00dd0c18b8a639d86de226d3296f7c720ec11b17defc3204e8b01d01e0100000000ffffffff03e803000000000000160014683c2d33034856d0b1db09c7b7e1773ae80add5400000000000000000c6a0a11eda9ba1cdb99830cfaeb14092701000000160014bf4792b14b11b425a171e4605d662e7cf9ed8d63024730440220242fd2fafb6e456eeb2416629f59e8c033bd124a870f3cec20c7784517f511be02203ce32ad5e5f27bbdccda125b876ff10b8d6a69fb4ee4882eba632d663a46554b012102a59bfe4c5aff502eec07b4831b733657f409185a43056c6a5a250557f9e3b45d00000000" } ``` @@ -16037,7 +16125,7 @@ Get the fee per kilobyte for a transaction to be confirmed in `conf_target` bloc ``` { - "result": 61397 + "result": 58701 } ``` @@ -16110,27 +16198,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "tx_index": 76 }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "memo": null, "quantity": 10000, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "status": "valid", - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "tx_index": 76, "asset_info": { "divisible": true, @@ -16141,22 +16229,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "CREDIT", "params": { - "address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -16166,22 +16254,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "XCP", "block_index": 208, - "event": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -16191,30 +16279,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730146546.5615797, + "block_time": 1730147542.563512, "btc_amount": 0, - "data": "0200000000000000010000000000002710803c5b324bad0b5d20f0f3f24368314a7712e33655", + "data": "0200000000000000010000000000002710803970def27ed5459d1126af8f037ccb8fe4aeac4d", "destination": "", "fee": 10000, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "tx_index": 76, - "utxos_info": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7:1", + "utxos_info": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "memo": null, "asset_info": { "divisible": true, @@ -16228,7 +16316,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 } ], "next_cursor": null, @@ -16259,19 +16347,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "CREDIT", "params": { - "address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -16281,7 +16369,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 } ], "next_cursor": null, @@ -16294,7 +16382,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7` (str, required) - The hash of the transaction to return + + tx_hash: `46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor (str, optional) - The last event index to return @@ -16314,27 +16402,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "tx_index": 76 }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "memo": null, "quantity": 10000, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "status": "valid", - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "tx_index": 76, "asset_info": { "divisible": true, @@ -16345,22 +16433,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "CREDIT", "params": { - "address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -16370,22 +16458,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "XCP", "block_index": 208, - "event": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -16395,30 +16483,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730146546.5615797, + "block_time": 1730147542.563512, "btc_amount": 0, - "data": "0200000000000000010000000000002710803c5b324bad0b5d20f0f3f24368314a7712e33655", + "data": "0200000000000000010000000000002710803970def27ed5459d1126af8f037ccb8fe4aeac4d", "destination": "", "fee": 10000, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "tx_index": 76, - "utxos_info": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7:1", + "utxos_info": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "memo": null, "asset_info": { "divisible": true, @@ -16432,7 +16520,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 2ba3044499..244cc07b42 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -131,6 +131,16 @@ False, "(API v1 only) Returns a single hex-encoded string instead of an array", ), + "use_utxo_with_balances": ( + bool, + False, + "Use UTXO with balances", + ), + "exclude_utxo_with_balances": ( + bool, + False, + "Exclude silently UTXO with balances instead of raising an exception", + ), } diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index 24972c9919..a9238dffd9 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -191,6 +191,8 @@ def construct( p2sh_source_multisig_pubkeys=None, p2sh_source_multisig_pubkeys_required=None, p2sh_pretx_txid=None, + use_utxo_with_balances=False, + exclude_utxo_with_balances=False, ): # Extract tx_info (source, destinations, data) = tx_info @@ -236,6 +238,7 @@ def construct( """Inputs""" (inputs, change_output, btc_in, final_fee) = transaction_inputs.prepare_inputs( + db, source, data, destination_outputs, @@ -256,6 +259,8 @@ def construct( multisig_dust_size, disable_utxo_locks, exclude_utxos, + use_utxo_with_balances, + exclude_utxo_with_balances, ) """Finish""" diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py index 405bb03949..8f14dcce00 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py @@ -7,7 +7,7 @@ import bitcoin as bitcoinlib import cachetools -from counterpartycore.lib import backend, config, exceptions, script, util +from counterpartycore.lib import backend, config, exceptions, ledger, script, util from counterpartycore.lib.transaction_helper import p2sh_serializer, transaction_outputs logger = logging.getLogger(config.LOGGER_NAME) @@ -169,6 +169,7 @@ def sort_unspent_txouts(unspent, dust_size=config.DEFAULT_REGULAR_DUST_SIZE): def construct_coin_selection( + db, size_for_fee, encoding, data_array, @@ -186,6 +187,8 @@ def construct_coin_selection( multisig_dust_size, disable_utxo_locks, exclude_utxos, + use_utxo_with_balances, + exclude_utxo_with_balances, ): if inputs_set: if isinstance(inputs_set, str): @@ -242,7 +245,22 @@ def construct_coin_selection( # self.logger.debug(f"Sorted candidate UTXOs: {[print_coin(coin) for coin in unspent]}") use_inputs = unspent - use_inputs = unspent = UTXOLocks().filter_unspents(source, unspent, exclude_utxos) + # remove locked UTXOs + unspent = UTXOLocks().filter_unspents(source, unspent, exclude_utxos) + + # remove UTXOs with balances if not specified + if not use_utxo_with_balances: + filtered_unspent = [] + for utxo in unspent: + str_input = f"{utxo['txid']}:{utxo['vout']}" + if len(ledger.get_utxo_balances(db, str_input)) > 0: + if not exclude_utxo_with_balances: + raise exceptions.ComposeError(f"invalid UTXO: {str_input}") + else: + filtered_unspent.append(utxo) + use_inputs = unspent = filtered_unspent + else: + use_inputs = unspent # dont override fee_per_kb if specified estimate_fee_per_kb = None @@ -347,6 +365,7 @@ def construct_coin_selection( def prepare_inputs( + db, source, data, destination_outputs, @@ -367,6 +386,8 @@ def prepare_inputs( multisig_dust_size, disable_utxo_locks, exclude_utxos, + use_utxo_with_balances, + exclude_utxo_with_balances, ): btc_in = 0 final_fee = 0 @@ -397,6 +418,7 @@ def prepare_inputs( if not (encoding == "p2sh" and p2sh_pretx_txid): inputs, change_quantity, n_btc_in, n_final_fee = construct_coin_selection( + db, size_for_fee, encoding, data_array, @@ -414,6 +436,8 @@ def prepare_inputs( multisig_dust_size, disable_utxo_locks, exclude_utxos, + use_utxo_with_balances, + exclude_utxo_with_balances, ) btc_in = n_btc_in final_fee = n_final_fee diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index db9f16b5d3..152309ac6b 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -11072,6 +11072,13 @@ "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, + { + "name": "use_utxo_with_balances", + "type": "bool", + "default": false, + "description": "Use UTXO with balances", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11262,6 +11269,13 @@ "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, + { + "name": "use_utxo_with_balances", + "type": "bool", + "default": false, + "description": "Use UTXO with balances", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11434,6 +11448,13 @@ "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, + { + "name": "use_utxo_with_balances", + "type": "bool", + "default": false, + "description": "Use UTXO with balances", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11613,6 +11634,13 @@ "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, + { + "name": "use_utxo_with_balances", + "type": "bool", + "default": false, + "description": "Use UTXO with balances", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11785,6 +11813,13 @@ "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, + { + "name": "use_utxo_with_balances", + "type": "bool", + "default": false, + "description": "Use UTXO with balances", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11969,6 +12004,13 @@ "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, + { + "name": "use_utxo_with_balances", + "type": "bool", + "default": false, + "description": "Use UTXO with balances", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12179,6 +12221,13 @@ "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, + { + "name": "use_utxo_with_balances", + "type": "bool", + "default": false, + "description": "Use UTXO with balances", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12363,6 +12412,13 @@ "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, + { + "name": "use_utxo_with_balances", + "type": "bool", + "default": false, + "description": "Use UTXO with balances", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12576,6 +12632,13 @@ "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, + { + "name": "use_utxo_with_balances", + "type": "bool", + "default": false, + "description": "Use UTXO with balances", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12788,6 +12851,13 @@ "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, + { + "name": "use_utxo_with_balances", + "type": "bool", + "default": false, + "description": "Use UTXO with balances", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12990,6 +13060,13 @@ "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, + { + "name": "use_utxo_with_balances", + "type": "bool", + "default": false, + "description": "Use UTXO with balances", + "required": false + }, { "name": "verbose", "type": "bool", @@ -13195,6 +13272,13 @@ "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, + { + "name": "use_utxo_with_balances", + "type": "bool", + "default": false, + "description": "Use UTXO with balances", + "required": false + }, { "name": "verbose", "type": "bool", @@ -13379,6 +13463,13 @@ "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, + { + "name": "use_utxo_with_balances", + "type": "bool", + "default": false, + "description": "Use UTXO with balances", + "required": false + }, { "name": "verbose", "type": "bool", @@ -13557,6 +13648,13 @@ "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, + { + "name": "use_utxo_with_balances", + "type": "bool", + "default": false, + "description": "Use UTXO with balances", + "required": false + }, { "name": "verbose", "type": "bool", @@ -13841,6 +13939,13 @@ "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, + { + "name": "use_utxo_with_balances", + "type": "bool", + "default": false, + "description": "Use UTXO with balances", + "required": false + }, { "name": "verbose", "type": "bool", @@ -14020,6 +14125,13 @@ "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, + { + "name": "use_utxo_with_balances", + "type": "bool", + "default": false, + "description": "Use UTXO with balances", + "required": false + }, { "name": "verbose", "type": "bool", @@ -14205,6 +14317,13 @@ "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, + { + "name": "use_utxo_with_balances", + "type": "bool", + "default": false, + "description": "Use UTXO with balances", + "required": false + }, { "name": "verbose", "type": "bool", @@ -14389,6 +14508,13 @@ "description": "(API v1 only) Returns a single hex-encoded string instead of an array", "required": false }, + { + "name": "use_utxo_with_balances", + "type": "bool", + "default": false, + "description": "Use UTXO with balances", + "required": false + }, { "name": "verbose", "type": "bool", diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index b0d23f010a..c1b6e114a5 100644 --- a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json +++ b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json @@ -3,61 +3,61 @@ "result": [ { "block_index": 208, - "block_hash": "57df81dd0c83bf7c8d47680b1cc451f7132f2b28ab8a8552d803ee58419522c9", - "block_time": 1730146542, - "previous_block_hash": "56ae91d142f683a09d940b258acad4656326d617818b4c9ab8d3e465c7498eb4", + "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", + "block_time": 1730147539, + "previous_block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", "difficulty": 545259519, - "ledger_hash": "af771557f657a58f1e03ab74fddba4ca96cc9f46012fd299261597878446a1fc", - "txlist_hash": "523269ab11d7c7275899631ce241fde1191bc71074618078d9beda622aabebad", - "messages_hash": "5c704de741dd3b8e77f1f0c520f22c961ebc5056011217f7a4fffc52990c919e", + "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", + "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", + "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "56ae91d142f683a09d940b258acad4656326d617818b4c9ab8d3e465c7498eb4", - "block_time": 1730146529, - "previous_block_hash": "071fed59eb7bad3d093eab7ea29ceede42014e64cafcd8efb9dbff512ae65ffd", + "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", + "block_time": 1730147530, + "previous_block_hash": "01846b45f3471c31292a5664be521ee633e3113f741f72dafb1bf6543e16d259", "difficulty": 545259519, - "ledger_hash": "5ab2cb84987e793b99ade7732c6b1688882bd1cdf1b3f7c404c5db987ded5d1b", - "txlist_hash": "ec7586785056d9e91ad17f871b07673dfcfae5fbd12bf50cac763f8a35298e13", - "messages_hash": "1f351285ae7106abe2237b6f656b4fae82e2076efe6fcc53d1afba0c2929c104", + "ledger_hash": "ac0e12a27a7095f9b6950e51b5c19d8bb6e9f5f645489c0d4898a3d6afae586a", + "txlist_hash": "6478f1ea88d777dd859ecc2d26434b2b10bd8b347825cca5122f9ac6fac07ec5", + "messages_hash": "0c2fd82e70a9920a39eb3bb2efadb7c20f3f790a86774945f11c49b35278c16b", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "071fed59eb7bad3d093eab7ea29ceede42014e64cafcd8efb9dbff512ae65ffd", - "block_time": 1730146524, - "previous_block_hash": "78f8b04445c886a48dfbe1b373998122c3c90b4233045d27b886f8ecc0541aa0", + "block_hash": "01846b45f3471c31292a5664be521ee633e3113f741f72dafb1bf6543e16d259", + "block_time": 1730147525, + "previous_block_hash": "3873d38f2cf1b4e0638c2afeefa858f06618aa1b2fbcaa8fa43d7beadd77ea33", "difficulty": 545259519, - "ledger_hash": "1122ca78eab140b53322dcfb7f46518bc32e2463ab80906be0f6c8d3c78b6641", - "txlist_hash": "857879f9e3df50de92a96f940cf84c6ec0fabc1e63684a3696cd78854f39b38e", - "messages_hash": "b16456f3a5c656e813a63f0644aac4825e1ae43658d044ad2bc022194ac5fbd0", + "ledger_hash": "7e8b6e3d55a0309fc8f54172602464cfcd4395a6a424927c0056173dfa15467a", + "txlist_hash": "ae305e97a3ca2fee8f6a95d548949e897c1b227625bd653d810b3f769c7d65f9", + "messages_hash": "8aee0249f0e25b26ae34201e5f3afa848a977216ac464bd377708dcffbee612f", "transaction_count": 1, "confirmed": true }, { "block_index": 205, - "block_hash": "78f8b04445c886a48dfbe1b373998122c3c90b4233045d27b886f8ecc0541aa0", - "block_time": 1730146511, - "previous_block_hash": "0f715b69edf13726dc1d1d27b09dddeb5086bae38268ef9456b5d49c6ff906b6", + "block_hash": "3873d38f2cf1b4e0638c2afeefa858f06618aa1b2fbcaa8fa43d7beadd77ea33", + "block_time": 1730147521, + "previous_block_hash": "5d35bb0804bc053ef7d59c9d0c4a9f4bcd4bc52272146001da9b7757c898d039", "difficulty": 545259519, - "ledger_hash": "c8955caef64c282e238c9cec15c574b7fd564ce4cef8ca0ec31ac26b32de04ef", - "txlist_hash": "2a22acc267a5091648b5d0f36f5fd22ed7122c2562dfcea5d8929295a4479852", - "messages_hash": "2b96b7b946634ab1343745a1df563754816018755e0e10bd2fa2ee6e613c7a7b", + "ledger_hash": "e9ce7f40c431517eb719f00dbd6aec19395a35fdf1e169c6577059af09378484", + "txlist_hash": "afe39379f1e509b56e07873f33b98342581f9aaf90e155e2ed9165d469f622d3", + "messages_hash": "72a9b1cd32541e7f93a8eff9b694d19291e09fd9863364ce0ccc6240dac5d3dd", "transaction_count": 1, "confirmed": true }, { "block_index": 204, - "block_hash": "0f715b69edf13726dc1d1d27b09dddeb5086bae38268ef9456b5d49c6ff906b6", - "block_time": 1730146507, - "previous_block_hash": "0475da261e7efed25d02d43383b7aaa9cec5f58046c442761793288877b0a000", + "block_hash": "5d35bb0804bc053ef7d59c9d0c4a9f4bcd4bc52272146001da9b7757c898d039", + "block_time": 1730147517, + "previous_block_hash": "0770bd3567046a0c047163accfc399966280bdbd87644d765df50a5819c333f3", "difficulty": 545259519, - "ledger_hash": "1c33945789447aeef5775d68eb644231699f51daed7d5ee7bd41af7359552534", - "txlist_hash": "640bdfe7ba1b53dfb565367c27749f57b64e9b25a699c0d68f7cd9a3af9d44e1", - "messages_hash": "ab08738e31a2c291129b5ea6093512445cd2d2f6af7e0b3e40177c3daf9b0b56", + "ledger_hash": "1a0c19c4bd1e6608e2e33b517d6fb5ac32212fad8471f74cb0e1e6c5438a15f4", + "txlist_hash": "e66c89aefbfe780c7f0f18a77bf0823ba616f804e47aab1beabca6a84813f602", + "messages_hash": "ea18e0508f4e556ffde5975a7754fc7271808f9f7dbb042adf736443ecdfb7d6", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 208, - "block_hash": "57df81dd0c83bf7c8d47680b1cc451f7132f2b28ab8a8552d803ee58419522c9", - "block_time": 1730146542, - "previous_block_hash": "56ae91d142f683a09d940b258acad4656326d617818b4c9ab8d3e465c7498eb4", + "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", + "block_time": 1730147539, + "previous_block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", "difficulty": 545259519, - "ledger_hash": "af771557f657a58f1e03ab74fddba4ca96cc9f46012fd299261597878446a1fc", - "txlist_hash": "523269ab11d7c7275899631ce241fde1191bc71074618078d9beda622aabebad", - "messages_hash": "5c704de741dd3b8e77f1f0c520f22c961ebc5056011217f7a4fffc52990c919e", + "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", + "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", + "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 208, - "block_hash": "57df81dd0c83bf7c8d47680b1cc451f7132f2b28ab8a8552d803ee58419522c9", - "block_time": 1730146542, - "previous_block_hash": "56ae91d142f683a09d940b258acad4656326d617818b4c9ab8d3e465c7498eb4", + "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", + "block_time": 1730147539, + "previous_block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", "difficulty": 545259519, - "ledger_hash": "af771557f657a58f1e03ab74fddba4ca96cc9f46012fd299261597878446a1fc", - "txlist_hash": "523269ab11d7c7275899631ce241fde1191bc71074618078d9beda622aabebad", - "messages_hash": "5c704de741dd3b8e77f1f0c520f22c961ebc5056011217f7a4fffc52990c919e", + "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", + "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", + "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_hash": "57df81dd0c83bf7c8d47680b1cc451f7132f2b28ab8a8552d803ee58419522c9", - "block_time": 1730146542, - "source": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", - "destination": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", + "block_time": 1730147539, + "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1 69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "af771557f657a58f1e03ab74fddba4ca96cc9f46012fd299261597878446a1fc", - "messages_hash": "5c704de741dd3b8e77f1f0c520f22c961ebc5056011217f7a4fffc52990c919e", + "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", + "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", "transaction_count": 1, - "txlist_hash": "523269ab11d7c7275899631ce241fde1191bc71074618078d9beda622aabebad", - "block_time": 1730146542 + "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", + "block_time": 1730147539 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75 }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d" + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" }, { "event_index": 673, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d" + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" }, { "event_index": 672, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "status": 0, - "tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d" + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d" + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" } ], "next_cursor": 670, @@ -256,16 +256,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d" + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" }, { "event_index": 669, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 1500000000, "tx_index": 75, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "block_time": 1730146542, + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d" + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" }, { "event_index": 666, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 1500000000, "tx_index": 75, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "block_time": 1730146542, + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_time": 1730147539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d" + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 208, - "address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "utxo": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "utxo_address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "utxo": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "utxo_address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "utxo": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "utxo_address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "utxo": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "utxo_address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", + "object_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", "block_index": 207, "confirmed": true, - "block_time": 1730146529 + "block_time": 1730147530 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 58, - "tx_hash": "94cbba7505e891b909a9ad4681d0652ed8677e2f6c6176d66189f53a154d0875", + "tx_hash": "62c09c5f1959d825532f5594282ad39694424a743802d560f520b42aab6c4ee3", "block_index": 192, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "offer_hash": "44cd686fa15d9508241d20e5c7c2c60e8907dd3a651f43acf2b465f65fe3a0b0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "offer_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", "status": "valid", "confirmed": true, - "block_time": 1730146437 + "block_time": 1730147455 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 61, - "tx_hash": "43def1687dbb4eea99088dc74670dda0794297cef98d654356311c8e8f55b79f", + "tx_hash": "5709751e42222eb3fe342e7c1bdb4cfc6f20f4a9eec48c8dd200a08f1b4838bb", "block_index": 195, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730146457, + "block_time": 1730147466, "asset_info": { "divisible": true, "asset_longname": null, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 68, - "tx_hash": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567", + "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730146486, + "block_time": 1730147494, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "destination": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -565,10 +565,10 @@ }, { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "destination": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 75, "dispense_index": 0, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "destination": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "last_status_tx_hash": null, - "origin": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -650,16 +650,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "2fe44fafe5dc6fed656ee0ae1a3030fee5ac7764531e086c0824911cba33019a", + "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", "block_index": 194, - "source": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730146454, + "block_time": 1730147463, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "adf5bd6deaba6cfeb6ec892a6fd69ba021d135559674853ad7bde8145789e4f9", + "tx_hash": "0998f235a3feba0746e143f431c1f698ca50ae3f8745598a4671168e9c151cef", "tx_index": 42, "block_index": 155, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730146283, + "block_time": 1730147313, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "7e828b53dcd7e0b212fa0b15a0cf8a214c551ab1d1c67d4676345eda71be1d6e", + "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "91ab2f030c6b3d93359b217216415696e99d5800a0423a27dd32b8dd72f6b7c1", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146209, + "block_time": 1730147231, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_hash": "57df81dd0c83bf7c8d47680b1cc451f7132f2b28ab8a8552d803ee58419522c9", - "block_time": 1730146542, - "source": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", - "destination": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", + "block_time": 1730147539, + "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1 69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 74, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_hash": "56ae91d142f683a09d940b258acad4656326d617818b4c9ab8d3e465c7498eb4", - "block_time": 1730146529, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", + "block_time": 1730147530, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159:1", + "utxos_info": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -816,18 +816,53 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", + "data": "03000380d2621d21756eb8ebb22ce432b26450ae670d208f803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2040000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "8bd2e6a22d07b0d9e157e44c8299644d758c83305c565beb4657a7ad6ce9237e", + "hash": "03eb7b2120bd3de02c1ad129d11a48c9acb377c6b0bd799813367fdd1f7c8145", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "529e0c801ebb4d5203b89593cfc4a5b0fd302cfdfa29d31283cd1a8ebd5b654b", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "716491af6c6b1530054e03b9887305dbb982136f0e42b61c148706e10e084501", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "181a23460a56059dffe405360c4c1d35cb503f5ff0452f951ae0ba63213ba732", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "c0a6cb160237308a59dacf6f68a88f6e33e6446b653dc48f2bb8b6b813ebc6dc", + "n": 0, + "script_sig": "", + "sequence": 4294967295, + "coinbase": false + }, + { + "hash": "d7153b6c88b84e9727c746dde7931bd12b0aec2662aaa32f7bc4475ba0bf6f56", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -836,69 +871,93 @@ ], "vout": [ { - "value": 0, - "script_pub_key": "6a3387b6ed65e93b8986345c7aa741b22b101d4852ca862222197cf2b7f676f9904dfdcbbff01847f072bc43bb362dcafd4f4f4d35" + "value": 1000, + "script_pub_key": "512102a643a4ff08f7a6ce081b9dc80ce7fa92204726be3ebc2f811acf90796fec6f442102f1ca1cbe98a71273ada4d14ac84876c0836317d039e09f02327fe9039d5ccdf6210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53ae" + }, + { + "value": 1000, + "script_pub_key": "512103a643a4ff08f7a6ce08b30f47ffe24a40cc509fdbf92e436528781749494fb61b2102d1459c87e879e0276d54d9ee522df9c3ffa89834974657efbf27fb32e69bcc80210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53ae" + }, + { + "value": 1000, + "script_pub_key": "5121028743a4ff08f7a6ce08189dcb8c35188f01324806d50e574e43569f50498b62902103d1459c87e879e00d78e14c5beee7f9c3ffa89834974cd282da4a9401669bcc52210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53ae" }, { - "value": 4999990000, - "script_pub_key": "0014797d6ec17db07615f16099cd8ba63f5d8ef19e26" + "value": 29999987000, + "script_pub_key": "0014527fc786dce354681ff9800bc9b06a2a44fd524e" } ], "vtxinwit": [ - "30440220526060e8b142fd6aa3b387d53335a4184613711ad9f08ac7dd87257130e182e8022011fa19fa5995cc901f2d7759e1804843324fc4aca75ede11899865dac09663da01", - "027036d44abfb4df852f3c4f59791560960703a4b1f71c106e783ddc73b38059fb" + "304402205f607226f87467d9ec99d07b2f55dca3fffec5fc4d34c9f2ee59070647283ddf02206a84273f17748ce50a9f104d91930e73cd83019a7310686eb0574872c561849e01", + "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e", + "30440220609c34c72ed9688a6f65d72931ebe50a4d29109849b0fe9fbe5380d10e3ead8202202bf1098796b3f9f861c2cf1eb7324c1763cc389124c689c69b4bf94ae4b58b6f01", + "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e", + "3044022064bbc765ae9fe2d806b9262233fb449ea9cdc556c76949ce7f3d12ea56a3c81002204dfd87424d79f8a8e2c2d047a9cb23d691558f4421b6a1f5f09221299b8f08c301", + "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e", + "304402205189c0231cd313bc7ec75614a27a36f6520bb3c742bbbf6a775cba4e7d58493a022054b4de7fa2f5d055ebb233f3cb97b8077d6dfbee126f4ed11c2192161d2ebb3b01", + "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e", + "30440220189421cb50e385ebbb4145f1a0009e2ed115d40c2dde5db9c7ac72bed9ca21ea02207d39b7fd0b1614cbfb4857609e9463fcd27979aefccc1047789c20dcf52063ef01", + "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e", + "304402202d5d65b9c03c396247bea5a3e975d1c6cec94d7da3b6d950c4bf5607f60fb2e30220680f965ae329cbc74e57466d61af9af750b3be686f8c27a5ee9c1cbb30808d7c01", + "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e" ], "lock_time": 0, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", - "tx_id": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159" + "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "tx_id": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767" }, "unpacked_data": { - "message_type": "order", - "message_type_id": 10, - "message_data": { - "give_asset": "XCP", - "give_quantity": 1000, - "get_asset": "BTC", - "get_quantity": 1000, - "expiration": 21, - "fee_required": 0, - "status": "open", - "give_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "get_asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Bitcoin cryptocurrency", - "locked": false, - "issuer": null + "message_type": "mpma_send", + "message_type_id": 3, + "message_data": [ + { + "asset": "MPMASSET", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "quantity": 10, + "memo": "memo2", + "memo_is_hex": false, + "asset_info": { + "asset_longname": null, + "description": "My super asset B", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "divisible": true, + "locked": false + }, + "quantity_normalized": "0.00000010" }, - "give_quantity_normalized": "0.00001000", - "get_quantity_normalized": "0.00001000", - "fee_required_normalized": "0.00000000" - } + { + "asset": "XCP", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "quantity": 10, + "memo": "memo1", + "memo_is_hex": false, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "quantity_normalized": "0.00000010" + } + ] }, "btc_amount_normalized": "0.00000000" } }, "/v2/transactions//info": { "result": { - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710803c5b324bad0b5d20f0f3f24368314a7712e33655", + "data": "0200000000000000010000000000002710803970def27ed5459d1126af8f037ccb8fe4aeac4d", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "559640c9921bb2c96f2d0a09eac7cdbd4d88102fa3bec6b04e2040850c099b0a", + "hash": "8d4bef92b931a1c06d6bab5395537943d4218a8c17b832cf1f27c4b5d26ca3f1", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -908,20 +967,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2ebf9f191654c9ea4ef5b671e626c10fbe1545ebad7c38b0e9c6fc94e101253d96b51ae96768f93fdf8082cdf61c74" + "script_pub_key": "6a2ecd2b19017aed9c5dec4f390093b39dd1f0ec75729a5e5c59cf26a61505a3042769517cf7e577fb7d37c37417c0e4" }, { "value": 4999970000, - "script_pub_key": "001429cd5d950d66789a5d1f7d02a448584db013a75d" + "script_pub_key": "0014e8357d02fbc701ab928c73d7d2cfcd62d7dd2c20" } ], "vtxinwit": [ - "304402204574515467ae18de404ff3768b6ec3bf972681bf325c17c6771cb62a9df2517702202e85f3dbcbe0e38ae45919cd7871d13bcc707909672a92408cfb031e676bd31301", - "03473fcf2505338e252e6cf65a0b9aa2352e6ae98dd95a616107b2eb92edfe7c9e" + "30440220692dde2e060e2cc05bae5e602158bf81c34d18f821fe613e16e0dbed4383928502206d827185874c9b7639ffc09756d99f2517e843c8769bf32d809dab219ee44bb301", + "03d019ffa6402ee701cc2792ac17105aa83f73c2941f477e20277c2d2132d0bb7a" ], "lock_time": 0, - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", - "tx_id": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7" + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_id": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4" }, "unpacked_data": { "message_type": "enhanced_send", @@ -929,7 +988,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "memo": null, "asset_info": { "divisible": true, @@ -956,17 +1015,17 @@ "/v2/transactions/": { "result": { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_hash": "57df81dd0c83bf7c8d47680b1cc451f7132f2b28ab8a8552d803ee58419522c9", - "block_time": 1730146542, - "source": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", - "destination": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", + "block_time": 1730147539, + "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1 69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -981,17 +1040,17 @@ "/v2/transactions/": { "result": { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_hash": "57df81dd0c83bf7c8d47680b1cc451f7132f2b28ab8a8552d803ee58419522c9", - "block_time": 1730146542, - "source": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", - "destination": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", + "block_time": 1730147539, + "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1 69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1010,12 +1069,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75 }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 673, @@ -1024,14 +1083,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -1042,9 +1101,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 672, @@ -1053,9 +1112,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "status": 0, - "tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "asset_info": { "divisible": true, "asset_longname": null, @@ -1065,24 +1124,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -1092,9 +1151,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 670, @@ -1102,14 +1161,14 @@ "params": { "asset": "XCP", "block_index": 208, - "destination": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "msg_index": 1, "quantity": 1500000000, - "source": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", + "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", "status": "valid", - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -1119,9 +1178,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 669, @@ -1134,12 +1193,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75 }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 673, @@ -1148,14 +1207,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -1166,9 +1225,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 672, @@ -1177,9 +1236,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "status": 0, - "tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "asset_info": { "divisible": true, "asset_longname": null, @@ -1189,24 +1248,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -1216,9 +1275,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 670, @@ -1226,14 +1285,14 @@ "params": { "asset": "XCP", "block_index": 208, - "destination": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "msg_index": 1, "quantity": 1500000000, - "source": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", + "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", "status": "valid", - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -1243,9 +1302,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 669, @@ -1255,10 +1314,10 @@ "result": [ { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "destination": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1266,7 +1325,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -1279,10 +1338,10 @@ }, { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "destination": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1290,11 +1349,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -1310,27 +1369,27 @@ { "tx_index": 75, "dispense_index": 0, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "destination": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "last_status_tx_hash": null, - "origin": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1345,7 +1404,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -1366,16 +1425,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -1385,9 +1444,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 669, @@ -1397,12 +1456,12 @@ "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 1500000000, "tx_index": 75, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "block_time": 1730146542, + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -1412,9 +1471,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 666, @@ -1424,24 +1483,24 @@ "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 1500000000, "tx_index": 75, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "block_time": 1730146542, + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_time": 1730147539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": null, @@ -1453,16 +1512,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -1472,9 +1531,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 669, @@ -1484,12 +1543,12 @@ "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 1500000000, "tx_index": 75, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "block_time": 1730146542, + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -1499,9 +1558,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 666, @@ -1511,24 +1570,24 @@ "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 1500000000, "tx_index": 75, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "block_time": 1730146542, + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_time": 1730147539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": null, @@ -1541,7 +1600,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1551,7 +1610,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -1562,7 +1621,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1572,7 +1631,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -1583,7 +1642,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1593,7 +1652,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -1604,7 +1663,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1614,7 +1673,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -1625,7 +1684,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1635,7 +1694,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -1646,7 +1705,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1656,7 +1715,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -1670,17 +1729,17 @@ "result": [ { "tx_index": 74, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_hash": "56ae91d142f683a09d940b258acad4656326d617818b4c9ab8d3e465c7498eb4", - "block_time": 1730146529, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", + "block_time": 1730147530, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159:1", + "utxos_info": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1716,17 +1775,17 @@ }, { "tx_index": 73, - "tx_hash": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "block_index": 206, - "block_hash": "071fed59eb7bad3d093eab7ea29ceede42014e64cafcd8efb9dbff512ae65ffd", - "block_time": 1730146524, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "block_hash": "01846b45f3471c31292a5664be521ee633e3113f741f72dafb1bf6543e16d259", + "block_time": 1730147525, + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380797d6ec17db07615f16099cd8ba63f5d8ef19e26803c5b324bad0b5d20f0f3f24368314a7712e336558029cd5d950d66789a5d1f7d02a448584db013a75d88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380527fc786dce354681ff9800bc9b06a2a44fd524e803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2088746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a:0", + "utxos_info": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1734,14 +1793,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -1749,7 +1808,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1768,17 +1827,17 @@ }, { "tx_index": 72, - "tx_hash": "bf6dc611418389c02104fbc5a96daaf298072b3687afde41b544e177672f36bd", + "tx_hash": "4f72d5bee6053f9591d332772cf67ec1874d67118be7049fac7da1ed5b6f83b8", "block_index": 205, - "block_hash": "78f8b04445c886a48dfbe1b373998122c3c90b4233045d27b886f8ecc0541aa0", - "block_time": 1730146511, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "block_hash": "3873d38f2cf1b4e0638c2afeefa858f06618aa1b2fbcaa8fa43d7beadd77ea33", + "block_time": 1730147521, + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380797d6ec17db07615f16099cd8ba63f5d8ef19e26803c5b324bad0b5d20f0f3f24368314a7712e336558029cd5d950d66789a5d1f7d02a448584db013a75dc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380527fc786dce354681ff9800bc9b06a2a44fd524e803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c20c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "bf6dc611418389c02104fbc5a96daaf298072b3687afde41b544e177672f36bd:0", + "utxos_info": "4f72d5bee6053f9591d332772cf67ec1874d67118be7049fac7da1ed5b6f83b8:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1786,14 +1845,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -1801,7 +1860,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1820,17 +1879,17 @@ }, { "tx_index": 71, - "tx_hash": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "block_index": 204, - "block_hash": "0f715b69edf13726dc1d1d27b09dddeb5086bae38268ef9456b5d49c6ff906b6", - "block_time": 1730146507, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "5d35bb0804bc053ef7d59c9d0c4a9f4bcd4bc52272146001da9b7757c898d039", + "block_time": 1730147517, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d4c77d66fa0fdd86114939522fe26fb4007aa23e803c5b324bad0b5d20f0f3f24368314a7712e336558029cd5d950d66789a5d1f7d02a448584db013a75d40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d2621d21756eb8ebb22ce432b26450ae670d208f803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2040000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5:0", + "utxos_info": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1838,14 +1897,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -1853,7 +1912,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1872,17 +1931,17 @@ }, { "tx_index": 70, - "tx_hash": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14", + "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", "block_index": 203, - "block_hash": "0475da261e7efed25d02d43383b7aaa9cec5f58046c442761793288877b0a000", - "block_time": 1730146503, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "0770bd3567046a0c047163accfc399966280bdbd87644d765df50a5819c333f3", + "block_time": 1730147502, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d4c77d66fa0fdd86114939522fe26fb4007aa23e803c5b324bad0b5d20f0f3f24368314a7712e336558029cd5d950d66789a5d1f7d02a448584db013a75d88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d2621d21756eb8ebb22ce432b26450ae670d208f803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2088746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14:0", + "utxos_info": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1890,14 +1949,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -1905,7 +1964,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1945,11 +2004,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "status": "open", - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "tx_index": 74, - "block_time": 1730146529, + "block_time": 1730147530, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1973,24 +2032,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_time": 1730146529 + "block_time": 1730147530 }, { "event_index": 658, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "block_index": 207, - "event": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "event": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "quantity": 1000, "tx_index": 74, "utxo": null, "utxo_address": null, - "block_time": 1730146529, + "block_time": 1730147530, "asset_info": { "divisible": true, "asset_longname": null, @@ -2000,37 +2059,37 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_time": 1730146529 + "block_time": 1730147530 }, { "event_index": 657, "event": "ORDER_EXPIRATION", "params": { "block_index": 207, - "order_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "block_time": 1730146529 + "order_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_time": 1730147530 }, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_time": 1730146529 + "block_time": 1730147530 }, { "event_index": 656, "event": "CREDIT", "params": { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "block_index": 207, "calling_function": "cancel order", - "event": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", + "event": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730146529, + "block_time": 1730147530, "asset_info": { "divisible": true, "asset_longname": null, @@ -2040,25 +2099,25 @@ }, "quantity_normalized": "0.00005000" }, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_time": 1730146529 + "block_time": 1730147530 }, { "event_index": 654, "event": "NEW_TRANSACTION", "params": { - "block_hash": "56ae91d142f683a09d940b258acad4656326d617818b4c9ab8d3e465c7498eb4", + "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", "block_index": 207, - "block_time": 1730146529, + "block_time": 1730147530, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "tx_index": 74, - "utxos_info": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159:1", + "utxos_info": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -2090,9 +2149,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_time": 1730146529 + "block_time": 1730147530 } ], "next_cursor": 650, @@ -2101,17 +2160,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "memo": null, "quantity": 10000, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "status": "valid", - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "tx_index": 76, "asset_info": { "divisible": true, @@ -2122,22 +2181,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "CREDIT", "params": { - "address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -2147,22 +2206,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "XCP", "block_index": 208, - "event": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -2172,30 +2231,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730146546.5615797, + "block_time": 1730147542.563512, "btc_amount": 0, - "data": "0200000000000000010000000000002710803c5b324bad0b5d20f0f3f24368314a7712e33655", + "data": "0200000000000000010000000000002710803970def27ed5459d1126af8f037ccb8fe4aeac4d", "destination": "", "fee": 10000, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "tx_index": 76, - "utxos_info": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7:1", + "utxos_info": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "memo": null, "asset_info": { "divisible": true, @@ -2209,7 +2268,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 } ], "next_cursor": null, @@ -2218,7 +2277,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2226,14 +2285,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2241,14 +2300,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2256,14 +2315,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -2278,7 +2337,7 @@ "quantity_normalized": "826.49941000" }, { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2286,7 +2345,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -2299,7 +2358,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -2321,16 +2380,16 @@ "result": [ { "block_index": 207, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", + "event": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146529, + "block_time": 1730147530, "asset_info": { "divisible": true, "asset_longname": null, @@ -2342,16 +2401,16 @@ }, { "block_index": 206, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "event": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146524, + "block_time": 1730147525, "asset_info": { "divisible": true, "asset_longname": null, @@ -2363,16 +2422,16 @@ }, { "block_index": 205, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "bf6dc611418389c02104fbc5a96daaf298072b3687afde41b544e177672f36bd", + "event": "4f72d5bee6053f9591d332772cf67ec1874d67118be7049fac7da1ed5b6f83b8", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146511, + "block_time": 1730147521, "asset_info": { "divisible": true, "asset_longname": null, @@ -2384,20 +2443,20 @@ }, { "block_index": 201, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567", + "event": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", "tx_index": 68, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146486, + "block_time": 1730147494, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -2405,16 +2464,16 @@ }, { "block_index": 192, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "44cd686fa15d9508241d20e5c7c2c60e8907dd3a651f43acf2b465f65fe3a0b0", + "event": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146437, + "block_time": 1730147455, "asset_info": { "divisible": true, "asset_longname": null, @@ -2432,16 +2491,16 @@ "result": [ { "block_index": 207, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "event": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146529, + "block_time": 1730147530, "asset_info": { "divisible": true, "asset_longname": null, @@ -2453,16 +2512,16 @@ }, { "block_index": 204, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "event": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146507, + "block_time": 1730147517, "asset_info": { "divisible": true, "asset_longname": null, @@ -2474,20 +2533,20 @@ }, { "block_index": 204, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "event": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146507, + "block_time": 1730147517, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -2495,16 +2554,16 @@ }, { "block_index": 203, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14", + "event": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146503, + "block_time": 1730147502, "asset_info": { "divisible": true, "asset_longname": null, @@ -2516,20 +2575,20 @@ }, { "block_index": 203, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14", + "event": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146503, + "block_time": 1730147502, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -2548,9 +2607,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "75d373adf0de96f6ed32dc878f287920ccf7cdb7b9c5012fcd6ec9ef3d3939c5", + "tx_hash": "18aaf369ee7b22607393e152af0efd92979dee2ef001c12f68449f3dd6a3c100", "block_index": 137, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2558,7 +2617,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730146212, + "block_time": 1730147234, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2569,14 +2628,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "592a291762602e14b2078525874c2575b187f4b831f0a5d3aad9492cc4006ca6", + "tx_hash": "2fed39c42c5098183f1ae8e1361e26ab555b2ec5955749c972b5f1067f3e2c72", "block_index": 112, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730146119, + "block_time": 1730147143, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2588,10 +2647,10 @@ "result": [ { "tx_index": 71, - "tx_hash": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "block_index": 204, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2599,7 +2658,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730146507, + "block_time": 1730147517, "asset_info": { "divisible": true, "asset_longname": null, @@ -2612,10 +2671,10 @@ }, { "tx_index": 71, - "tx_hash": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "block_index": 204, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2623,11 +2682,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730146507, + "block_time": 1730147517, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -2636,10 +2695,10 @@ }, { "tx_index": 71, - "tx_hash": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "block_index": 204, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2647,11 +2706,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730146507, + "block_time": 1730147517, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -2660,10 +2719,10 @@ }, { "tx_index": 70, - "tx_hash": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14", + "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", "block_index": 203, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2671,7 +2730,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730146503, + "block_time": 1730147502, "asset_info": { "divisible": true, "asset_longname": null, @@ -2684,10 +2743,10 @@ }, { "tx_index": 70, - "tx_hash": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14", + "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", "block_index": 203, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2695,11 +2754,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730146503, + "block_time": 1730147502, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -2714,10 +2773,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "c52bf330fc776175ce2b85ba385389ba68a61372cb37473758c08f8722f42f9d", + "tx_hash": "b9aeb481d6d93a3eee3edaee0438c4e3a7efc7f5f40d59eaa8606c125a6b2d9f", "block_index": 151, - "source": "ada2535c1fa5b9d7e5607c6cca03c5bd0d6d41b80278ddede04442c5a7a7cb8e:0", - "destination": "bcrt1qcuwkj6w32f4llkdhcht2lhs8xtc3v5424em4lv", + "source": "0e342a2ee7897e26da5b3b27ef89ed24cb2f5db944eb6471b2b3b214318205e4:0", + "destination": "bcrt1qcz42hsauvvj7zvqys6awauwvtlxm66sq2gnk5v", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2725,11 +2784,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730146268, + "block_time": 1730147299, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -2744,10 +2803,10 @@ "result": [ { "tx_index": 71, - "tx_hash": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "block_index": 204, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2755,11 +2814,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730146507, + "block_time": 1730147517, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -2768,10 +2827,10 @@ }, { "tx_index": 71, - "tx_hash": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "block_index": 204, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2779,11 +2838,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730146507, + "block_time": 1730147517, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -2792,10 +2851,10 @@ }, { "tx_index": 70, - "tx_hash": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14", + "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", "block_index": 203, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2803,11 +2862,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730146503, + "block_time": 1730147502, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -2816,10 +2875,10 @@ }, { "tx_index": 70, - "tx_hash": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14", + "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", "block_index": 203, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2827,11 +2886,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730146503, + "block_time": 1730147502, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -2840,10 +2899,10 @@ }, { "tx_index": 69, - "tx_hash": "9291277032ae953a6e14ff3e6a3dbfa85c0c62e03cd8549beaf5a5b0271a0fbd", + "tx_hash": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f", "block_index": 202, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2851,11 +2910,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730146500, + "block_time": 1730147498, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -2875,9 +2934,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2886,7 +2945,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2896,7 +2955,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -2912,9 +2971,9 @@ }, { "tx_index": 62, - "tx_hash": "a84431367d549b443ffdb3837c6f52a401a4649d9bc4c46b51f336351e712cf3", + "tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", "block_index": 197, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2923,7 +2982,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2933,11 +2992,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146466, + "block_time": 1730147475, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -2954,9 +3013,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2965,7 +3024,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2975,7 +3034,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -2995,19 +3054,19 @@ { "tx_index": 63, "dispense_index": 0, - "tx_hash": "13c91a5e226bbe809951bd97672f3031d9107245b3e4ab5299ad5f9307e754bc", + "tx_hash": "3eaa0359313df169f4e9a098ef8e0ab8cdd5939ab338dca7fa670dbbfb3c0111", "block_index": 197, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a84431367d549b443ffdb3837c6f52a401a4649d9bc4c46b51f336351e712cf3", + "dispenser_tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3015,7 +3074,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3030,11 +3089,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146466, + "block_time": 1730147475, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -3044,19 +3103,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5b9bb8529c715bea15f2be58f7affcd1300399f23a3001f3fc89e43885ee0fab", + "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3064,7 +3123,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3079,7 +3138,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -3093,19 +3152,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b58ea6d9c455cf1d2efe992936d841dab3e1b9b878c223aad78c7885de92ba17", + "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", "block_index": 140, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3113,7 +3172,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3128,7 +3187,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146224, + "block_time": 1730147244, "asset_info": { "divisible": true, "asset_longname": null, @@ -3148,19 +3207,19 @@ { "tx_index": 63, "dispense_index": 0, - "tx_hash": "13c91a5e226bbe809951bd97672f3031d9107245b3e4ab5299ad5f9307e754bc", + "tx_hash": "3eaa0359313df169f4e9a098ef8e0ab8cdd5939ab338dca7fa670dbbfb3c0111", "block_index": 197, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a84431367d549b443ffdb3837c6f52a401a4649d9bc4c46b51f336351e712cf3", + "dispenser_tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3168,7 +3227,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3183,11 +3242,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146466, + "block_time": 1730147475, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -3197,19 +3256,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5b9bb8529c715bea15f2be58f7affcd1300399f23a3001f3fc89e43885ee0fab", + "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3217,7 +3276,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3232,7 +3291,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -3246,19 +3305,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b58ea6d9c455cf1d2efe992936d841dab3e1b9b878c223aad78c7885de92ba17", + "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", "block_index": 140, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3266,7 +3325,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3281,7 +3340,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146224, + "block_time": 1730147244, "asset_info": { "divisible": true, "asset_longname": null, @@ -3301,19 +3360,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5b9bb8529c715bea15f2be58f7affcd1300399f23a3001f3fc89e43885ee0fab", + "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3321,7 +3380,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3336,7 +3395,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -3350,19 +3409,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b58ea6d9c455cf1d2efe992936d841dab3e1b9b878c223aad78c7885de92ba17", + "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", "block_index": 140, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3370,7 +3429,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3385,7 +3444,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146224, + "block_time": 1730147244, "asset_info": { "divisible": true, "asset_longname": null, @@ -3405,19 +3464,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5b9bb8529c715bea15f2be58f7affcd1300399f23a3001f3fc89e43885ee0fab", + "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3425,7 +3484,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3440,7 +3499,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -3454,19 +3513,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b58ea6d9c455cf1d2efe992936d841dab3e1b9b878c223aad78c7885de92ba17", + "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", "block_index": 140, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3474,7 +3533,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3489,7 +3548,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146224, + "block_time": 1730147244, "asset_info": { "divisible": true, "asset_longname": null, @@ -3508,16 +3567,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "2fe44fafe5dc6fed656ee0ae1a3030fee5ac7764531e086c0824911cba33019a", + "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", "block_index": 194, - "source": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730146454, + "block_time": 1730147463, "fee_paid_normalized": "0.00600000" } ], @@ -3528,14 +3587,14 @@ "result": [ { "tx_index": 68, - "tx_hash": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567", + "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -3550,20 +3609,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730146486, + "block_time": 1730147494, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "008a089de6c3b027c215e285abb61355f96f3c800e0b8b8980bac499a00fc56b", + "tx_hash": "ecedf49fefa307a78131f6b1d7f52c17b4ececb2e16f6ace25f1e6735fe7090f", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -3578,20 +3637,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730146316, + "block_time": 1730147339, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "46c3e96bb3baf10e4bf6d73e6229478349243117097c6cc77c3b827bb46076be", + "tx_hash": "4ef076610716e47917b7d9a1703541120e00b089e1da54ae1a615438306de745", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -3606,20 +3665,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730146313, + "block_time": 1730147334, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "9464b995c9d7ac49fafffbca07dd001741049bad5a26e88e531296a769d8c1a5", + "tx_hash": "4a865f981bedcaa6f59c08c2b25f1e47c0c1db264cac059bd89ad1011fd381e0", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -3634,20 +3693,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730146309, + "block_time": 1730147330, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "f4764011430ba111384fbec6512934bda4cb0e12779d0d6dd8a2092bf0dfed8b", + "tx_hash": "a65366c8d04355c3ec10374f3abcb6c2aa5d455b1ff2ca72cee7c67943ff6e12", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -3662,7 +3721,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730146296, + "block_time": 1730147326, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3676,8 +3735,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 100000000000, @@ -3685,16 +3744,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730146486, - "last_issuance_block_time": 1730146486, + "first_issuance_block_time": 1730147494, + "last_issuance_block_time": 1730147494, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 10000000000, @@ -3702,16 +3761,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730146296, - "last_issuance_block_time": 1730146313, + "first_issuance_block_time": 1730147326, + "last_issuance_block_time": 1730147334, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 100000000000, @@ -3719,16 +3778,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730146256, - "last_issuance_block_time": 1730146256, + "first_issuance_block_time": 1730147287, + "last_issuance_block_time": 1730147287, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 40, @@ -3736,16 +3795,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730146205, - "last_issuance_block_time": 1730146209, + "first_issuance_block_time": 1730147227, + "last_issuance_block_time": 1730147231, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 19, @@ -3753,8 +3812,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730146189, - "last_issuance_block_time": 1730146201, + "first_issuance_block_time": 1730147211, + "last_issuance_block_time": 1730147222, "supply_normalized": "0.00000019" } ], @@ -3767,8 +3826,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 100000000000, @@ -3776,16 +3835,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730146486, - "last_issuance_block_time": 1730146486, + "first_issuance_block_time": 1730147494, + "last_issuance_block_time": 1730147494, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 10000000000, @@ -3793,16 +3852,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730146296, - "last_issuance_block_time": 1730146313, + "first_issuance_block_time": 1730147326, + "last_issuance_block_time": 1730147334, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 100000000000, @@ -3810,16 +3869,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730146256, - "last_issuance_block_time": 1730146256, + "first_issuance_block_time": 1730147287, + "last_issuance_block_time": 1730147287, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 40, @@ -3827,16 +3886,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730146205, - "last_issuance_block_time": 1730146209, + "first_issuance_block_time": 1730147227, + "last_issuance_block_time": 1730147231, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 19, @@ -3844,8 +3903,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730146189, - "last_issuance_block_time": 1730146201, + "first_issuance_block_time": 1730147211, + "last_issuance_block_time": 1730147222, "supply_normalized": "0.00000019" } ], @@ -3858,8 +3917,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 100000000000, @@ -3867,16 +3926,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730146486, - "last_issuance_block_time": 1730146486, + "first_issuance_block_time": 1730147494, + "last_issuance_block_time": 1730147494, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 10000000000, @@ -3884,16 +3943,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730146296, - "last_issuance_block_time": 1730146313, + "first_issuance_block_time": 1730147326, + "last_issuance_block_time": 1730147334, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 100000000000, @@ -3901,16 +3960,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730146256, - "last_issuance_block_time": 1730146256, + "first_issuance_block_time": 1730147287, + "last_issuance_block_time": 1730147287, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 40, @@ -3918,16 +3977,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730146205, - "last_issuance_block_time": 1730146209, + "first_issuance_block_time": 1730147227, + "last_issuance_block_time": 1730147231, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 19, @@ -3935,8 +3994,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730146189, - "last_issuance_block_time": 1730146201, + "first_issuance_block_time": 1730147211, + "last_issuance_block_time": 1730147222, "supply_normalized": "0.00000019" } ], @@ -3947,17 +4006,17 @@ "result": [ { "tx_index": 74, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_hash": "56ae91d142f683a09d940b258acad4656326d617818b4c9ab8d3e465c7498eb4", - "block_time": 1730146529, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", + "block_time": 1730147530, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159:1", + "utxos_info": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3993,17 +4052,17 @@ }, { "tx_index": 71, - "tx_hash": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "block_index": 204, - "block_hash": "0f715b69edf13726dc1d1d27b09dddeb5086bae38268ef9456b5d49c6ff906b6", - "block_time": 1730146507, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "5d35bb0804bc053ef7d59c9d0c4a9f4bcd4bc52272146001da9b7757c898d039", + "block_time": 1730147517, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d4c77d66fa0fdd86114939522fe26fb4007aa23e803c5b324bad0b5d20f0f3f24368314a7712e336558029cd5d950d66789a5d1f7d02a448584db013a75d40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d2621d21756eb8ebb22ce432b26450ae670d208f803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2040000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5:0", + "utxos_info": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4011,14 +4070,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4026,7 +4085,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4045,17 +4104,17 @@ }, { "tx_index": 70, - "tx_hash": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14", + "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", "block_index": 203, - "block_hash": "0475da261e7efed25d02d43383b7aaa9cec5f58046c442761793288877b0a000", - "block_time": 1730146503, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "0770bd3567046a0c047163accfc399966280bdbd87644d765df50a5819c333f3", + "block_time": 1730147502, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d4c77d66fa0fdd86114939522fe26fb4007aa23e803c5b324bad0b5d20f0f3f24368314a7712e336558029cd5d950d66789a5d1f7d02a448584db013a75d88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d2621d21756eb8ebb22ce432b26450ae670d208f803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2088746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14:0", + "utxos_info": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4063,14 +4122,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4078,7 +4137,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4097,17 +4156,17 @@ }, { "tx_index": 69, - "tx_hash": "9291277032ae953a6e14ff3e6a3dbfa85c0c62e03cd8549beaf5a5b0271a0fbd", + "tx_hash": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f", "block_index": 202, - "block_hash": "0dcbc84c2d95109090eb22746a665b5439533041aeecb240621cbb17fa7f68d2", - "block_time": 1730146500, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "5b62183f865f9122b0b1823726656c462dab8e5c45823a9c43b72ce9ce1bdbde", + "block_time": 1730147498, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d4c77d66fa0fdd86114939522fe26fb4007aa23e", + "data": "02000000178d82231300000000000003e880d2621d21756eb8ebb22ce432b26450ae670d208f", "supported": true, - "utxos_info": "9291277032ae953a6e14ff3e6a3dbfa85c0c62e03cd8549beaf5a5b0271a0fbd:1", + "utxos_info": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4115,12 +4174,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4131,17 +4190,17 @@ }, { "tx_index": 68, - "tx_hash": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567", + "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", "block_index": 201, - "block_hash": "4bc9890a02562ad915e6473ffb15c6fa4b3e5b02801aa2a7c642246859efc3a8", - "block_time": 1730146486, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "block_hash": "7156384707e1643c99729bcff455e508cc134e75ff200fe29f1138d04e3ffe6b", + "block_time": 1730147494, + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567:1", + "utxos_info": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4172,20 +4231,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "babc61747028dfbe864a00fb10aa36000900c71d17ca5eca8f1f86c160f52548", + "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", "block_index": 154, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730146279, + "block_time": 1730147310, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4207,9 +4266,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72", + "tx_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", "block_index": 184, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4224,7 +4283,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730146339, + "block_time": 1730147353, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4250,9 +4309,9 @@ }, { "tx_index": 51, - "tx_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", + "tx_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", "block_index": 207, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4267,7 +4326,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730146529, + "block_time": 1730147530, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4293,9 +4352,9 @@ }, { "tx_index": 57, - "tx_hash": "44cd686fa15d9508241d20e5c7c2c60e8907dd3a651f43acf2b465f65fe3a0b0", + "tx_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", "block_index": 192, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4310,7 +4369,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730146437, + "block_time": 1730147455, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4336,9 +4395,9 @@ }, { "tx_index": 59, - "tx_hash": "6ff02408b1201b2608b0689d0bea61aef5787a69dea23b48593fd7aeafbe8fab", + "tx_hash": "8c2d59b10cf446779609dae007a9bc91d0a00c457b17a0b279920ccbc776425e", "block_index": 193, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4353,7 +4412,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730146451, + "block_time": 1730147459, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4379,9 +4438,9 @@ }, { "tx_index": 74, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4396,7 +4455,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730146529, + "block_time": 1730147530, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4427,10 +4486,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "adf5bd6deaba6cfeb6ec892a6fd69ba021d135559674853ad7bde8145789e4f9", + "tx_hash": "0998f235a3feba0746e143f431c1f698ca50ae3f8745598a4671168e9c151cef", "tx_index": 42, "block_index": 155, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4455,7 +4514,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730146283, + "block_time": 1730147313, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4464,10 +4523,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "91ab2f030c6b3d93359b217216415696e99d5800a0423a27dd32b8dd72f6b7c1", + "tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", "tx_index": 22, "block_index": 135, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4492,7 +4551,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730146205, + "block_time": 1730147227, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4504,10 +4563,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "92b6936e0fd4ebfe23aa10834e598f9eb5efad5d9a03db25cf6e6dec807c352a", + "tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", "tx_index": 18, "block_index": 131, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4532,7 +4591,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730146189, + "block_time": 1730147211, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4544,10 +4603,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "813fabeb4671db0750f64a1def89364f381970217838a1cd7c35859ed53cecf0", + "tx_hash": "ef648a52d64c60ed013aa174ae6a48421d17f923b88d3aba2e05b58ef0c76886", "tx_index": 14, "block_index": 130, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4572,7 +4631,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730146186, + "block_time": 1730147206, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4584,10 +4643,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "f45ea10dc40bf578b6b99d7e2c27432d1885c5cee4c83c1c4a8b2503e245ab7d", + "tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", "tx_index": 10, "block_index": 125, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4612,7 +4671,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730146166, + "block_time": 1730147187, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4630,22 +4689,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "7e828b53dcd7e0b212fa0b15a0cf8a214c551ab1d1c67d4676345eda71be1d6e", + "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "91ab2f030c6b3d93359b217216415696e99d5800a0423a27dd32b8dd72f6b7c1", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146209, + "block_time": 1730147231, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4654,22 +4713,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "28123f2716e40a4c1ecebe4c55a1bb6717ecb5d0a0e3efbb6a14b6f9288cf13c", + "tx_hash": "a9ec529d035361f0f926d689b0a23cdf4fef412a2be429d5399f71ab7fbd086a", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "92b6936e0fd4ebfe23aa10834e598f9eb5efad5d9a03db25cf6e6dec807c352a", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146201, + "block_time": 1730147222, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4678,22 +4737,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "f0189ff8055fae52b2a895de0c0965efe86ed68c8614b80b157036b8f4b7af42", + "tx_hash": "93c5f036c8e324dda6f5e9e84e15f096906d0974ea4003bdf51cd4bd013c3ad4", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "92b6936e0fd4ebfe23aa10834e598f9eb5efad5d9a03db25cf6e6dec807c352a", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146197, + "block_time": 1730147218, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4702,22 +4761,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "aadefa8b06c22ae58819261b95755f51b6ac15856c478e7a295b1c5f193d8130", + "tx_hash": "24ba6e5e817679a1c81bd41098b8ea21134e6fd0493e343e7ce171576bae5ef2", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "92b6936e0fd4ebfe23aa10834e598f9eb5efad5d9a03db25cf6e6dec807c352a", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146193, + "block_time": 1730147215, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4726,22 +4785,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "5fd061590c22232250641f19808b0b76ff6509318d08355076c708d88499b3e4", + "tx_hash": "c8d21094348438b7c4655120669db0ddae866ac6446b9ca3b607e8b9c96ac128", "tx_index": 15, "block_index": 127, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "813fabeb4671db0750f64a1def89364f381970217838a1cd7c35859ed53cecf0", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "ef648a52d64c60ed013aa174ae6a48421d17f923b88d3aba2e05b58ef0c76886", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146175, + "block_time": 1730147194, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4750,22 +4809,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "97601db51012c772538d455f68e4ea86ea3b49bca62b515f3b339ce106818b06", + "tx_hash": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "f45ea10dc40bf578b6b99d7e2c27432d1885c5cee4c83c1c4a8b2503e245ab7d", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146159, + "block_time": 1730147180, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4780,22 +4839,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "97601db51012c772538d455f68e4ea86ea3b49bca62b515f3b339ce106818b06", + "tx_hash": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "f45ea10dc40bf578b6b99d7e2c27432d1885c5cee4c83c1c4a8b2503e245ab7d", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146159, + "block_time": 1730147180, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4812,8 +4871,8 @@ { "asset": "XCP", "quantity": 1500000000, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "asset_info": { "divisible": true, "asset_longname": null, @@ -4826,12 +4885,12 @@ { "asset": "MYASSETA", "quantity": 1500000000, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -4847,7 +4906,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4857,9 +4916,9 @@ "data": "434e5452505254591eeea6b9f14059000000000000004c4b400f2248656c6c6f2c20776f726c642122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985142, - "btc_fee": 14858, - "rawtransaction": "020000000001011c5df33baf82f5ec5e7550f7e8d3196e1bf61506c78aa41eb645960dd70697e300000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff0200000000000000002b6a29d69253778e9ca2db792c5996b0bfdb3c549f3643ce2dc5402db3cbb70e59a2192b83320c92551d75fff6b7052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999985795, + "btc_fee": 14205, + "rawtransaction": "02000000000101ec554f96df34adde2d052d8c8ff141c82bbe4c0e291b407e2db656d0bcad131700000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff0200000000000000002b6a29c707dd529b7abad7f5c6edfa52a167c2b99a13f93fb0e203b60d7e7f271c4d040d8c93648bec77fada83ba052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4877,23 +4936,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "order_match_id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13" + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9" }, "name": "btcpay", - "data": "434e5452505254590bd0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "data": "434e5452505254590b99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "btc_in": 5000000000, "btc_out": 3000, - "btc_change": 4999978090, - "btc_fee": 18910, - "rawtransaction": "02000000000101123eb40a326f2b1d7a6ad56fcdde7aaf993d8a7483b8cdde390cceead4c6e23a00000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff03b80b000000000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2600000000000000004b6a490d33c20b8da592f44103a41b6b8f42977d96555fcb93b80d6e9b36587946ba374021c1c6e2dcd7f7cb125d0538f757d00c3260e0cbd98dcf60eff7b91465c42809bdd4fe5885743aa86a9c052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999978921, + "btc_fee": 18079, + "rawtransaction": "02000000000101f783ff9ef8362151324d3e3c73fd567bdc7330f40489345ff887d25221866a0f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff03b80b000000000000160014527fc786dce354681ff9800bc9b06a2a44fd524e00000000000000004b6a49b2da7a60d77d3e2ff5da583fe83f15a8a9cc207b59c30ca77d213dc899f6c4a65378180ebf2504f1e34b96a5d845089e833b98161b8225a44c42a42a58827d9e94f03470c733093a41a99f052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "tx1_hash": "1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", - "order_match_id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "status": "valid" } } @@ -4902,7 +4961,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "quantity": 1000, "overburn": false }, @@ -4910,29 +4969,29 @@ "data": null, "btc_in": 5000000000, "btc_out": 1000, - "btc_change": 4999985186, - "btc_fee": 13814, - "rawtransaction": "020000000001014f259a41b2a7927731c3ccd442ac76b1908e2b451d61220758e67f86b357c4c100000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac22b8052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000" + "btc_change": 4999985793, + "btc_fee": 13207, + "rawtransaction": "020000000001017cc467ffa3846c0908d281028a906a2f987f00285abe9533fe70de6809112ed700000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "offer_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159" + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "offer_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f" }, "name": "cancel", - "data": "434e545250525459461adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "data": "434e54525052545946ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985142, - "btc_fee": 14858, - "rawtransaction": "0200000000010198ff404d2c3ad8608f0042b5e158c65ae73e4a29ec400134c20e99858468fb3c00000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff0200000000000000002b6a2914893ee897b6e706ae084ce32d92c0eb8536b6c9cf87e0f1313836727b649a589d4a85ea38b3912e69f6b7052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999985795, + "btc_fee": 14205, + "rawtransaction": "02000000000101f21565ec24ac8a6c096fe0d96924dbef615d2d131b10317105784673b582f96000000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff0200000000000000002b6a298bcb8bd253cae71a7e3f78c9ba32e28019c386c1523aa89e7b3c6138f2172a03481507a8669ac7efdb83ba052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "offer_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "status": "valid" } } @@ -4941,7 +5000,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4958,9 +5017,9 @@ "data": "434e5452505254596e000000000000000100000000000003e822627567732122", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985695, - "btc_fee": 14305, - "rawtransaction": "02000000000101804de83071766dbd6dcee6a55ee2c0456458e9c6953ba90c21a2536bc1aa991000000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff020000000000000000226a2012976dd9117eed8cab44767cd2a35f82dbab8a2b287f3c86e01d4060bed0a1d31fba052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999986323, + "btc_fee": 13677, + "rawtransaction": "02000000000101edca6184e83a2f2a9bb0ac09055f30de12f8f1e8e6099d7d60efe1f13506b06800000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000226a208a5dc160058962707268a118313c98488ef8e198371871ff602001eaf8963b3e93bc052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4974,62 +5033,19 @@ } }, "/v2/addresses/
/compose/dispenser": { - "result": { - "params": { - "source": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t", - "asset": "XCP", - "give_quantity": 1000, - "escrow_quantity": 1000, - "mainchainrate": 100, - "status": 0, - "open_address": null, - "oracle_address": null, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "give_quantity_normalized": "0.00001000", - "escrow_quantity_normalized": "0.00001000" - }, - "name": "dispenser", - "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", - "btc_in": 4949934500, - "btc_out": 0, - "btc_change": 4949919581, - "btc_fee": 14919, - "rawtransaction": "0200000000010139ba59842d40247ff3d84cfb914f09e5d2f2c32ca54f919b74cc30022a32aaee01000000160014b7c57fc2d37c1518d4d34a896f1421490a5b9facffffffff0200000000000000002c6a2a206836ab671bb85b33b690e9c4838bb23be22c3ce0dd8579c3a650b8ad987541880b4c0e628b603ae9e95dc7092701000000160014b7c57fc2d37c1518d4d34a896f1421490a5b9fac02000000000000", - "unpacked_data": { - "message_type": "dispenser", - "message_type_id": 12, - "message_data": { - "asset": "XCP", - "give_quantity": 1000, - "escrow_quantity": 1000, - "mainchainrate": 100, - "dispenser_status": 0, - "action_address": null, - "oracle_address": null, - "status": "valid", - "give_quantity_normalized": "0.00001000", - "escrow_quantity_normalized": "0.00001000" - } - } - } + "error": "invalid UTXO: 39b475d96fe427bf70a7413c344bbfa88768c4f038da4a0efceb2d0a3b5065bf:0" }, "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -5046,9 +5062,9 @@ "data": "434e545250525459320000000000000001000000f3bafe12e20000000000000001", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985634, - "btc_fee": 14366, - "rawtransaction": "0200000000010166b5f11db5a4712a26489c0dd17f1a5444d68c72a57a83940ca31524493bb74300000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff020000000000000000236a2115757642be8756ff69842aad0d9a28b652ce6d86f8b955af31a06652d808f7841ee2b9052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999986264, + "btc_fee": 13736, + "rawtransaction": "020000000001018aaa34296c5eaaaa5af41403de267a2b2d8521c1318fd5952d28e9f92d6c179300000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000236a21e9b0acfa86a694d7f95ef829118248d90aa0eb3df28e46d40ba6e86282c5e54dce58bc052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5065,10 +5081,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "transfer_destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "lock": false, "reset": false, @@ -5079,9 +5095,9 @@ "data": "434e5452505254591600000001a956fbdf00000000000003e8010000c04e554c4c", "btc_in": 5000000000, "btc_out": 546, - "btc_change": 4999983000, - "btc_fee": 16454, - "rawtransaction": "02000000000101ad30629eb8e015f59dd0d815c9e690d5651183edd3598d160eb74e30462a185600000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff032202000000000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e260000000000000000236a21870ad70288670a9e4739ba8a2b095196b1937106663ecf76cd31871463f1cc007198af052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999983723, + "btc_fee": 15731, + "rawtransaction": "0200000000010154ad99d547dce324cf6c8c1cad5a34d8fbec5ca1144b1dc1e1d84bc790b3aada00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff032202000000000000160014527fc786dce354681ff9800bc9b06a2a44fd524e0000000000000000236a2110b125f993ac326e3f43a8ef54c0b53167c5af10c3ef537d00ef290d80cfed305c6bb2052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5106,16 +5122,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", 1 ], [ "MPMASSET", - "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", 2 ] ], @@ -5123,26 +5139,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280797d6ec17db07615f16099cd8ba63f5d8ef19e2680d4c77d66fa0fdd86114939522fe26fb4007aa23e40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280527fc786dce354681ff9800bc9b06a2a44fd524e80d2621d21756eb8ebb22ce432b26450ae670d208f40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, - "btc_change": 19999942989, - "btc_fee": 55011, - "rawtransaction": "020000000001047a6e1d082b377de104941955d64a3345afa8ec20eecb91581f027099eb1bcae800000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff8531479536c09cfabd80292a8f1d6fbec04be166a936e8b18b7b9e33b181bc9c00000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff25f7e83e677eb1a61fde096b4d6a51c0cd63f21f58e98fa8ef3697c97805f7a400000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffffb8a974131a525e7916b54102304298a42fbad3dcae520b6e249925adf4c3263a00000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff03e803000000000000695121036b3fb3b0a39b2223988ae03b7a2e4031a96182c5ac9b6e82f82a2bcffa6b69a72102e8eadadde00ee8287f50cc8d1ac71c3a35c79342ccafcdfbd20e55d5c084029c21027036d44abfb4df852f3c4f59791560960703a4b1f71c106e783ddc73b38059fb53aee80300000000000069512102743fb3b0a39b22239859e039fa573d5f683832b3b96a0e1b35a58df0a7e598f4210276cc5b0927738ed2708d4a9c53fe4e15d7a82742b60df3bbd20e5036a00cc6b621027036d44abfb4df852f3c4f59791560960703a4b1f71c106e783ddc73b38059fb53ae4de916a804000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000002000002000002000000000000", + "btc_change": 19999945404, + "btc_fee": 52596, + "rawtransaction": "02000000000104eb16b1dea782b710fe959e2403a3444a73b1b428be97b4f759db556ec294cd6e00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff8bfecbfd4d7c1ac49abe78c4aab75848d36f482911123a35161cd1948d5ad31a00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff44b8185ee04b24bf5457051abf4738e1ab2202b08208d0900d3bb07d3859e35600000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffffb3a91e8473d3bcf38592e933a9a9a1c886b76a2edbd1d705ab37223ec621994f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff03e80300000000000069512103229c1ad740e1fc7fe315b713d61367a44b16f37daa05db4a8a0c3b783897df28210247b946b98e1484ab58f866adaf57143b427f4078cb44b221122d6c84343f3449210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53aee803000000000000695121033d9c1ad740e1fc7fe3c6b71156411863cdee1029c21a22ca81c18b1212d32203210215f7c76bec09a5de36408d1f83b32689262fee1fc6643d61122d696754b7f062210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53aebcf216a804000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5154,7 +5170,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5171,7 +5187,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -5183,9 +5199,9 @@ "data": "434e5452505254590a000000000000000100000000000003e8000000f3bafe12e200000000000003e800640000000000000064", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999984528, - "btc_fee": 15472, - "rawtransaction": "0200000000010101400da17a9c38969e9349938c712cb5fe17e140d556684d40609bbc8de6f71800000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff020000000000000000356a334888e644a4432368ffac60f51d328dbaa7867cadc37f156cf82d1110aacd6ef2f10db25c4e35f27776e0953b2f32aa528e782c90b5052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999985208, + "btc_fee": 14792, + "rawtransaction": "020000000001013ccaeac64cc74c78aef490bfae465b26ce4d220bd88c53177d880ed6dfea3dd700000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000356a335729e4bf32af8f0e0ce28caf305a31a0812e519e4adc58500482f912e756736022499ff5709b2ca48cd36bcb4cb95e61cb179138b8052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5207,8 +5223,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5224,19 +5240,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d4c77d66fa0fdd86114939522fe26fb4007aa23e", + "data": "434e54525052545902000000000000000100000000000003e880d2621d21756eb8ebb22ce432b26450ae670d208f", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999984835, - "btc_fee": 15165, - "rawtransaction": "02000000000101325a0e2bd800d6a210fec7d1488022dab51af1855e5a2cc9e9d209a9ad4fb24100000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff020000000000000000306a2ebe505c15e04cc6ff252064b5caeea6f93291adca44cab277c0b875e5e9b6f1c62bac17a18f8b67c5881eee5ecea9c3b6052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999985501, + "btc_fee": 14499, + "rawtransaction": "02000000000101d2f9655814140cfeae93a2e40eb2285f960de02624abe024150dab6c014da1f300000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000306a2eb969df85bea8ea91ea294ef9f0aaa6469576d27c614e4adbf7deee7540e457ac380a29697a2f5d6b0577e85a2c735db9052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "memo": null, "quantity_normalized": "0.00001000" } @@ -5246,23 +5262,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480d4c77d66fa0fdd86114939522fe26fb4007aa23e07ffff", + "data": "434e5452505254590480d2621d21756eb8ebb22ce432b26450ae670d208f07ffff", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999985634, - "btc_fee": 14366, - "rawtransaction": "0200000000010110884d89bf54c72ac74c8356cd74d43192c2e6fa58208f3e3c7023a57d40fdf100000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff020000000000000000236a21125f708511fb73418041897f838e9ec624edf64c5652f92226378aa8087503df5ee2b9052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999986264, + "btc_fee": 13736, + "rawtransaction": "02000000000101673d5bbca76da706712756c51a521ad02e735ebcd33dde3f61a615cffb602c8700000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000236a21ff6f20411bc7edae051336c0c581ebeac8000a4390289d2ca70960fa50db2a70d158bc052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "flags": 7, "memo": "ffff" } @@ -5272,17 +5288,17 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "quantity": 1000 }, "name": "dispense", "data": "434e5452505254590d00", "btc_in": 4949828000, "btc_out": 1000, - "btc_change": 4949811958, - "btc_fee": 15042, - "rawtransaction": "020000000001018a50b8a677043e332f0fc76414f842c99e19dc1a3ea547cf7d675e92eeb9b47803000000160014d4c77d66fa0fdd86114939522fe26fb4007aa23effffffff03e80300000000000016001429cd5d950d66789a5d1f7d02a448584db013a75d00000000000000000c6a0aeba5e2f638331881c242f622082701000000160014d4c77d66fa0fdd86114939522fe26fb4007aa23e02000000000000", + "btc_change": 4949812619, + "btc_fee": 14381, + "rawtransaction": "02000000000101e636303a873dcef54d7de9aa2af7c6eba3d2db3a0db88c259eeb62884461a52f03000000160014d2621d21756eb8ebb22ce432b26450ae670d208fffffffff03e803000000000000160014e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2000000000000000000c6a0adc4ca86eef93f50841298b25082701000000160014d2621d21756eb8ebb22ce432b26450ae670d208f02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5295,7 +5311,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5324,9 +5340,9 @@ "data": "434e5452505254595a4d5941535345547c7c31307c317c307c307c307c307c307c307c307c307c307c307c307c317c", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999984774, - "btc_fee": 15226, - "rawtransaction": "02000000000101828eeeb3b189f96c284bb43b56b3a233ba0f450235b12900448443587892a2d200000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff020000000000000000316a2f7cdc7dab733d05cded49bf3a92e00657a00ce5c9e6094d340a415d4a869107d31b1aa1d67854513c577f640710dd5d86b6052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999985443, + "btc_fee": 14557, + "rawtransaction": "020000000001019e8858a0cbb589a8d8d5b69862a7b6a3ac33ff311114fdc36a7fe9b27cd09e6f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000316a2f9f0dae530e4c2d83cc5b76667cb865f3c426c948aa34ddff60fa6e66025c62bab7ddcb6a1237be3e0a37741a99eeef23b9052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5361,13 +5377,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -5377,9 +5393,9 @@ "data": "434e5452505254595b464149524d494e54437c31", "btc_in": 5000000000, "btc_out": 0, - "btc_change": 4999986432, - "btc_fee": 13568, - "rawtransaction": "0200000000010173f3e15bff328e7684dd324e7169121eef4b8f41f01b76f87fd3fef014b97a1200000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff020000000000000000166a146eeb78d76bc2d0f664303f1fed8536163282cfa900bd052a01000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000000000000", + "btc_change": 4999987028, + "btc_fee": 12972, + "rawtransaction": "0200000000010113279095345a2f2ac96393d18fbf278be94aea081285a8b7626dc89b7d11f23f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000166a14f50858299126a56cacebad8bcc2eb8bde8c35f6254bf052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5394,8 +5410,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159:1", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767:3", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5408,12 +5424,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e545250525459646263727431713039376b617374616b706d70747574716e3878636866336c746b3830723833786e386a7272307c316164663235613339626561626636616565316537373862636534646135633063323466653638336265303361626562336431653161363865326266623135393a317c5843507c31303030", + "data": "434e5452505254596462637274317132666c7530706b757564327873386c65737139756e76723239667a3036356a7730336136346d7c646230353531373664633534666438393539633761353661663535646636666535376337626337643161633564663363393466363436616334353733623736373a337c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, - "btc_change": 29999914790, - "btc_fee": 82210, - "rawtransaction": "020000000001064a30d7aa97621fa7215b9068628b34582143025b23e43c919385d15e65a61fd500000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26fffffffffc639cf81bdb7eebfa4fd07f2b0a04522ef4b77694adee2eb59cc5fb9ea2b8cf00000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff7855472d95a4a5008c79a4e02256979897834672bddf030452b192f92d3f1f6900000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffffba85891632b3eb28b41823b39010fa9a72d14f363940fdb2f404b43908d43b0800000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffffb6401fece1b00e2669640d168680924096044a7b70347dd619b359f973b3466200000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffffc38b2dbd8cc1942ccd1659726f4e126e209ec15ecc0e58c8c48181df2c09c1a900000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e26ffffffff04e80300000000000069512103304643debd9caeaa49bf99a9f687163ca87053b420c44714c755bdc20c3a260b21026946620cae6a1aaae7ace816b5ab88521027d0490040c04bf909e1fca64fe67f21027036d44abfb4df852f3c4f59791560960703a4b1f71c106e783ddc73b38059fb53aee80300000000000069512102304643debd9caeaa49e8c2a8e192452bae2801ba70d204429447b3d74c2b33ad21032d4b6a17ff361afcbde0b04ce0e983000a2c8a1016039506a95ebdffa618e18021027036d44abfb4df852f3c4f59791560960703a4b1f71c106e783ddc73b38059fb53aee803000000000000695121021a4643debd9caeaa49b9caffbdc91631c00a34a370870345ac25d0b2784f520c210218285a74cd027c998bd8832e85d9b0616849e8237232f037c868859a947a879421027036d44abfb4df852f3c4f59791560960703a4b1f71c106e783ddc73b38059fb53ae265f22fc06000000160014797d6ec17db07615f16099cd8ba63f5d8ef19e2602000002000002000002000002000002000000000000", + "btc_change": 29999918400, + "btc_fee": 78600, + "rawtransaction": "020000000001066b9740003b749ea753f9d0b74a875c83c60667410c961203fa761dc7bdcb008f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffffd7606422e2d0ada7d99ccad4bcdb51dbe0c0d3a4d601253a9742899b5fb1292800000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff5975cc919095d0a390c024e7674d89beb25fe0fd759a73b8247d1a5e4e7e0c1f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff271e2d4f309e0a86df152fad193229530fa40288f2f4817d5289a3bcf2d221f200000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffffaacfa165e430871e4aac30fc62e6f07950866fa5e90ba26425aeed455236c2eb00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff389e7f52492ec0939d60faee8742c64336f492ed6bb50d8f983fb6d372d3cbb500000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff04e8030000000000006951210222ab349b8563f53461bed1c6278c3ee9156292f56c7a4608a2add91f6754f83a2102573836ca5bed8cddce8b8ec41112fabeede30072f363f52986c057c3d18c4fe2210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53aee8030000000000006951210222ab349b8563f53461ecd7c660cc69fc1f3dcbb93f3d4c48e1a88d522108f2012103042d22c619e0cdcd9f858c8f4047fab0fce0502af131ae61d4c304c2d18a4be5210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53aee8030000000000006951210308ab349b8563f53461b8849362c23ce47f47aefc6d3a1d4dd7c9eb67146c94232103324b47f32e83faaffcb2e8be2124cfd49ad33313c5579855e2a267f6e4bd78b9210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53ae406d22fc06000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5426,8 +5442,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5440,12 +5456,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964363961386631316536653365313537336237376531656637313434613039313634636538343738653332396430666635333363323433363739333666653035643a307c6263727431713039376b617374616b706d70747574716e3878636866336c746b3830723833786e386a7272307c5843507c31303030", + "data": "434e54525052545964333965653735326233313262373733323931303561363861623335633636376238303330376636613564326232303434396232366438656263316534313863323a307c62637274317132666c7530706b757564327873386c65737139756e76723239667a3036356a7730336136346d7c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, - "btc_change": 4950028128, - "btc_fee": 48872, - "rawtransaction": "02000000000103fb37a9dca5cc96fd9a77e163f5f335e99b823266ff66d4bb65a06deda7f6027f01000000160014ca3b94a05ec1dc09d7418d591bec418e3b2ec34afffffffff455d6dde2b5a53586e8e6d7e3d75437569bd8b0964969ca5776f47d9745a57600000000160014ca3b94a05ec1dc09d7418d591bec418e3b2ec34affffffffd611c71a066a2bba749fb82d4e8f0108a5e4b650e746ceb766375a80ecc516b001000000160014ca3b94a05ec1dc09d7418d591bec418e3b2ec34affffffff04e80300000000000069512102a571539b846ac9afa19f3027cd04c180838ac4eeb90532870676be68d4ce5d172103ad9176dce1e69f11b35589c470c5578363977f1f5a014b0bcf53250e30a8556b210204f56e87afd9282bd63ff393241251f5f49e0c4221dfa73db9b9944a7ddd072e53aee80300000000000069512102a571539b846ac9afa1cf35289b059487d48ac2beee5a33ce5326ae2bd2da5cbe2103f1c02a8ca6a69f4afa09cf8466d41ed96cd779440e0b434fc20d204f3bf81ff4210204f56e87afd9282bd63ff393241251f5f49e0c4221dfa73db9b9944a7ddd072e53aee803000000000000695121028f71539b846ac9afa1953e74de4e97cdeaaca2f7bb5033823145dc5fe3ab6cc92102c8f741edd5d2fe218a64bff013a06fb754af1a2c68382f3ba935103d03cb6782210204f56e87afd9282bd63ff393241251f5f49e0c4221dfa73db9b9944a7ddd072e53ae606f0b2701000000160014ca3b94a05ec1dc09d7418d591bec418e3b2ec34a02000002000002000000000000", + "btc_change": 4950030275, + "btc_fee": 46725, + "rawtransaction": "02000000000103d9d64e30e4cddc4ae711b103673ff2ef778b8b76a0ac6f4837a710f94ff2b80d01000000160014683c2d33034856d0b1db09c7b7e1773ae80add54ffffffff9ab86aed71e4c98fe94801572d8dd97a70c6ab07ec9052ddf5b44bcbbff0dad200000000160014683c2d33034856d0b1db09c7b7e1773ae80add54ffffffff12ac675882dc75787ee844b16a29500ca2d9d580928628d0e631bd8cad66a0df01000000160014683c2d33034856d0b1db09c7b7e1773ae80add54ffffffff04e8030000000000006951210299cdde3a3c495e64c938ac002b937eab26380991760805e8a9a35e27004c13c321021fb8e637e1d21d7b95419c3ccf53d234602cf32dacd2f131e09781b4a0227c272102e724a18b424760c2ae31273f48b5a06c7a2a3bccc4115ff383a3e80b8dbdbd6053aee8030000000000006951210299cdde3a3c495e64c938a75c2c9578fb206b02c3765002a3f8f215620108406e21034fecf265a28c0b38c7448677c70c87707723e776be92a13ab6d985bbf77a3dbc2102e724a18b424760c2ae31273f48b5a06c7a2a3bccc4115ff383a3e80b8dbdbd6053aee80300000000000069512102b3cdde3a3c495e64c96cac5878c224e24c196adc755a02ef9a916716307972f5210229808755d2e77e4da376fe04ff60e203061a9218c8e09303d0a3b58dc2104ad02102e724a18b424760c2ae31273f48b5a06c7a2a3bccc4115ff383a3e80b8dbdbd6053aec3770b2701000000160014683c2d33034856d0b1db09c7b7e1773ae80add5402000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5461,8 +5477,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 100000000000, @@ -5470,16 +5486,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730146486, - "last_issuance_block_time": 1730146486, + "first_issuance_block_time": 1730147494, + "last_issuance_block_time": 1730147494, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t", - "owner": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t", + "issuer": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", + "owner": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", "divisible": true, "locked": false, "supply": 100000000000, @@ -5487,16 +5503,16 @@ "first_issuance_block_index": 198, "last_issuance_block_index": 198, "confirmed": true, - "first_issuance_block_time": 1730146469, - "last_issuance_block_time": 1730146469, + "first_issuance_block_time": 1730147479, + "last_issuance_block_time": 1730147479, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 10000000000, @@ -5504,16 +5520,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730146296, - "last_issuance_block_time": 1730146313, + "first_issuance_block_time": 1730147326, + "last_issuance_block_time": 1730147334, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", - "owner": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "issuer": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "owner": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "divisible": true, "locked": false, "supply": 100000000000, @@ -5521,16 +5537,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730146291, - "last_issuance_block_time": 1730146291, + "first_issuance_block_time": 1730147321, + "last_issuance_block_time": 1730147321, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 100000000000, @@ -5538,8 +5554,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730146256, - "last_issuance_block_time": 1730146256, + "first_issuance_block_time": 1730147287, + "last_issuance_block_time": 1730147287, "supply_normalized": "1000.00000000" } ], @@ -5551,8 +5567,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "owner": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false, "supply": 10000000000, @@ -5560,15 +5576,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730146156, - "last_issuance_block_time": 1730146166, + "first_issuance_block_time": 1730147176, + "last_issuance_block_time": 1730147187, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5576,14 +5592,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5591,7 +5607,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -5604,7 +5620,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -5626,9 +5642,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72", + "tx_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", "block_index": 184, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5643,7 +5659,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730146339, + "block_time": 1730147353, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5669,9 +5685,9 @@ }, { "tx_index": 51, - "tx_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", + "tx_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", "block_index": 207, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5686,7 +5702,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730146529, + "block_time": 1730147530, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5712,9 +5728,9 @@ }, { "tx_index": 57, - "tx_hash": "44cd686fa15d9508241d20e5c7c2c60e8907dd3a651f43acf2b465f65fe3a0b0", + "tx_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", "block_index": 192, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5729,7 +5745,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730146437, + "block_time": 1730147455, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5755,9 +5771,9 @@ }, { "tx_index": 59, - "tx_hash": "6ff02408b1201b2608b0689d0bea61aef5787a69dea23b48593fd7aeafbe8fab", + "tx_hash": "8c2d59b10cf446779609dae007a9bc91d0a00c457b17a0b279920ccbc776425e", "block_index": 193, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5772,7 +5788,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730146451, + "block_time": 1730147459, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5798,9 +5814,9 @@ }, { "tx_index": 74, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5815,7 +5831,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730146529, + "block_time": 1730147530, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5846,13 +5862,13 @@ "/v2/assets//matches": { "result": [ { - "id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "tx0_index": 51, - "tx0_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 54, - "tx1_hash": "1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", - "tx1_address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "tx1_address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5866,7 +5882,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730146412, + "block_time": 1730147430, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5886,13 +5902,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", + "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", "tx0_index": 51, - "tx0_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 52, - "tx1_hash": "3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", - "tx1_address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "tx1_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5906,7 +5922,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730146408, + "block_time": 1730147427, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5926,13 +5942,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72_f00583215a74977d825af48a15ba3115eafcd73029016d7fb72e2b677f982665", + "id": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962_9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", "tx0_index": 49, - "tx0_hash": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 50, - "tx1_hash": "f00583215a74977d825af48a15ba3115eafcd73029016d7fb72e2b677f982665", - "tx1_address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "tx1_hash": "9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", + "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5946,7 +5962,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730146339, + "block_time": 1730147353, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5973,20 +5989,20 @@ "result": [ { "block_index": 194, - "address": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "2fe44fafe5dc6fed656ee0ae1a3030fee5ac7764531e086c0824911cba33019a", + "event": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146454, + "block_time": 1730147463, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -5994,20 +6010,20 @@ }, { "block_index": 125, - "address": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "b3b09508da940091d185f31dfe33e03423789cb1d05266ffc65086293c0ae82e", + "event": "f758697b62ece0df11283b89756ced9214a9f2bc83f7f4e02b74736099dab0d7", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146166, + "block_time": 1730147187, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -6015,20 +6031,20 @@ }, { "block_index": 124, - "address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "5392c98ba0d3b4a1e9cc178928aef013fb91044efbadc13b3ef0b481e3f75652", + "event": "830a7b9e1f16656de3d506078bbeb7daa4cac5f7a80eb58cd6d4e749dea4b48c", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146163, + "block_time": 1730147183, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -6036,20 +6052,20 @@ }, { "block_index": 124, - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "97601db51012c772538d455f68e4ea86ea3b49bca62b515f3b339ce106818b06", + "event": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146163, + "block_time": 1730147183, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -6061,16 +6077,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "5392c98ba0d3b4a1e9cc178928aef013fb91044efbadc13b3ef0b481e3f75652", + "event": "830a7b9e1f16656de3d506078bbeb7daa4cac5f7a80eb58cd6d4e749dea4b48c", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146163, + "block_time": 1730147183, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -6088,12 +6104,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "utxo": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "utxo_address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "utxo": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "utxo_address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -6105,16 +6121,16 @@ }, { "block_index": 207, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "event": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146529, + "block_time": 1730147530, "asset_info": { "divisible": true, "asset_longname": null, @@ -6126,16 +6142,16 @@ }, { "block_index": 206, - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "event": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146524, + "block_time": 1730147525, "asset_info": { "divisible": true, "asset_longname": null, @@ -6147,16 +6163,16 @@ }, { "block_index": 205, - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "bf6dc611418389c02104fbc5a96daaf298072b3687afde41b544e177672f36bd", + "event": "4f72d5bee6053f9591d332772cf67ec1874d67118be7049fac7da1ed5b6f83b8", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146511, + "block_time": 1730147521, "asset_info": { "divisible": true, "asset_longname": null, @@ -6168,16 +6184,16 @@ }, { "block_index": 204, - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "event": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146507, + "block_time": 1730147517, "asset_info": { "divisible": true, "asset_longname": null, @@ -6200,14 +6216,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "b3b09508da940091d185f31dfe33e03423789cb1d05266ffc65086293c0ae82e", + "tx_hash": "f758697b62ece0df11283b89756ced9214a9f2bc83f7f4e02b74736099dab0d7", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -6222,20 +6238,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730146166, + "block_time": 1730147187, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "5392c98ba0d3b4a1e9cc178928aef013fb91044efbadc13b3ef0b481e3f75652", + "tx_hash": "830a7b9e1f16656de3d506078bbeb7daa4cac5f7a80eb58cd6d4e749dea4b48c", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -6250,20 +6266,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730146163, + "block_time": 1730147183, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "97601db51012c772538d455f68e4ea86ea3b49bca62b515f3b339ce106818b06", + "tx_hash": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -6278,20 +6294,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730146159, + "block_time": 1730147180, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "f45ea10dc40bf578b6b99d7e2c27432d1885c5cee4c83c1c4a8b2503e245ab7d", + "tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -6306,7 +6322,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730146156, + "block_time": 1730147176, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6318,10 +6334,10 @@ "result": [ { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "destination": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6329,7 +6345,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -6342,10 +6358,10 @@ }, { "tx_index": 73, - "tx_hash": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "block_index": 206, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6353,7 +6369,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730146524, + "block_time": 1730147525, "asset_info": { "divisible": true, "asset_longname": null, @@ -6366,10 +6382,10 @@ }, { "tx_index": 72, - "tx_hash": "bf6dc611418389c02104fbc5a96daaf298072b3687afde41b544e177672f36bd", + "tx_hash": "4f72d5bee6053f9591d332772cf67ec1874d67118be7049fac7da1ed5b6f83b8", "block_index": 205, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6377,7 +6393,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730146511, + "block_time": 1730147521, "asset_info": { "divisible": true, "asset_longname": null, @@ -6390,10 +6406,10 @@ }, { "tx_index": 71, - "tx_hash": "6a79ea3876a8ce0e21af8def8bf2fcd933c2519e43d7f43844942be8598b0ad5", + "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", "block_index": 204, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6401,7 +6417,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730146507, + "block_time": 1730147517, "asset_info": { "divisible": true, "asset_longname": null, @@ -6414,10 +6430,10 @@ }, { "tx_index": 70, - "tx_hash": "64268a73b6335e08c17be7908750c355e162f69dc40620964b8485b9ea29ed14", + "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", "block_index": 203, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6425,7 +6441,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730146503, + "block_time": 1730147502, "asset_info": { "divisible": true, "asset_longname": null, @@ -6444,9 +6460,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6455,7 +6471,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6465,7 +6481,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -6481,9 +6497,9 @@ }, { "tx_index": 29, - "tx_hash": "aea7cc7426759bffef79ccd4e1e4316cd4b731eaf39c4948e5fe9e54550af005", + "tx_hash": "0f8b14713e0204ae9ff12c34e2165f2d60b09ca423e678e8a5330a4016d691d1", "block_index": 142, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6492,7 +6508,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "origin": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6502,7 +6518,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146233, + "block_time": 1730147253, "asset_info": { "divisible": true, "asset_longname": null, @@ -6518,9 +6534,9 @@ }, { "tx_index": 30, - "tx_hash": "b445952967bcc37d4b9c9af9daf910e389b7ba4d19496d3a5ec371392331620b", + "tx_hash": "aa2eb896e9aab9ff1080957160ee3e8e9ccdfe2e0d1487c2aea504a2fbd46ff9", "block_index": 150, - "source": "n3NcfeHqrFcRKSpTX8sSuQd1ukhJSvpgq9", + "source": "mg2iDq9hHHgarJckVLMgpwt5YE7WjvUVPs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6528,10 +6544,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "12e174f3b45733917eadded26c45db953bc6d535141701bdec44a4ecf9b3748f", - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "last_status_tx_hash": "c1af00f61ee9d962dec73cc4efbdaaefc68742f334d37368fddf8dfefe137210", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 0, - "last_status_tx_source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "last_status_tx_source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6539,7 +6555,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146265, + "block_time": 1730147296, "asset_info": { "divisible": true, "asset_longname": null, @@ -6555,18 +6571,18 @@ }, { "tx_index": 33, - "tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "last_status_tx_hash": null, - "origin": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6576,7 +6592,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -6597,9 +6613,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6608,7 +6624,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6618,7 +6634,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -6646,7 +6662,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -6654,7 +6670,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6663,7 +6679,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -6671,7 +6687,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6680,7 +6696,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -6688,7 +6704,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6697,7 +6713,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -6712,27 +6728,27 @@ { "tx_index": 75, "dispense_index": 0, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "destination": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "last_status_tx_hash": null, - "origin": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6747,7 +6763,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -6761,27 +6777,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "76a545977df47657ca694996b0d89b563754d7e3d7e6e88635a5b5e2ddd655f4", + "tx_hash": "d2daf0bfcb4bb4f5dd5290ec07abc6707ad98d2d570148e98fc9e471ed6ab89a", "block_index": 147, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "destination": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "destination": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "last_status_tx_hash": null, - "origin": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6796,7 +6812,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730146253, + "block_time": 1730147283, "asset_info": { "divisible": true, "asset_longname": null, @@ -6810,19 +6826,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5b9bb8529c715bea15f2be58f7affcd1300399f23a3001f3fc89e43885ee0fab", + "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6830,7 +6846,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6845,7 +6861,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -6859,19 +6875,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b58ea6d9c455cf1d2efe992936d841dab3e1b9b878c223aad78c7885de92ba17", + "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", "block_index": 140, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6879,7 +6895,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6894,7 +6910,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146224, + "block_time": 1730147244, "asset_info": { "divisible": true, "asset_longname": null, @@ -6917,10 +6933,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "f45ea10dc40bf578b6b99d7e2c27432d1885c5cee4c83c1c4a8b2503e245ab7d", + "tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", "tx_index": 10, "block_index": 125, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6945,7 +6961,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730146166, + "block_time": 1730147187, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6963,22 +6979,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "b3b09508da940091d185f31dfe33e03423789cb1d05266ffc65086293c0ae82e", + "tx_hash": "f758697b62ece0df11283b89756ced9214a9f2bc83f7f4e02b74736099dab0d7", "tx_index": 13, "block_index": 125, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", - "fairminter_tx_hash": "f45ea10dc40bf578b6b99d7e2c27432d1885c5cee4c83c1c4a8b2503e245ab7d", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146166, + "block_time": 1730147187, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -6987,22 +7003,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "5392c98ba0d3b4a1e9cc178928aef013fb91044efbadc13b3ef0b481e3f75652", + "tx_hash": "830a7b9e1f16656de3d506078bbeb7daa4cac5f7a80eb58cd6d4e749dea4b48c", "tx_index": 12, "block_index": 124, - "source": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", - "fairminter_tx_hash": "f45ea10dc40bf578b6b99d7e2c27432d1885c5cee4c83c1c4a8b2503e245ab7d", + "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146163, + "block_time": 1730147183, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -7011,22 +7027,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "97601db51012c772538d455f68e4ea86ea3b49bca62b515f3b339ce106818b06", + "tx_hash": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "f45ea10dc40bf578b6b99d7e2c27432d1885c5cee4c83c1c4a8b2503e245ab7d", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146159, + "block_time": 1730147180, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -7041,22 +7057,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "97601db51012c772538d455f68e4ea86ea3b49bca62b515f3b339ce106818b06", + "tx_hash": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "f45ea10dc40bf578b6b99d7e2c27432d1885c5cee4c83c1c4a8b2503e245ab7d", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146159, + "block_time": 1730147180, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -7072,9 +7088,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72", + "tx_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", "block_index": 184, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7089,7 +7105,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730146339, + "block_time": 1730147353, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7115,9 +7131,9 @@ }, { "tx_index": 52, - "tx_hash": "3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", + "tx_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", "block_index": 187, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7132,7 +7148,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730146408, + "block_time": 1730147427, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7158,9 +7174,9 @@ }, { "tx_index": 54, - "tx_hash": "1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "tx_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "block_index": 188, - "source": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7175,7 +7191,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730146412, + "block_time": 1730147430, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7201,9 +7217,9 @@ }, { "tx_index": 57, - "tx_hash": "44cd686fa15d9508241d20e5c7c2c60e8907dd3a651f43acf2b465f65fe3a0b0", + "tx_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", "block_index": 192, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7218,7 +7234,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730146437, + "block_time": 1730147455, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7244,9 +7260,9 @@ }, { "tx_index": 59, - "tx_hash": "6ff02408b1201b2608b0689d0bea61aef5787a69dea23b48593fd7aeafbe8fab", + "tx_hash": "8c2d59b10cf446779609dae007a9bc91d0a00c457b17a0b279920ccbc776425e", "block_index": 193, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7261,7 +7277,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730146451, + "block_time": 1730147459, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7292,9 +7308,9 @@ "/v2/orders/": { "result": { "tx_index": 74, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7309,7 +7325,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730146529, + "block_time": 1730147530, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7337,13 +7353,13 @@ "/v2/orders//matches": { "result": [ { - "id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "tx0_index": 51, - "tx0_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 54, - "tx1_hash": "1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", - "tx1_address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "tx1_address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7357,7 +7373,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730146412, + "block_time": 1730147430, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7377,13 +7393,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", + "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", "tx0_index": 51, - "tx0_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 52, - "tx1_hash": "3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", - "tx1_address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "tx1_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7397,7 +7413,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730146408, + "block_time": 1730147427, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7424,15 +7440,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "85727579c983fd177497804c779ca6842a233390f9e5ffda0e8b8c4b7e31c78e", + "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", "block_index": 187, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "btc_amount": 2000, - "order_match_id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", + "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", "status": "valid", "confirmed": true, - "block_time": 1730146408, + "block_time": 1730147427, "btc_amount_normalized": "0.00002000" } ], @@ -7443,9 +7459,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", + "tx_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", "block_index": 187, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7463,7 +7479,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730146408, + "block_time": 1730147427, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7489,9 +7505,9 @@ }, { "tx_index": 54, - "tx_hash": "1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "tx_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "block_index": 188, - "source": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7509,7 +7525,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730146412, + "block_time": 1730147430, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7535,9 +7551,9 @@ }, { "tx_index": 49, - "tx_hash": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72", + "tx_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", "block_index": 184, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7555,7 +7571,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730146339, + "block_time": 1730147353, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7581,9 +7597,9 @@ }, { "tx_index": 51, - "tx_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", + "tx_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", "block_index": 207, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7601,7 +7617,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730146529, + "block_time": 1730147530, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7627,9 +7643,9 @@ }, { "tx_index": 57, - "tx_hash": "44cd686fa15d9508241d20e5c7c2c60e8907dd3a651f43acf2b465f65fe3a0b0", + "tx_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", "block_index": 192, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7647,7 +7663,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730146437, + "block_time": 1730147455, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7678,13 +7694,13 @@ "/v2/orders///matches": { "result": [ { - "id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "tx0_index": 51, - "tx0_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 54, - "tx1_hash": "1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", - "tx1_address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "tx1_address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7701,7 +7717,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730146412, + "block_time": 1730147430, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7721,13 +7737,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", + "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", "tx0_index": 51, - "tx0_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 52, - "tx1_hash": "3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", - "tx1_address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "tx1_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7744,7 +7760,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730146408, + "block_time": 1730147427, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7764,13 +7780,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72_f00583215a74977d825af48a15ba3115eafcd73029016d7fb72e2b677f982665", + "id": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962_9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", "tx0_index": 49, - "tx0_hash": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 50, - "tx1_hash": "f00583215a74977d825af48a15ba3115eafcd73029016d7fb72e2b677f982665", - "tx1_address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "tx1_hash": "9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", + "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7787,7 +7803,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730146339, + "block_time": 1730147353, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7813,13 +7829,13 @@ "/v2/order_matches": { "result": [ { - "id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "tx0_index": 51, - "tx0_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 54, - "tx1_hash": "1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", - "tx1_address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "tx1_address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7833,7 +7849,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730146412, + "block_time": 1730147430, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7853,13 +7869,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", + "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", "tx0_index": 51, - "tx0_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 52, - "tx1_hash": "3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", - "tx1_address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "tx1_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7873,7 +7889,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730146408, + "block_time": 1730147427, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7893,13 +7909,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72_f00583215a74977d825af48a15ba3115eafcd73029016d7fb72e2b677f982665", + "id": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962_9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", "tx0_index": 49, - "tx0_hash": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx1_index": 50, - "tx1_hash": "f00583215a74977d825af48a15ba3115eafcd73029016d7fb72e2b677f982665", - "tx1_address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "tx1_hash": "9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", + "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7913,7 +7929,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730146339, + "block_time": 1730147353, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7958,66 +7974,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "67b310d4eebe9282c687e3867430c7203d82c1a32dcf143aa3154aed98394481", + "tx_hash": "9e48aa492c822fb8f10573455eaf92d7238d1c56139fd15c3731cd53d0c10e6e", "block_index": 121, - "source": "bcrt1qzyczyf4semgualrm5vymhsyc3vte8uf9stcyug", + "source": "bcrt1qutqyvw6qfn824wrr8kc5u5lhtyml7s9fg92uds", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730146151, + "block_time": 1730147172, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "23ab1040472e994db62627a5bdc82e01e6db96a9dd2e111226cf178f771a72af", + "tx_hash": "422452cf31c8190bad76ee05114c8fef9cfc2bff2289189668e02bd227432259", "block_index": 120, - "source": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730146146, + "block_time": 1730147169, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "06bd5b05718dde3c28e4409dfe5df7ef5f853b6873382d5f2b4bc4e90bd71bcd", + "tx_hash": "83350ea2ef8988a3e3c47e9bb475d84937d37345db027a863e145ec516e24496", "block_index": 119, - "source": "bcrt1qtc04kxxqg2zrc8jxw7d9uulhcqgfsw5twzty8q", + "source": "bcrt1qh2m2jullqmwfxs3vllx9krdjz6qgz0r4x3jc8s", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730146143, + "block_time": 1730147165, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "41c6dd554f78893753e66936ffebd48e0c34db2ec734077153ab9e2ceb967c32", + "tx_hash": "f2ce999766ff3d70a5dd5bcc7a744b6f9b64861ee7a2abf190bc84f85562267a", "block_index": 118, - "source": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t", + "source": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730146140, + "block_time": 1730147161, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "7dc41c84fbdcf25225dc3aa8aa5f444208e30043546ea450ca9b97e157ebc433", + "tx_hash": "52dda604707387f581bee24b3be851cf8da91a4e256837de0021558ac7fc8970", "block_index": 117, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730146137, + "block_time": 1730147158, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8029,9 +8045,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8040,7 +8056,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8050,7 +8066,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -8066,9 +8082,9 @@ }, { "tx_index": 29, - "tx_hash": "aea7cc7426759bffef79ccd4e1e4316cd4b731eaf39c4948e5fe9e54550af005", + "tx_hash": "0f8b14713e0204ae9ff12c34e2165f2d60b09ca423e678e8a5330a4016d691d1", "block_index": 142, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8077,7 +8093,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "origin": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8087,7 +8103,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146233, + "block_time": 1730147253, "asset_info": { "divisible": true, "asset_longname": null, @@ -8103,9 +8119,9 @@ }, { "tx_index": 30, - "tx_hash": "b445952967bcc37d4b9c9af9daf910e389b7ba4d19496d3a5ec371392331620b", + "tx_hash": "aa2eb896e9aab9ff1080957160ee3e8e9ccdfe2e0d1487c2aea504a2fbd46ff9", "block_index": 150, - "source": "n3NcfeHqrFcRKSpTX8sSuQd1ukhJSvpgq9", + "source": "mg2iDq9hHHgarJckVLMgpwt5YE7WjvUVPs", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8113,10 +8129,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "12e174f3b45733917eadded26c45db953bc6d535141701bdec44a4ecf9b3748f", - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "last_status_tx_hash": "c1af00f61ee9d962dec73cc4efbdaaefc68742f334d37368fddf8dfefe137210", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 0, - "last_status_tx_source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "last_status_tx_source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -8124,7 +8140,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146265, + "block_time": 1730147296, "asset_info": { "divisible": true, "asset_longname": null, @@ -8140,9 +8156,9 @@ }, { "tx_index": 62, - "tx_hash": "a84431367d549b443ffdb3837c6f52a401a4649d9bc4c46b51f336351e712cf3", + "tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", "block_index": 197, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8151,7 +8167,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8161,11 +8177,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146466, + "block_time": 1730147475, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -8177,18 +8193,18 @@ }, { "tx_index": 33, - "tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "last_status_tx_hash": null, - "origin": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8198,7 +8214,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -8219,9 +8235,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8230,7 +8246,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8240,7 +8256,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -8260,19 +8276,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5b9bb8529c715bea15f2be58f7affcd1300399f23a3001f3fc89e43885ee0fab", + "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8280,7 +8296,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8295,7 +8311,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -8309,19 +8325,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b58ea6d9c455cf1d2efe992936d841dab3e1b9b878c223aad78c7885de92ba17", + "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", "block_index": 140, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8329,7 +8345,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8344,7 +8360,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146224, + "block_time": 1730147244, "asset_info": { "divisible": true, "asset_longname": null, @@ -8363,20 +8379,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "babc61747028dfbe864a00fb10aa36000900c71d17ca5eca8f1f86c160f52548", + "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", "block_index": 154, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730146279, + "block_time": 1730147310, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -8397,20 +8413,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "babc61747028dfbe864a00fb10aa36000900c71d17ca5eca8f1f86c160f52548", + "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", "block_index": 154, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730146279, + "block_time": 1730147310, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -8433,12 +8449,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "babc61747028dfbe864a00fb10aa36000900c71d17ca5eca8f1f86c160f52548", + "event": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", "tx_index": 41, - "utxo": "0a9b090c8540204eb0c6bea32f10884dbdcdc7ea090a2d6fc9b21b92c9409655:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "utxo": "f1a36cd2b5c4271fcf32b8178c8a21d44379539553ab6b6dc0a131b992ef4b8d:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "confirmed": true, - "block_time": 1730146279, + "block_time": 1730147310, "asset_info": { "divisible": true, "asset_longname": null, @@ -8450,16 +8466,16 @@ }, { "block_index": 154, - "address": "bcrt1qcuwkj6w32f4llkdhcht2lhs8xtc3v5424em4lv", + "address": "bcrt1qcz42hsauvvj7zvqys6awauwvtlxm66sq2gnk5v", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "babc61747028dfbe864a00fb10aa36000900c71d17ca5eca8f1f86c160f52548", + "event": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730146279, + "block_time": 1730147310, "asset_info": { "divisible": true, "asset_longname": null, @@ -8480,27 +8496,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "af771557f657a58f1e03ab74fddba4ca96cc9f46012fd299261597878446a1fc", - "messages_hash": "5c704de741dd3b8e77f1f0c520f22c961ebc5056011217f7a4fffc52990c919e", + "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", + "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", "transaction_count": 1, - "txlist_hash": "523269ab11d7c7275899631ce241fde1191bc71074618078d9beda622aabebad", - "block_time": 1730146542 + "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", + "block_time": 1730147539 }, "tx_hash": null, "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 674, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75 }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 673, @@ -8509,14 +8525,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -8527,9 +8543,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 672, @@ -8538,9 +8554,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "status": 0, - "tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "asset_info": { "divisible": true, "asset_longname": null, @@ -8550,24 +8566,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -8577,9 +8593,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 670, @@ -8591,15 +8607,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "af771557f657a58f1e03ab74fddba4ca96cc9f46012fd299261597878446a1fc", - "messages_hash": "5c704de741dd3b8e77f1f0c520f22c961ebc5056011217f7a4fffc52990c919e", + "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", + "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", "transaction_count": 1, - "txlist_hash": "523269ab11d7c7275899631ce241fde1191bc71074618078d9beda622aabebad", - "block_time": 1730146542 + "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", + "block_time": 1730147539 }, "tx_hash": null, "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } }, "/v2/events/counts": { @@ -8634,16 +8650,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -8653,9 +8669,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 669, @@ -8665,12 +8681,12 @@ "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 1500000000, "tx_index": 75, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "block_time": 1730146542, + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -8680,9 +8696,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 666, @@ -8692,39 +8708,39 @@ "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 1500000000, "tx_index": 75, - "utxo": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", - "utxo_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "block_time": 1730146542, + "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_time": 1730147539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 }, { "event_index": 656, "event": "CREDIT", "params": { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "block_index": 207, "calling_function": "cancel order", - "event": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", + "event": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730146529, + "block_time": 1730147530, "asset_info": { "divisible": true, "asset_longname": null, @@ -8734,24 +8750,24 @@ }, "quantity_normalized": "0.00005000" }, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_time": 1730146529 + "block_time": 1730147530 }, { "event_index": 645, "event": "CREDIT", "params": { - "address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "block_index": 206, "calling_function": "mpma send", - "event": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "event": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "quantity": 10, "tx_index": 73, "utxo": null, "utxo_address": null, - "block_time": 1730146524, + "block_time": 1730147525, "asset_info": { "divisible": true, "asset_longname": null, @@ -8761,9 +8777,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "block_index": 206, - "block_time": 1730146524 + "block_time": 1730147525 } ], "next_cursor": 644, @@ -8780,27 +8796,27 @@ { "tx_index": 75, "dispense_index": 0, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "destination": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "last_status_tx_hash": null, - "origin": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8815,7 +8831,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -8829,19 +8845,19 @@ { "tx_index": 63, "dispense_index": 0, - "tx_hash": "13c91a5e226bbe809951bd97672f3031d9107245b3e4ab5299ad5f9307e754bc", + "tx_hash": "3eaa0359313df169f4e9a098ef8e0ab8cdd5939ab338dca7fa670dbbfb3c0111", "block_index": 197, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a84431367d549b443ffdb3837c6f52a401a4649d9bc4c46b51f336351e712cf3", + "dispenser_tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8849,7 +8865,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8864,11 +8880,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146466, + "block_time": 1730147475, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -8878,27 +8894,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "76a545977df47657ca694996b0d89b563754d7e3d7e6e88635a5b5e2ddd655f4", + "tx_hash": "d2daf0bfcb4bb4f5dd5290ec07abc6707ad98d2d570148e98fc9e471ed6ab89a", "block_index": 147, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "destination": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "destination": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "last_status_tx_hash": null, - "origin": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8913,7 +8929,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730146253, + "block_time": 1730147283, "asset_info": { "divisible": true, "asset_longname": null, @@ -8927,19 +8943,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "5b9bb8529c715bea15f2be58f7affcd1300399f23a3001f3fc89e43885ee0fab", + "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8947,7 +8963,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8962,7 +8978,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146228, + "block_time": 1730147248, "asset_info": { "divisible": true, "asset_longname": null, @@ -8976,19 +8992,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b58ea6d9c455cf1d2efe992936d841dab3e1b9b878c223aad78c7885de92ba17", + "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", "block_index": 140, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "de0392026ded8bcdc60ea4269acc86b2f69c07656e2810e6697b297de9dd0102", + "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8996,7 +9012,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9011,7 +9027,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730146224, + "block_time": 1730147244, "asset_info": { "divisible": true, "asset_longname": null, @@ -9030,10 +9046,10 @@ "result": [ { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "destination": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -9041,7 +9057,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -9054,10 +9070,10 @@ }, { "tx_index": 75, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "source": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "destination": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -9065,11 +9081,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -9078,10 +9094,10 @@ }, { "tx_index": 73, - "tx_hash": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "block_index": 206, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9089,7 +9105,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730146524, + "block_time": 1730147525, "asset_info": { "divisible": true, "asset_longname": null, @@ -9102,10 +9118,10 @@ }, { "tx_index": 73, - "tx_hash": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "block_index": 206, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9113,11 +9129,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730146524, + "block_time": 1730147525, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -9126,10 +9142,10 @@ }, { "tx_index": 73, - "tx_hash": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "block_index": 206, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9137,11 +9153,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730146524, + "block_time": 1730147525, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -9156,14 +9172,14 @@ "result": [ { "tx_index": 68, - "tx_hash": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567", + "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -9178,20 +9194,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730146486, + "block_time": 1730147494, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 64, - "tx_hash": "c11afdaac9b596be7f1b7b213aa67e1cc3b2360dc5566dc5388c5e0d93eb5b3d", + "tx_hash": "0a9d770a1093b62fffeae30fc71fdcfbe41e571d6df0b5586d3e4e3368f6b254", "msg_index": 0, "block_index": 198, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t", - "issuer": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t", + "source": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", + "issuer": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", "transfer": false, "callable": false, "call_date": 0, @@ -9206,20 +9222,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730146469, + "block_time": 1730147479, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "008a089de6c3b027c215e285abb61355f96f3c800e0b8b8980bac499a00fc56b", + "tx_hash": "ecedf49fefa307a78131f6b1d7f52c17b4ececb2e16f6ace25f1e6735fe7090f", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -9234,20 +9250,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730146316, + "block_time": 1730147339, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "46c3e96bb3baf10e4bf6d73e6229478349243117097c6cc77c3b827bb46076be", + "tx_hash": "4ef076610716e47917b7d9a1703541120e00b089e1da54ae1a615438306de745", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -9262,20 +9278,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730146313, + "block_time": 1730147334, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "9464b995c9d7ac49fafffbca07dd001741049bad5a26e88e531296a769d8c1a5", + "tx_hash": "4a865f981bedcaa6f59c08c2b25f1e47c0c1db264cac059bd89ad1011fd381e0", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -9290,7 +9306,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730146309, + "block_time": 1730147330, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9301,14 +9317,14 @@ "/v2/issuances/": { "result": { "tx_index": 68, - "tx_hash": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567", + "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "transfer": false, "callable": false, "call_date": 0, @@ -9323,7 +9339,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730146486, + "block_time": 1730147494, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9332,16 +9348,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "2fe44fafe5dc6fed656ee0ae1a3030fee5ac7764531e086c0824911cba33019a", + "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", "block_index": 194, - "source": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730146454, + "block_time": 1730147463, "fee_paid_normalized": "0.00600000" } ], @@ -9352,16 +9368,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "2fe44fafe5dc6fed656ee0ae1a3030fee5ac7764531e086c0824911cba33019a", + "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", "block_index": 194, - "source": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730146454, + "block_time": 1730147463, "fee_paid_normalized": "0.00600000" } ], @@ -9372,9 +9388,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "d93f2f554dff8c8f834a6f3edfcd5675bfd43cadf382fdc3ec07953a491925cf", + "tx_hash": "524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e", "block_index": 138, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9382,14 +9398,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730146217, + "block_time": 1730147237, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "75d373adf0de96f6ed32dc878f287920ccf7cdb7b9c5012fcd6ec9ef3d3939c5", + "tx_hash": "18aaf369ee7b22607393e152af0efd92979dee2ef001c12f68449f3dd6a3c100", "block_index": 137, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9397,7 +9413,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730146212, + "block_time": 1730147234, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9407,9 +9423,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "d93f2f554dff8c8f834a6f3edfcd5675bfd43cadf382fdc3ec07953a491925cf", + "tx_hash": "524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e", "block_index": 138, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9417,17 +9433,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730146217, + "block_time": 1730147237, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "adf5bd6deaba6cfeb6ec892a6fd69ba021d135559674853ad7bde8145789e4f9", + "tx_hash": "0998f235a3feba0746e143f431c1f698ca50ae3f8745598a4671168e9c151cef", "tx_index": 42, "block_index": 155, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9452,7 +9468,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730146283, + "block_time": 1730147313, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9461,10 +9477,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "91ab2f030c6b3d93359b217216415696e99d5800a0423a27dd32b8dd72f6b7c1", + "tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", "tx_index": 22, "block_index": 135, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9489,7 +9505,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730146205, + "block_time": 1730147227, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9501,10 +9517,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "92b6936e0fd4ebfe23aa10834e598f9eb5efad5d9a03db25cf6e6dec807c352a", + "tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", "tx_index": 18, "block_index": 131, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9529,7 +9545,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730146189, + "block_time": 1730147211, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9541,10 +9557,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "813fabeb4671db0750f64a1def89364f381970217838a1cd7c35859ed53cecf0", + "tx_hash": "ef648a52d64c60ed013aa174ae6a48421d17f923b88d3aba2e05b58ef0c76886", "tx_index": 14, "block_index": 130, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9569,7 +9585,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730146186, + "block_time": 1730147206, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9581,10 +9597,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "f45ea10dc40bf578b6b99d7e2c27432d1885c5cee4c83c1c4a8b2503e245ab7d", + "tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", "tx_index": 10, "block_index": 125, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9609,7 +9625,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730146166, + "block_time": 1730147187, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9627,22 +9643,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "7e828b53dcd7e0b212fa0b15a0cf8a214c551ab1d1c67d4676345eda71be1d6e", + "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "91ab2f030c6b3d93359b217216415696e99d5800a0423a27dd32b8dd72f6b7c1", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146209, + "block_time": 1730147231, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -9651,22 +9667,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "28123f2716e40a4c1ecebe4c55a1bb6717ecb5d0a0e3efbb6a14b6f9288cf13c", + "tx_hash": "a9ec529d035361f0f926d689b0a23cdf4fef412a2be429d5399f71ab7fbd086a", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "92b6936e0fd4ebfe23aa10834e598f9eb5efad5d9a03db25cf6e6dec807c352a", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146201, + "block_time": 1730147222, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -9675,22 +9691,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "f0189ff8055fae52b2a895de0c0965efe86ed68c8614b80b157036b8f4b7af42", + "tx_hash": "93c5f036c8e324dda6f5e9e84e15f096906d0974ea4003bdf51cd4bd013c3ad4", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "92b6936e0fd4ebfe23aa10834e598f9eb5efad5d9a03db25cf6e6dec807c352a", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146197, + "block_time": 1730147218, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -9699,22 +9715,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "aadefa8b06c22ae58819261b95755f51b6ac15856c478e7a295b1c5f193d8130", + "tx_hash": "24ba6e5e817679a1c81bd41098b8ea21134e6fd0493e343e7ce171576bae5ef2", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "92b6936e0fd4ebfe23aa10834e598f9eb5efad5d9a03db25cf6e6dec807c352a", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146193, + "block_time": 1730147215, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -9723,22 +9739,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "a97099230853cfb3c9c2f0d6acaa6a7894cfa01aea8e4799ea71f63225118d83", + "tx_hash": "ddcb643e460d09cded92379e8a56186db44c87c5c1fac5fb1e41c45b4be96ee7", "tx_index": 17, "block_index": 129, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", - "fairminter_tx_hash": "813fabeb4671db0750f64a1def89364f381970217838a1cd7c35859ed53cecf0", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "fairminter_tx_hash": "ef648a52d64c60ed013aa174ae6a48421d17f923b88d3aba2e05b58ef0c76886", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146182, + "block_time": 1730147202, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -9752,22 +9768,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "7e828b53dcd7e0b212fa0b15a0cf8a214c551ab1d1c67d4676345eda71be1d6e", + "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "fairminter_tx_hash": "91ab2f030c6b3d93359b217216415696e99d5800a0423a27dd32b8dd72f6b7c1", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "fairminter_tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730146209, + "block_time": 1730147231, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -9784,8 +9800,8 @@ "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "eeaa322a0230cc749b914fa52cc3f2d2e5094f91fb4cd8f37f24402d8459ba39", - "address": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t" + "txid": "c98bca33812483eb341164f4c5a4ba9d07609a460ff2889e15c58332db2b7878", + "address": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf" }, { "vout": 0, @@ -9793,8 +9809,8 @@ "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "9a7aba5837431573d17d138f028df4c379a8b901c27ee3add94dc9679894a722", - "address": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t" + "txid": "39b475d96fe427bf70a7413c344bbfa88768c4f038da4a0efceb2d0a3b5065bf", + "address": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf" }, { "vout": 2, @@ -9802,8 +9818,8 @@ "value": 100000, "confirmations": 52, "amount": 0.001, - "txid": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e", - "address": "bcrt1qtc04kxxqg2zrc8jxw7d9uulhcqgfsw5twzty8q" + "txid": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd", + "address": "bcrt1qh2m2jullqmwfxs3vllx9krdjz6qgz0r4x3jc8s" } ], "next_cursor": null, @@ -9812,28 +9828,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "3f0299bac8352482edc0eccc2d4e99c9f0f5ac3823ed8d6479edf2fe7dfcd605" + "tx_hash": "1e694ec5568f83f06a53f19617cb3373a81673e566a3f4674943004b4241310b" }, { - "tx_hash": "1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13" + "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68" }, { - "tx_hash": "5392c98ba0d3b4a1e9cc178928aef013fb91044efbadc13b3ef0b481e3f75652" + "tx_hash": "830a7b9e1f16656de3d506078bbeb7daa4cac5f7a80eb58cd6d4e749dea4b48c" }, { - "tx_hash": "ccb9b7d1943fd54784287d8b30c8ae918b05b4040903571ae381abb13a165f62" + "tx_hash": "48a65ca47e1f55ab2c324ea59ab0c61e1948101ffb108e7a0b1861245bfba996" }, { - "tx_hash": "cf7a03dadb21efb85537e9333e1f8b08821bc84cbf49e79f3da6cd6d6c50e57b" + "tx_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9" }, { - "tx_hash": "ada2535c1fa5b9d7e5607c6cca03c5bd0d6d41b80278ddede04442c5a7a7cb8e" + "tx_hash": "0e342a2ee7897e26da5b3b27ef89ed24cb2f5db944eb6471b2b3b214318205e4" }, { - "tx_hash": "2fe44fafe5dc6fed656ee0ae1a3030fee5ac7764531e086c0824911cba33019a" + "tx_hash": "c4c02b36eb4f5d00ec94e34a9caeeb533405c89dfe49d307bb4085c54b8a35e6" }, { - "tx_hash": "0ff9990de057ad4347e03fd447c857a01357fd8d37dad2736ba8261747d4d0e8" + "tx_hash": "c460c8c1cea374657e76abf6b2e42aa139e55eeab89569949f94ce705bdc60f4" } ], "next_cursor": null, @@ -9841,8 +9857,8 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 9, - "tx_hash": "c380d8ecde78e92e90bb3298e184cf7f97e083d1b7a46fef23d54e4869df66d3" + "block_index": 4, + "tx_hash": "258b682c0b3b5c300a74faa54c3b3c75e72556d56bbf097eebb51d521068de57" } }, "/v2/bitcoin/addresses/
/utxos": { @@ -9853,7 +9869,7 @@ "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "eeaa322a0230cc749b914fa52cc3f2d2e5094f91fb4cd8f37f24402d8459ba39" + "txid": "c98bca33812483eb341164f4c5a4ba9d07609a460ff2889e15c58332db2b7878" }, { "vout": 0, @@ -9861,20 +9877,20 @@ "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "9a7aba5837431573d17d138f028df4c379a8b901c27ee3add94dc9679894a722" + "txid": "39b475d96fe427bf70a7413c344bbfa88768c4f038da4a0efceb2d0a3b5065bf" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "027036d44abfb4df852f3c4f59791560960703a4b1f71c106e783ddc73b38059fb" + "result": "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e" }, "/v2/bitcoin/transactions/": { - "result": "020000000001012e28772d2e036f95ff1b248f7af0ad342a4f53d3315277b3a4bbe1fb8fc1ef870100000000ffffffff03e803000000000000160014ca3b94a05ec1dc09d7418d591bec418e3b2ec34a00000000000000000c6a0aa85eec846ff348436c54dced082701000000160014257dd6aad0f2f16058eba326e25c9a45af5f8f320247304402206aacfed176e6968c27113708ddf4fe44be16feba80c07eb6a6ca73a41bb21c7502204d247921542b6df0a5c736bbd502b5577dc9bc5cec73ce6282a98f843f7a7b85012102ace0460805a867b49c8d832e05c5c361af93fdaf9345011036eeb261ad10f56200000000" + "result": "02000000000101dd6036f00dd0c18b8a639d86de226d3296f7c720ec11b17defc3204e8b01d01e0100000000ffffffff03e803000000000000160014683c2d33034856d0b1db09c7b7e1773ae80add5400000000000000000c6a0a11eda9ba1cdb99830cfaeb14092701000000160014bf4792b14b11b425a171e4605d662e7cf9ed8d63024730440220242fd2fafb6e456eeb2416629f59e8c033bd124a870f3cec20c7784517f511be02203ce32ad5e5f27bbdccda125b876ff10b8d6a69fb4ee4882eba632d663a46554b012102a59bfe4c5aff502eec07b4831b733657f409185a43056c6a5a250557f9e3b45d00000000" }, "/v2/bitcoin/estimatesmartfee": { - "result": 61397 + "result": 58701 }, "/v2/bitcoin/getmempoolinfo": { "result": { @@ -9894,27 +9910,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "tx_index": 76 }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "memo": null, "quantity": 10000, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "status": "valid", - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "tx_index": 76, "asset_info": { "divisible": true, @@ -9925,22 +9941,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "CREDIT", "params": { - "address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -9950,22 +9966,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "XCP", "block_index": 208, - "event": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -9975,30 +9991,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730146546.5615797, + "block_time": 1730147542.563512, "btc_amount": 0, - "data": "0200000000000000010000000000002710803c5b324bad0b5d20f0f3f24368314a7712e33655", + "data": "0200000000000000010000000000002710803970def27ed5459d1126af8f037ccb8fe4aeac4d", "destination": "", "fee": 10000, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "tx_index": 76, - "utxos_info": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7:1", + "utxos_info": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "memo": null, "asset_info": { "divisible": true, @@ -10012,7 +10028,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 } ], "next_cursor": null, @@ -10021,19 +10037,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "CREDIT", "params": { - "address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -10043,7 +10059,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 } ], "next_cursor": null, @@ -10052,27 +10068,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "tx_index": 76 }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "memo": null, "quantity": 10000, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "status": "valid", - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "tx_index": 76, "asset_info": { "divisible": true, @@ -10083,22 +10099,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "CREDIT", "params": { - "address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -10108,22 +10124,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "asset": "XCP", "block_index": 208, - "event": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -10133,30 +10149,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 }, { - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730146546.5615797, + "block_time": 1730147542.563512, "btc_amount": 0, - "data": "0200000000000000010000000000002710803c5b324bad0b5d20f0f3f24368314a7712e33655", + "data": "0200000000000000010000000000002710803970def27ed5459d1126af8f037ccb8fe4aeac4d", "destination": "", "fee": 10000, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", - "tx_hash": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", "tx_index": 76, - "utxos_info": "c477c5f1feb1cb9ca191120dd35fde7317317ea8b20f3d0287a555918df65ce7:1", + "utxos_info": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "memo": null, "asset_info": { "divisible": true, @@ -10170,7 +10186,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730146546.5615797 + "timestamp": 1730147542.563512 } ], "next_cursor": null, @@ -10192,15 +10208,15 @@ "event_index": 662, "event": "NEW_BLOCK", "params": { - "block_hash": "57df81dd0c83bf7c8d47680b1cc451f7132f2b28ab8a8552d803ee58419522c9", + "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", "block_index": 208, - "block_time": 1730146542, + "block_time": 1730147539, "difficulty": 545259519, - "previous_block_hash": "56ae91d142f683a09d940b258acad4656326d617818b4c9ab8d3e465c7498eb4" + "previous_block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086" }, "tx_hash": null, "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 653, @@ -10212,17 +10228,17 @@ "event_index": 663, "event": "NEW_TRANSACTION", "params": { - "block_hash": "57df81dd0c83bf7c8d47680b1cc451f7132f2b28ab8a8552d803ee58419522c9", + "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", "block_index": 208, - "block_time": 1730146542, + "block_time": 1730147539, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "fee": 0, - "source": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "utxos_info": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1 69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10232,9 +10248,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 654, @@ -10248,16 +10264,16 @@ "params": { "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "out_index": 0, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "block_time": 1730146542, + "block_time": 1730147539, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 558, @@ -10270,15 +10286,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "af771557f657a58f1e03ab74fddba4ca96cc9f46012fd299261597878446a1fc", - "messages_hash": "5c704de741dd3b8e77f1f0c520f22c961ebc5056011217f7a4fffc52990c919e", + "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", + "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", "transaction_count": 1, - "txlist_hash": "523269ab11d7c7275899631ce241fde1191bc71074618078d9beda622aabebad", - "block_time": 1730146542 + "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", + "block_time": 1730147539 }, "tx_hash": null, "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 661, @@ -10291,12 +10307,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75 }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 660, @@ -10312,12 +10328,12 @@ "address": null, "asset": "XCP", "block_index": 208, - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 1500000000, "tx_index": 75, - "utxo": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", - "utxo_address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", - "block_time": 1730146542, + "utxo": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "utxo_address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -10327,9 +10343,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 665, @@ -10341,16 +10357,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -10360,9 +10376,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 669, @@ -10376,26 +10392,26 @@ "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "memo": null, "quantity": 1000, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "status": "valid", - "tx_hash": "9291277032ae953a6e14ff3e6a3dbfa85c0c62e03cd8549beaf5a5b0271a0fbd", + "tx_hash": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f", "tx_index": 69, - "block_time": 1730146500, + "block_time": 1730147498, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "9291277032ae953a6e14ff3e6a3dbfa85c0c62e03cd8549beaf5a5b0271a0fbd", + "tx_hash": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f", "block_index": 202, - "block_time": 1730146500 + "block_time": 1730147498 } ], "next_cursor": 498, @@ -10409,15 +10425,15 @@ "params": { "asset": "XCP", "block_index": 206, - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "status": "valid", - "tx_hash": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "tx_index": 73, - "block_time": 1730146524, + "block_time": 1730147525, "asset_info": { "divisible": true, "asset_longname": null, @@ -10427,9 +10443,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "78b4b9ee925e677dcf47a53e1adc199ec942f81464c70f2f333e0477a6b8508a", + "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", "block_index": 206, - "block_time": 1730146524 + "block_time": 1730147525 } ], "next_cursor": 649, @@ -10452,20 +10468,20 @@ "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "status": "valid", - "tx_hash": "2fe44fafe5dc6fed656ee0ae1a3030fee5ac7764531e086c0824911cba33019a", + "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", "tx_index": 60, - "block_time": 1730146454, + "block_time": 1730147463, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "2fe44fafe5dc6fed656ee0ae1a3030fee5ac7764531e086c0824911cba33019a", + "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", "block_index": 194, - "block_time": 1730146454 + "block_time": 1730147463 } ], "next_cursor": null, @@ -10482,15 +10498,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "status": "valid", - "tx_hash": "babc61747028dfbe864a00fb10aa36000900c71d17ca5eca8f1f86c160f52548", + "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", "tx_index": 41, - "block_time": 1730146279, + "block_time": 1730147310, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -10504,9 +10520,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "babc61747028dfbe864a00fb10aa36000900c71d17ca5eca8f1f86c160f52548", + "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", "block_index": 154, - "block_time": 1730146279 + "block_time": 1730147310 } ], "next_cursor": null, @@ -10527,11 +10543,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 201, - "block_time": 1730146486 + "block_time": 1730147494 }, - "tx_hash": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567", + "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", "block_index": 201, - "block_time": 1730146486 + "block_time": 1730147494 } ], "next_cursor": 567, @@ -10554,22 +10570,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "status": "valid", "transfer": false, - "tx_hash": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567", + "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", "tx_index": 68, - "block_time": 1730146486, + "block_time": 1730147494, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "17fd033cadf456749d9e3b3a315e36da542c0e98dbb3c82c88c31116e1ad5567", + "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", "block_index": 201, - "block_time": 1730146486 + "block_time": 1730147494 } ], "next_cursor": 568, @@ -10584,12 +10600,12 @@ "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1q98x4m9gdveuf5hgl05p2gjzcfkcp8f6adz4h2j", + "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", "status": "valid", "tag": "64657374726f79", - "tx_hash": "43def1687dbb4eea99088dc74670dda0794297cef98d654356311c8e8f55b79f", + "tx_hash": "5709751e42222eb3fe342e7c1bdb4cfc6f20f4a9eec48c8dd200a08f1b4838bb", "tx_index": 61, - "block_time": 1730146457, + "block_time": 1730147466, "asset_info": { "divisible": true, "asset_longname": null, @@ -10599,9 +10615,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "43def1687dbb4eea99088dc74670dda0794297cef98d654356311c8e8f55b79f", + "tx_hash": "5709751e42222eb3fe342e7c1bdb4cfc6f20f4a9eec48c8dd200a08f1b4838bb", "block_index": 195, - "block_time": 1730146457 + "block_time": 1730147466 } ], "next_cursor": 157, @@ -10626,11 +10642,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "status": "open", - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "tx_index": 74, - "block_time": 1730146529, + "block_time": 1730147530, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10654,9 +10670,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_time": 1730146529 + "block_time": 1730147530 } ], "next_cursor": 529, @@ -10674,20 +10690,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", + "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", "tx0_index": 51, - "tx1_address": "bcrt1q83dnyjadpdwjpu8n7fpksv22wufwxdj4d4x6xx", + "tx1_address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "tx1_index": 54, - "block_time": 1730146412, + "block_time": 1730147430, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10706,9 +10722,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1b9895b2c2256dd12f20f615e98aa066157e59f2bdfda289f79e04893e8a1e13", + "tx_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", "block_index": 188, - "block_time": 1730146412 + "block_time": 1730147430 } ], "next_cursor": 475, @@ -10721,11 +10737,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be" + "tx_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2" }, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_time": 1730146529 + "block_time": 1730147530 } ], "next_cursor": 521, @@ -10738,11 +10754,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4" + "tx_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f" }, - "tx_hash": "85727579c983fd177497804c779ca6842a233390f9e5ffda0e8b8c4b7e31c78e", + "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", "block_index": 187, - "block_time": 1730146408 + "block_time": 1730147427 } ], "next_cursor": null, @@ -10754,13 +10770,13 @@ "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", - "order_match_id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", + "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", "status": "completed" }, - "tx_hash": "85727579c983fd177497804c779ca6842a233390f9e5ffda0e8b8c4b7e31c78e", + "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", "block_index": 187, - "block_time": 1730146408 + "block_time": 1730147427 } ], "next_cursor": 454, @@ -10774,18 +10790,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "order_match_id": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be_3a2e20dc2e9af771dd6b234c825b694427400820b8e229a5c3fd82ab0b0799e4", - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "status": "valid", - "tx_hash": "85727579c983fd177497804c779ca6842a233390f9e5ffda0e8b8c4b7e31c78e", + "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", "tx_index": 53, - "block_time": 1730146408, + "block_time": 1730147427, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "85727579c983fd177497804c779ca6842a233390f9e5ffda0e8b8c4b7e31c78e", + "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", "block_index": 187, - "block_time": 1730146408 + "block_time": 1730147427 } ], "next_cursor": null, @@ -10798,16 +10814,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "44cd686fa15d9508241d20e5c7c2c60e8907dd3a651f43acf2b465f65fe3a0b0", - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "offer_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "status": "valid", - "tx_hash": "94cbba7505e891b909a9ad4681d0652ed8677e2f6c6176d66189f53a154d0875", + "tx_hash": "62c09c5f1959d825532f5594282ad39694424a743802d560f520b42aab6c4ee3", "tx_index": 58, - "block_time": 1730146437 + "block_time": 1730147455 }, - "tx_hash": "94cbba7505e891b909a9ad4681d0652ed8677e2f6c6176d66189f53a154d0875", + "tx_hash": "62c09c5f1959d825532f5594282ad39694424a743802d560f520b42aab6c4ee3", "block_index": 192, - "block_time": 1730146437 + "block_time": 1730147455 } ], "next_cursor": null, @@ -10820,13 +10836,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 207, - "order_hash": "d0cccc4757d640e6063d9d5442c47dfc77bc26019fe7571cd10a3daa707b16be", - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "block_time": 1730146529 + "order_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_time": 1730147530 }, - "tx_hash": "1adf25a39beabf6aee1e778bce4da5c0c24fe683be03abeb3d1e1a68e2bfb159", + "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", "block_index": 207, - "block_time": 1730146529 + "block_time": 1730147530 } ], "next_cursor": 462, @@ -10839,14 +10855,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "3342c909cdc8d7a4f48516492882fc04fd5507dab444774812bd1d2c518e4b72_f00583215a74977d825af48a15ba3115eafcd73029016d7fb72e2b677f982665", - "tx0_address": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "tx1_address": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", - "block_time": 1730146339 + "order_match_id": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962_9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", + "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "block_time": 1730147353 }, "tx_hash": null, "block_index": 184, - "block_time": 1730146339 + "block_time": 1730147353 } ], "next_cursor": null, @@ -10865,17 +10881,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "satoshirate": 1, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "status": 0, - "tx_hash": "a84431367d549b443ffdb3837c6f52a401a4649d9bc4c46b51f336351e712cf3", + "tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", "tx_index": 62, - "block_time": 1730146461, + "block_time": 1730147470, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -10884,9 +10900,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "a84431367d549b443ffdb3837c6f52a401a4649d9bc4c46b51f336351e712cf3", + "tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", "block_index": 196, - "block_time": 1730146461 + "block_time": 1730147470 } ], "next_cursor": 272, @@ -10901,9 +10917,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "status": 0, - "tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", + "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", "asset_info": { "divisible": true, "asset_longname": null, @@ -10913,9 +10929,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 560, @@ -10929,13 +10945,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "n3NcfeHqrFcRKSpTX8sSuQd1ukhJSvpgq9", + "destination": "mg2iDq9hHHgarJckVLMgpwt5YE7WjvUVPs", "dispense_quantity": 10, - "dispenser_tx_hash": "b445952967bcc37d4b9c9af9daf910e389b7ba4d19496d3a5ec371392331620b", - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", - "tx_hash": "8d3d28442c33aa567bb7c60471bedf0f0d7340469170fa9e9ccf6da549fdd04c", + "dispenser_tx_hash": "aa2eb896e9aab9ff1080957160ee3e8e9ccdfe2e0d1487c2aea504a2fbd46ff9", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx_hash": "50b70420fcd4c675beb859a7e474226f70f8b78df85e5fb5b74d596b4d4947d2", "tx_index": 31, - "block_time": 1730146241, + "block_time": 1730147261, "asset_info": { "divisible": true, "asset_longname": null, @@ -10945,9 +10961,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "8d3d28442c33aa567bb7c60471bedf0f0d7340469170fa9e9ccf6da549fdd04c", + "tx_hash": "50b70420fcd4c675beb859a7e474226f70f8b78df85e5fb5b74d596b4d4947d2", "block_index": 144, - "block_time": 1730146241 + "block_time": 1730147261 } ], "next_cursor": null, @@ -10962,14 +10978,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qy47ad2ks7tckqk8t5vnwyhy6gkh4lrejgphga9", + "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "7f02f6a7ed6da065bbd466ff6632829be935f3f563e1779afd96cca5dca937fb", - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -10980,9 +10996,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 561, @@ -10997,19 +11013,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qegaefgz7c8wqn46p34v3hmzp3cajas624ts989", + "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "d93f2f554dff8c8f834a6f3edfcd5675bfd43cadf382fdc3ec07953a491925cf", + "tx_hash": "524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e", "tx_index": 25, "value": 66600.0, - "block_time": 1730146217, + "block_time": 1730147237, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "d93f2f554dff8c8f834a6f3edfcd5675bfd43cadf382fdc3ec07953a491925cf", + "tx_hash": "524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e", "block_index": 138, - "block_time": 1730146217 + "block_time": 1730147237 } ], "next_cursor": 213, @@ -11040,12 +11056,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "start_block": 0, "status": "open", - "tx_hash": "adf5bd6deaba6cfeb6ec892a6fd69ba021d135559674853ad7bde8145789e4f9", + "tx_hash": "0998f235a3feba0746e143f431c1f698ca50ae3f8745598a4671168e9c151cef", "tx_index": 42, - "block_time": 1730146283, + "block_time": 1730147313, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11053,9 +11069,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "adf5bd6deaba6cfeb6ec892a6fd69ba021d135559674853ad7bde8145789e4f9", + "tx_hash": "0998f235a3feba0746e143f431c1f698ca50ae3f8745598a4671168e9c151cef", "block_index": 155, - "block_time": 1730146283 + "block_time": 1730147313 } ], "next_cursor": 196, @@ -11068,11 +11084,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "813fabeb4671db0750f64a1def89364f381970217838a1cd7c35859ed53cecf0" + "tx_hash": "ef648a52d64c60ed013aa174ae6a48421d17f923b88d3aba2e05b58ef0c76886" }, "tx_hash": null, "block_index": 130, - "block_time": 1730146186 + "block_time": 1730147206 } ], "next_cursor": 110, @@ -11088,17 +11104,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "91ab2f030c6b3d93359b217216415696e99d5800a0423a27dd32b8dd72f6b7c1", + "fairminter_tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", "paid_quantity": 34, - "source": "bcrt1q6nrh6eh6plwcvy2f89fzlcn0ksq84g372dls4k", + "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", "status": "valid", - "tx_hash": "7e828b53dcd7e0b212fa0b15a0cf8a214c551ab1d1c67d4676345eda71be1d6e", + "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", "tx_index": 23, - "block_time": 1730146209, + "block_time": 1730147231, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, @@ -11106,9 +11122,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "7e828b53dcd7e0b212fa0b15a0cf8a214c551ab1d1c67d4676345eda71be1d6e", + "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", "block_index": 136, - "block_time": 1730146209 + "block_time": 1730147231 } ], "next_cursor": 190, @@ -11122,28 +11138,28 @@ "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "8bc3e63a71ec60fcf21ba09ddcca7c2b9242bec039d2c1bf0d6727228fc345c3:0", + "destination": "1950deb5128ae4637f94cfc62169527e92eed21f5d5327948f13c8199d4d8aeb:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t", + "source": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", "status": "valid", - "tx_hash": "8bc3e63a71ec60fcf21ba09ddcca7c2b9242bec039d2c1bf0d6727228fc345c3", + "tx_hash": "1950deb5128ae4637f94cfc62169527e92eed21f5d5327948f13c8199d4d8aeb", "tx_index": 65, - "block_time": 1730146472, + "block_time": 1730147482, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qklzhlskn0s2334xnf2yk79ppfy99h8avwhte7t", + "issuer": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "8bc3e63a71ec60fcf21ba09ddcca7c2b9242bec039d2c1bf0d6727228fc345c3", + "tx_hash": "1950deb5128ae4637f94cfc62169527e92eed21f5d5327948f13c8199d4d8aeb", "block_index": 199, - "block_time": 1730146472 + "block_time": 1730147482 } ], "next_cursor": 319, @@ -11157,28 +11173,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qcuwkj6w32f4llkdhcht2lhs8xtc3v5424em4lv", + "destination": "bcrt1qcz42hsauvvj7zvqys6awauwvtlxm66sq2gnk5v", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "ada2535c1fa5b9d7e5607c6cca03c5bd0d6d41b80278ddede04442c5a7a7cb8e:0", + "source": "0e342a2ee7897e26da5b3b27ef89ed24cb2f5db944eb6471b2b3b214318205e4:0", "status": "valid", - "tx_hash": "c52bf330fc776175ce2b85ba385389ba68a61372cb37473758c08f8722f42f9d", + "tx_hash": "b9aeb481d6d93a3eee3edaee0438c4e3a7efc7f5f40d59eaa8606c125a6b2d9f", "tx_index": 38, - "block_time": 1730146268, + "block_time": 1730147299, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q097kastakpmptutqn8xchf3ltk80r83xn8jrr0", + "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "c52bf330fc776175ce2b85ba385389ba68a61372cb37473758c08f8722f42f9d", + "tx_hash": "b9aeb481d6d93a3eee3edaee0438c4e3a7efc7f5f40d59eaa8606c125a6b2d9f", "block_index": 151, - "block_time": 1730146268 + "block_time": 1730147299 } ], "next_cursor": null, @@ -11192,14 +11208,14 @@ "params": { "asset": "XCP", "block_index": 208, - "destination": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d:0", + "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", "msg_index": 1, "quantity": 1500000000, - "source": "87efc18ffbe1bba4b3775231d3534f2a34adf07a8f241bff956f032e2d77282e:1", + "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", "status": "valid", - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "tx_index": 75, - "block_time": 1730146542, + "block_time": 1730147539, "asset_info": { "divisible": true, "asset_longname": null, @@ -11209,9 +11225,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "69a8f11e6e3e1573b77e1ef7144a09164ce8478e329d0ff533c24367936fe05d", + "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", "block_index": 208, - "block_time": 1730146542 + "block_time": 1730147539 } ], "next_cursor": 667, @@ -11226,17 +11242,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qzyczyf4semgualrm5vymhsyc3vte8uf9stcyug", + "source": "bcrt1qutqyvw6qfn824wrr8kc5u5lhtyml7s9fg92uds", "status": "valid", - "tx_hash": "67b310d4eebe9282c687e3867430c7203d82c1a32dcf143aa3154aed98394481", + "tx_hash": "9e48aa492c822fb8f10573455eaf92d7238d1c56139fd15c3731cd53d0c10e6e", "tx_index": 9, - "block_time": 1730146151, + "block_time": 1730147172, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "67b310d4eebe9282c687e3867430c7203d82c1a32dcf143aa3154aed98394481", + "tx_hash": "9e48aa492c822fb8f10573455eaf92d7238d1c56139fd15c3731cd53d0c10e6e", "block_index": 121, - "block_time": 1730146151 + "block_time": 1730147172 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_8_atomicswap.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_8_atomicswap.py index f9955b8133..d5e5115d6d 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_8_atomicswap.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_8_atomicswap.py @@ -134,6 +134,9 @@ }, }, }, + "set_variables": { + "ATOMICSWAP_2_TX_HASH": "$TX_HASH", + }, "controls": [ { "url": "blocks/$BLOCK_INDEX/events?event_name=UTXO_MOVE,DEBIT,CREDIT,ASSET_CREATION,ASSET_ISSUANCE", diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py index 9291d9a12f..ad7b7559aa 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py @@ -13,6 +13,19 @@ "fee_required": 0, }, }, + { + "title": "Dispense in mempool with UTXO with balances", + "transaction": "dispense", + "source": "$ADDRESS_9", + "no_confirmation": True, + "params": { + "dispenser": "$ADDRESS_6", + "quantity": 1000, + "unspents_set": "$ATOMICSWAP_2_TX_HASH:1", + "exact_fee": 1, + }, + "expected_error": "invalid UTXO: $ATOMICSWAP_2_TX_HASH:1", + }, { "title": "Dispense in mempool", "transaction": "dispense", @@ -21,6 +34,9 @@ "params": { "dispenser": "$ADDRESS_6", "quantity": 1000, + "unspents_set": "ATOMICSWAP_2_TX_HASH:1", + "use_utxo_with_balances": True, + "exact_fee": 1, }, "controls": [ { diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index c185c1b7ad..865a14bea4 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -222,7 +222,17 @@ def run_item(node, item, context): except ComposeError as e: if "expected_error" in item: try: - assert (str(item["expected_error"]),) == e.args + if isinstance(item["expected_error"], list): + assert (str(item["expected_error"]),) == e.args + else: + expected_result = item["expected_error"] + print("Context:", context) + for name, value in context.items(): + if name.endswith("_INDEX"): + expected_result = expected_result.replace(f'"${name}"', value) + else: + expected_result = expected_result.replace(f"${name}", value) + assert expected_result == e.args print(f"{item['title']}: " + colored("Success", "green")) except AssertionError: print(colored(f"Failed: {item['title']}", "red")) diff --git a/release-notes/release-notes-v10.6.1.md b/release-notes/release-notes-v10.6.1.md index 89b1e9f971..16b57e47a4 100644 --- a/release-notes/release-notes-v10.6.1.md +++ b/release-notes/release-notes-v10.6.1.md @@ -22,6 +22,8 @@ - Added `memos` and `memos_are_hex` parameters to the MPMA compose API. When using MPMA sends, one memo must be provided for each destination if these parameters are used. - Add `/v2/utxos//balances` route +- By default, exclude UTXOs containing balances when composing transactions +- Add `use_utxo_with_balances` and `exclude_utxo_with_balances` parameter to the compose API ## CLI From 2678b8c66d11967afeb13b71d3e22e7b9243ba3b Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 28 Oct 2024 21:17:52 +0000 Subject: [PATCH 18/23] fix regtest; tweaks --- apiary.apib | 3949 ++++++++--------- .../counterpartycore/lib/api/compose.py | 4 +- .../counterpartycore/lib/transaction.py | 8 +- .../transaction_helper/transaction_inputs.py | 16 +- .../test/fixtures/api_v2_fixtures.json | 162 +- .../test/regtest/apidoc/apicache.json | 3501 +++++++-------- .../test/regtest/genapidoc.py | 3 + .../scenarios/scenario_last_mempool.py | 2 +- .../test/regtest/testscenarios.py | 8 +- dredd.yml | 1 - release-notes/release-notes-v10.6.1.md | 4 +- 11 files changed, 3834 insertions(+), 3824 deletions(-) diff --git a/apiary.apib b/apiary.apib index 5080aef6f2..3d896bd12c 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-28 20:32:34.773096. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-28 21:16:33.336971. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 662, "event": "NEW_BLOCK", "params": { - "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", + "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", "block_index": 208, - "block_time": 1730147539, + "block_time": 1730150176, "difficulty": 545259519, - "previous_block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086" + "previous_block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a" }, "tx_hash": null, "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 653, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 663, "event": "NEW_TRANSACTION", "params": { - "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", + "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", "block_index": 208, - "block_time": 1730147539, + "block_time": 1730150176, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "fee": 0, - "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 654, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "out_index": 0, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "block_time": 1730147539, + "block_time": 1730150176, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 558, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", - "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", + "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", + "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", "transaction_count": 1, - "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", - "block_time": 1730147539 + "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", + "block_time": 1730150176 }, "tx_hash": null, "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 661, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75 }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 660, @@ -328,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 208, - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 1500000000, "tx_index": 75, - "utxo": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "utxo_address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", - "block_time": 1730147539, + "utxo": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "utxo_address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -343,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 665, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 669, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "memo": null, "quantity": 1000, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "status": "valid", - "tx_hash": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f", + "tx_hash": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c", "tx_index": 69, - "block_time": 1730147498, + "block_time": 1730150144, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f", + "tx_hash": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c", "block_index": 202, - "block_time": 1730147498 + "block_time": 1730150144 } ], "next_cursor": 498, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 206, - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "status": "valid", - "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "tx_index": 73, - "block_time": 1730147525, + "block_time": 1730150158, "asset_info": { "divisible": true, "asset_longname": null, @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "block_index": 206, - "block_time": 1730147525 + "block_time": 1730150158 } ], "next_cursor": 649, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "status": "valid", - "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", + "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", "tx_index": 60, - "block_time": 1730147463, + "block_time": 1730150109, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", + "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", "block_index": 194, - "block_time": 1730147463 + "block_time": 1730150109 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "status": "valid", - "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", + "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", "tx_index": 41, - "block_time": 1730147310, + "block_time": 1730149962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", + "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", "block_index": 154, - "block_time": 1730147310 + "block_time": 1730149962 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 201, - "block_time": 1730147494 + "block_time": 1730150139 }, - "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", + "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", "block_index": 201, - "block_time": 1730147494 + "block_time": 1730150139 } ], "next_cursor": 567, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "status": "valid", "transfer": false, - "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", + "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", "tx_index": 68, - "block_time": 1730147494, + "block_time": 1730150139, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", + "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", "block_index": 201, - "block_time": 1730147494 + "block_time": 1730150139 } ], "next_cursor": 568, @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "status": "valid", "tag": "64657374726f79", - "tx_hash": "5709751e42222eb3fe342e7c1bdb4cfc6f20f4a9eec48c8dd200a08f1b4838bb", + "tx_hash": "c00a1d1e74c94dc85120712a15a6b62760a12590f92814b3ab2725b9b992038c", "tx_index": 61, - "block_time": 1730147466, + "block_time": 1730150114, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "5709751e42222eb3fe342e7c1bdb4cfc6f20f4a9eec48c8dd200a08f1b4838bb", + "tx_hash": "c00a1d1e74c94dc85120712a15a6b62760a12590f92814b3ab2725b9b992038c", "block_index": 195, - "block_time": 1730147466 + "block_time": 1730150114 } ], "next_cursor": 157, @@ -706,11 +706,11 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "status": "open", - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "tx_index": 74, - "block_time": 1730147530, + "block_time": 1730150162, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -734,9 +734,9 @@ Here is a list of events classified by theme and for each an example response: "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_time": 1730147530 + "block_time": 1730150162 } ], "next_cursor": 529, @@ -759,20 +759,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", "tx0_index": 51, - "tx1_address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "tx1_address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "tx1_index": 54, - "block_time": 1730147430, + "block_time": 1730150087, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -791,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "tx_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "block_index": 188, - "block_time": 1730147430 + "block_time": 1730150087 } ], "next_cursor": 475, @@ -811,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2" + "tx_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e" }, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_time": 1730147530 + "block_time": 1730150162 } ], "next_cursor": 521, @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f" + "tx_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0" }, - "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", + "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", "block_index": 187, - "block_time": 1730147427 + "block_time": 1730150084 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", - "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", "status": "completed" }, - "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", + "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", "block_index": 187, - "block_time": 1730147427 + "block_time": 1730150084 } ], "next_cursor": 454, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "status": "valid", - "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", + "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", "tx_index": 53, - "block_time": 1730147427, + "block_time": 1730150084, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", + "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", "block_index": 187, - "block_time": 1730147427 + "block_time": 1730150084 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "offer_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "status": "valid", - "tx_hash": "62c09c5f1959d825532f5594282ad39694424a743802d560f520b42aab6c4ee3", + "tx_hash": "273b62eaf8de41c504f5b4619412ccadacc70cff6b889cb2396189018c05d81c", "tx_index": 58, - "block_time": 1730147455 + "block_time": 1730150102 }, - "tx_hash": "62c09c5f1959d825532f5594282ad39694424a743802d560f520b42aab6c4ee3", + "tx_hash": "273b62eaf8de41c504f5b4619412ccadacc70cff6b889cb2396189018c05d81c", "block_index": 192, - "block_time": 1730147455 + "block_time": 1730150102 } ], "next_cursor": null, @@ -935,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 207, - "order_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "block_time": 1730147530 + "order_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_time": 1730150162 }, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_time": 1730147530 + "block_time": 1730150162 } ], "next_cursor": 462, @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962_9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "block_time": 1730147353 + "order_match_id": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97_caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "block_time": 1730150014 }, "tx_hash": null, "block_index": 184, - "block_time": 1730147353 + "block_time": 1730150014 } ], "next_cursor": null, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "satoshirate": 1, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "status": 0, - "tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", + "tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", "tx_index": 62, - "block_time": 1730147470, + "block_time": 1730150117, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -1011,9 +1011,9 @@ Here is a list of events classified by theme and for each an example response: "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", + "tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", "block_index": 196, - "block_time": 1730147470 + "block_time": 1730150117 } ], "next_cursor": 272, @@ -1033,9 +1033,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "status": 0, - "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 560, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mg2iDq9hHHgarJckVLMgpwt5YE7WjvUVPs", + "destination": "mxVik5RWM3aheqn4VPBhE4NkDjFECW4vt5", "dispense_quantity": 10, - "dispenser_tx_hash": "aa2eb896e9aab9ff1080957160ee3e8e9ccdfe2e0d1487c2aea504a2fbd46ff9", - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "tx_hash": "50b70420fcd4c675beb859a7e474226f70f8b78df85e5fb5b74d596b4d4947d2", + "dispenser_tx_hash": "3075db3fd894fb4982759d08c57ccf5915c726f7f2c2de2eb1cb9b695ac565b3", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx_hash": "656b01275a930a61d0c415f3f560f4dbfb0448295939aea387a818440b8467d5", "tx_index": 31, - "block_time": 1730147261, + "block_time": 1730149925, "asset_info": { "divisible": true, "asset_longname": null, @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "50b70420fcd4c675beb859a7e474226f70f8b78df85e5fb5b74d596b4d4947d2", + "tx_hash": "656b01275a930a61d0c415f3f560f4dbfb0448295939aea387a818440b8467d5", "block_index": 144, - "block_time": 1730147261 + "block_time": 1730149925 } ], "next_cursor": null, @@ -1104,14 +1104,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 561, @@ -1146,19 +1146,19 @@ Here is a list of events classified by theme and for each an example response: "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e", + "tx_hash": "e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc", "tx_index": 25, "value": 66600.0, - "block_time": 1730147237, + "block_time": 1730149891, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e", + "tx_hash": "e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc", "block_index": 138, - "block_time": 1730147237 + "block_time": 1730149891 } ], "next_cursor": 213, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "start_block": 0, "status": "open", - "tx_hash": "0998f235a3feba0746e143f431c1f698ca50ae3f8745598a4671168e9c151cef", + "tx_hash": "93dee74a73fd75a2b609a0b4cd62839d0d254025bf44bcb5513cad7d35bfa6f3", "tx_index": 42, - "block_time": 1730147313, + "block_time": 1730149965, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "0998f235a3feba0746e143f431c1f698ca50ae3f8745598a4671168e9c151cef", + "tx_hash": "93dee74a73fd75a2b609a0b4cd62839d0d254025bf44bcb5513cad7d35bfa6f3", "block_index": 155, - "block_time": 1730147313 + "block_time": 1730149965 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "ef648a52d64c60ed013aa174ae6a48421d17f923b88d3aba2e05b58ef0c76886" + "tx_hash": "0e2c46ac44f390ff6b06d99469bca85858fa064feb09b8c2ef799039d36dfa3f" }, "tx_hash": null, "block_index": 130, - "block_time": 1730147206 + "block_time": 1730149860 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", + "fairminter_tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", "paid_quantity": 34, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "status": "valid", - "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", + "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", "tx_index": 23, - "block_time": 1730147231, + "block_time": 1730149883, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", + "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", "block_index": 136, - "block_time": 1730147231 + "block_time": 1730149883 } ], "next_cursor": 190, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "1950deb5128ae4637f94cfc62169527e92eed21f5d5327948f13c8199d4d8aeb:0", + "destination": "7ca7c8421c7f6b4f2a716ce81cec47f1f83d35e354651030b94b06e3bbec4711:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", + "source": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", "status": "valid", - "tx_hash": "1950deb5128ae4637f94cfc62169527e92eed21f5d5327948f13c8199d4d8aeb", + "tx_hash": "7ca7c8421c7f6b4f2a716ce81cec47f1f83d35e354651030b94b06e3bbec4711", "tx_index": 65, - "block_time": 1730147482, + "block_time": 1730150128, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", + "issuer": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1950deb5128ae4637f94cfc62169527e92eed21f5d5327948f13c8199d4d8aeb", + "tx_hash": "7ca7c8421c7f6b4f2a716ce81cec47f1f83d35e354651030b94b06e3bbec4711", "block_index": 199, - "block_time": 1730147482 + "block_time": 1730150128 } ], "next_cursor": 319, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qcz42hsauvvj7zvqys6awauwvtlxm66sq2gnk5v", + "destination": "bcrt1qg89hz5l72ck62vsg34dpc2fvtfgmuhna0e0t4c", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "0e342a2ee7897e26da5b3b27ef89ed24cb2f5db944eb6471b2b3b214318205e4:0", + "source": "d94e197f2a619d264cc847eb0c6d0cc74b543b39ee3e674e770d01b6491332f0:0", "status": "valid", - "tx_hash": "b9aeb481d6d93a3eee3edaee0438c4e3a7efc7f5f40d59eaa8606c125a6b2d9f", + "tx_hash": "1f020eae3e44998e380ea6141659b829120b8ba595664630b4ae8d51e6eb3ff2", "tx_index": 38, - "block_time": 1730147299, + "block_time": 1730149952, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "b9aeb481d6d93a3eee3edaee0438c4e3a7efc7f5f40d59eaa8606c125a6b2d9f", + "tx_hash": "1f020eae3e44998e380ea6141659b829120b8ba595664630b4ae8d51e6eb3ff2", "block_index": 151, - "block_time": 1730147299 + "block_time": 1730149952 } ], "next_cursor": null, @@ -1375,14 +1375,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 208, - "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "msg_index": 1, "quantity": 1500000000, - "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", "status": "valid", - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -1392,9 +1392,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 667, @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qutqyvw6qfn824wrr8kc5u5lhtyml7s9fg92uds", + "source": "bcrt1qvpsk2579x0my98dh6s9fxhlmk9u454p63anff9", "status": "valid", - "tx_hash": "9e48aa492c822fb8f10573455eaf92d7238d1c56139fd15c3731cd53d0c10e6e", + "tx_hash": "1d67669f030d7a8d4afa14aaefef4fe7d507c15946907c1ec3b5688d4f587ce5", "tx_index": 9, - "block_time": 1730147172, + "block_time": 1730149826, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "9e48aa492c822fb8f10573455eaf92d7238d1c56139fd15c3731cd53d0c10e6e", + "tx_hash": "1d67669f030d7a8d4afa14aaefef4fe7d507c15946907c1ec3b5688d4f587ce5", "block_index": 121, - "block_time": 1730147172 + "block_time": 1730149826 } ], "next_cursor": 65, @@ -1483,61 +1483,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 208, - "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", - "block_time": 1730147539, - "previous_block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", + "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", + "block_time": 1730150176, + "previous_block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", "difficulty": 545259519, - "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", - "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", - "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", + "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", + "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", + "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", - "block_time": 1730147530, - "previous_block_hash": "01846b45f3471c31292a5664be521ee633e3113f741f72dafb1bf6543e16d259", + "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", + "block_time": 1730150162, + "previous_block_hash": "24fcd9eac7b7cd3657adfe8bc22e3952cde382c08c9782ffc7e354dfaf750fcf", "difficulty": 545259519, - "ledger_hash": "ac0e12a27a7095f9b6950e51b5c19d8bb6e9f5f645489c0d4898a3d6afae586a", - "txlist_hash": "6478f1ea88d777dd859ecc2d26434b2b10bd8b347825cca5122f9ac6fac07ec5", - "messages_hash": "0c2fd82e70a9920a39eb3bb2efadb7c20f3f790a86774945f11c49b35278c16b", + "ledger_hash": "e32feb5e459aef10ade923772074376074ed225d60b46c6980af3924f5acd3ef", + "txlist_hash": "07761e73b55838e899f773a3d385248e67c8639db8646ea97db76fb277ab2930", + "messages_hash": "9c239fb45f7eadba952f1e433220d5d025f3ed4a96536c564f49f4b05ff2ad4f", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "01846b45f3471c31292a5664be521ee633e3113f741f72dafb1bf6543e16d259", - "block_time": 1730147525, - "previous_block_hash": "3873d38f2cf1b4e0638c2afeefa858f06618aa1b2fbcaa8fa43d7beadd77ea33", + "block_hash": "24fcd9eac7b7cd3657adfe8bc22e3952cde382c08c9782ffc7e354dfaf750fcf", + "block_time": 1730150158, + "previous_block_hash": "290c68bb409d42e9ed62dc8223e72f61f221b4e03db77c76fe49931edea5538a", "difficulty": 545259519, - "ledger_hash": "7e8b6e3d55a0309fc8f54172602464cfcd4395a6a424927c0056173dfa15467a", - "txlist_hash": "ae305e97a3ca2fee8f6a95d548949e897c1b227625bd653d810b3f769c7d65f9", - "messages_hash": "8aee0249f0e25b26ae34201e5f3afa848a977216ac464bd377708dcffbee612f", + "ledger_hash": "cdce55ebc4b38e82b4cd4095b9153f4a29fc07ff2b8bcfb6b6f6cd13277ccc42", + "txlist_hash": "00e4944db20400bcd459987846344303b626e6a91a9767f1474eb9111787e71e", + "messages_hash": "fb41f289331b1456895f7d5b051b5a17741fc1bb9308036094d6e752a1edd358", "transaction_count": 1, "confirmed": true }, { "block_index": 205, - "block_hash": "3873d38f2cf1b4e0638c2afeefa858f06618aa1b2fbcaa8fa43d7beadd77ea33", - "block_time": 1730147521, - "previous_block_hash": "5d35bb0804bc053ef7d59c9d0c4a9f4bcd4bc52272146001da9b7757c898d039", + "block_hash": "290c68bb409d42e9ed62dc8223e72f61f221b4e03db77c76fe49931edea5538a", + "block_time": 1730150154, + "previous_block_hash": "3906807db0d56b9fec78f5982ba29d4512f200a4769bb4153d83c94df666c0a4", "difficulty": 545259519, - "ledger_hash": "e9ce7f40c431517eb719f00dbd6aec19395a35fdf1e169c6577059af09378484", - "txlist_hash": "afe39379f1e509b56e07873f33b98342581f9aaf90e155e2ed9165d469f622d3", - "messages_hash": "72a9b1cd32541e7f93a8eff9b694d19291e09fd9863364ce0ccc6240dac5d3dd", + "ledger_hash": "fb6fa100bcf1dab2deace12dd3f350e79c2f5d805a7608209d29d7308ff65edc", + "txlist_hash": "475920684f1ab856770d9d807d17ef1b1e547555e7787b0e8a6f112fae00c432", + "messages_hash": "80907e25a0ead5ab76e1b793b9a17683be58f0da5739d6b553205fb8f915fc42", "transaction_count": 1, "confirmed": true }, { "block_index": 204, - "block_hash": "5d35bb0804bc053ef7d59c9d0c4a9f4bcd4bc52272146001da9b7757c898d039", - "block_time": 1730147517, - "previous_block_hash": "0770bd3567046a0c047163accfc399966280bdbd87644d765df50a5819c333f3", + "block_hash": "3906807db0d56b9fec78f5982ba29d4512f200a4769bb4153d83c94df666c0a4", + "block_time": 1730150151, + "previous_block_hash": "5b2cb939f6b6a782be5829b4a32d310f3e8b11c136ebed663d064b28e5700f62", "difficulty": 545259519, - "ledger_hash": "1a0c19c4bd1e6608e2e33b517d6fb5ac32212fad8471f74cb0e1e6c5438a15f4", - "txlist_hash": "e66c89aefbfe780c7f0f18a77bf0823ba616f804e47aab1beabca6a84813f602", - "messages_hash": "ea18e0508f4e556ffde5975a7754fc7271808f9f7dbb042adf736443ecdfb7d6", + "ledger_hash": "b173405fba1bf44bf2a8c11c6b526256ea13b3750afce6a0d8b4b7369b3ac2ed", + "txlist_hash": "0286081e03a112d9e0153e5fe9d8043526f209fef2239e647a256edf72c72157", + "messages_hash": "51ad30cb166cc647352835bd87f313ecb0c1f4d9058ab7740ea45a60dd26ceb2", "transaction_count": 1, "confirmed": true } @@ -1574,13 +1574,13 @@ Return the information of a block { "result": { "block_index": 208, - "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", - "block_time": 1730147539, - "previous_block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", + "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", + "block_time": 1730150176, + "previous_block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", "difficulty": 545259519, - "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", - "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", - "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", + "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", + "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", + "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263` (str, required) - The index of the block to return + + block_hash: `5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be` (str, required) - The index of the block to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -1604,13 +1604,13 @@ Return the information of a block { "result": { "block_index": 208, - "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", - "block_time": 1730147539, - "previous_block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", + "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", + "block_time": 1730150176, + "previous_block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", "difficulty": 545259519, - "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", - "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", - "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", + "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", + "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", + "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", "transaction_count": 1, "confirmed": true } @@ -1641,17 +1641,17 @@ Returns the transactions of a block "result": [ { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", - "block_time": 1730147539, - "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", - "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", + "block_time": 1730150176, + "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1697,11 +1697,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", - "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", + "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", + "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", "transaction_count": 1, - "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", - "block_time": 1730147539 + "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", + "block_time": 1730150176 }, "tx_hash": null }, @@ -1710,10 +1710,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75 }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" }, { "event_index": 673, @@ -1722,14 +1722,14 @@ Returns the events of a block "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -1740,7 +1740,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" }, { "event_index": 672, @@ -1749,9 +1749,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "status": 0, - "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "asset_info": { "divisible": true, "asset_longname": null, @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -1786,7 +1786,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" } ], "next_cursor": 670, @@ -1869,16 +1869,16 @@ Returns the events of a block filtered by event "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,7 +1888,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" }, { "event_index": 669, @@ -1898,12 +1898,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 1500000000, "tx_index": 75, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "block_time": 1730147539, + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -1913,7 +1913,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" }, { "event_index": 666, @@ -1923,22 +1923,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 1500000000, "tx_index": 75, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "block_time": 1730147539, + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_time": 1730150176, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" } ], "next_cursor": null, @@ -2001,16 +2001,16 @@ Returns the credits of a block "result": [ { "block_index": 208, - "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,12 +2026,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -2047,16 +2047,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -2116,12 +2116,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "utxo": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "utxo_address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "utxo": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "utxo_address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -2137,16 +2137,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "utxo": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "utxo_address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "utxo": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "utxo_address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "object_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", "block_index": 207, "confirmed": true, - "block_time": 1730147530 + "block_time": 1730150162 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 58, - "tx_hash": "62c09c5f1959d825532f5594282ad39694424a743802d560f520b42aab6c4ee3", + "tx_hash": "273b62eaf8de41c504f5b4619412ccadacc70cff6b889cb2396189018c05d81c", "block_index": 192, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "offer_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "offer_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", "status": "valid", "confirmed": true, - "block_time": 1730147455 + "block_time": 1730150102 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 61, - "tx_hash": "5709751e42222eb3fe342e7c1bdb4cfc6f20f4a9eec48c8dd200a08f1b4838bb", + "tx_hash": "c00a1d1e74c94dc85120712a15a6b62760a12590f92814b3ab2725b9b992038c", "block_index": 195, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730147466, + "block_time": 1730150114, "asset_info": { "divisible": true, "asset_longname": null, @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 68, - "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", + "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730147494, + "block_time": 1730150139, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 75, "dispense_index": 0, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "last_status_tx_hash": null, - "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 60, - "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", + "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", "block_index": 194, - "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730147463, + "block_time": 1730150109, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "0998f235a3feba0746e143f431c1f698ca50ae3f8745598a4671168e9c151cef", + "tx_hash": "93dee74a73fd75a2b609a0b4cd62839d0d254025bf44bcb5513cad7d35bfa6f3", "tx_index": 42, "block_index": 155, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730147313, + "block_time": 1730149965, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", + "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147231, + "block_time": 1730149883, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -2692,17 +2692,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e", + "tx_hash": "e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc", "block_index": 138, - "block_hash": "2fcbf18cc3dfb9a5825aae833f64a2024408a3814194e101ae2bb408df9068b3", - "block_time": 1730147237, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_hash": "249ff5e72fd3ae655fcc4b831cc6c022daa07ef5bfe3d55eb5e6e2bb8dd29900", + "block_time": 1730149891, + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e:1", + "utxos_info": "e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2727,25 +2727,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", + "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", "block_index": 187, - "block_hash": "23585706865636328db1867229f8ab3fce048f7e7cc6f7bd4f806a1bc4836686", - "block_time": 1730147427, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "632ab7977d856811c10db988ab168fff051d66e29ac6b0b2ab8084e8cf11ab9a", + "block_time": 1730150084, + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "btc_amount": 2000, "fee": 10000, - "data": "0b99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da248c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "data": "0bbee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", "supported": true, - "utxos_info": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e:0", + "utxos_info": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "tx1_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", - "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx1_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", "status": "valid" } }, @@ -2760,23 +2760,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "62c09c5f1959d825532f5594282ad39694424a743802d560f520b42aab6c4ee3", + "tx_hash": "273b62eaf8de41c504f5b4619412ccadacc70cff6b889cb2396189018c05d81c", "block_index": 192, - "block_hash": "45223d15b17b80bb872fad71cae6d8df005a80474e6de4960ee4761dca87edd8", - "block_time": 1730147455, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "35224ea196fd61790c7843c3da614571b729bb5080a7773d7d845a26019fd3c0", + "block_time": 1730150102, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", + "data": "460674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", "supported": true, - "utxos_info": "62c09c5f1959d825532f5594282ad39694424a743802d560f520b42aab6c4ee3:1", + "utxos_info": "273b62eaf8de41c504f5b4619412ccadacc70cff6b889cb2396189018c05d81c:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", + "offer_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", "status": "valid" } }, @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "5709751e42222eb3fe342e7c1bdb4cfc6f20f4a9eec48c8dd200a08f1b4838bb", + "tx_hash": "c00a1d1e74c94dc85120712a15a6b62760a12590f92814b3ab2725b9b992038c", "block_index": 195, - "block_hash": "149a5a5c81d63887c370638f94421cf6b9971b309477a96e64bc2a7dd993e523", - "block_time": 1730147466, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "block_hash": "726d6ec3139d5517fa4118fe593e9ffdd12823f7deeb7867e22f4fb4bf08565c", + "block_time": 1730150114, + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "5709751e42222eb3fe342e7c1bdb4cfc6f20f4a9eec48c8dd200a08f1b4838bb:1", + "utxos_info": "c00a1d1e74c94dc85120712a15a6b62760a12590f92814b3ab2725b9b992038c:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2831,17 +2831,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", + "tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", "block_index": 196, - "block_hash": "6e3f5a8eed6443bc7d99d746c295abf249770c8fbdd357caa7d9ebccce09ac62", - "block_time": 1730147470, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "49109ffa9d0512d963711a675911d34adbede2be33e8e0514c627f05283c7a68", + "block_time": 1730150117, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1:1", + "utxos_info": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2858,7 +2858,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -2877,17 +2877,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", - "block_time": 1730147539, - "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", - "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", + "block_time": 1730150176, + "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2907,17 +2907,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", + "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", "block_index": 154, - "block_hash": "3f4f9e8300085157088d9a038ad9b190f095d7e07a51838e883f106cc5392f3c", - "block_time": 1730147310, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "01df8fa5f08231e8d8c6e95051e60df9e91a57e2b35ca9d8d55d5945dd9b2c8d", + "block_time": 1730149962, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895:1", + "utxos_info": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2930,7 +2930,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -2955,17 +2955,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 68, - "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", + "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", "block_index": 201, - "block_hash": "7156384707e1643c99729bcff455e508cc134e75ff200fe29f1138d04e3ffe6b", - "block_time": 1730147494, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "283a8824308fb868afc9759ec62e9714ff889dbf79c0e6a5b9aa0d6f7d4b906a", + "block_time": 1730150139, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e:1", + "utxos_info": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2997,17 +2997,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 74, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", - "block_time": 1730147530, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", + "block_time": 1730150162, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f:1", + "utxos_info": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3050,17 +3050,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 69, - "tx_hash": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f", + "tx_hash": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c", "block_index": 202, - "block_hash": "5b62183f865f9122b0b1823726656c462dab8e5c45823a9c43b72ce9ce1bdbde", - "block_time": 1730147498, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "4def8f3f53efebbf9574a397c76511feff3e10ee36a643847e7619aa265947fa", + "block_time": 1730150144, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d2621d21756eb8ebb22ce432b26450ae670d208f", + "data": "02000000178d82231300000000000003e880d630d477df0f6e07f91e8949433310400b60dd35", "supported": true, - "utxos_info": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f:1", + "utxos_info": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3068,12 +3068,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -3091,17 +3091,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 73, - "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "block_index": 206, - "block_hash": "01846b45f3471c31292a5664be521ee633e3113f741f72dafb1bf6543e16d259", - "block_time": 1730147525, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "block_hash": "24fcd9eac7b7cd3657adfe8bc22e3952cde382c08c9782ffc7e354dfaf750fcf", + "block_time": 1730150158, + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380527fc786dce354681ff9800bc9b06a2a44fd524e803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2088746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038053acd20b89492c54642d81b92cdc32862046ce71803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6:0", + "utxos_info": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3109,14 +3109,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -3124,7 +3124,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3150,23 +3150,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 60, - "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", + "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", "block_index": 194, - "block_hash": "1bf0c1bee7bbbd597e29e168bc4980a54e46c17cf49aaac2dc48ed76345357d7", - "block_time": 1730147463, - "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "block_hash": "41964b97ac2247a64d871b722409b1b1bd1a62c527bf2c85ebf0319ea1e957b7", + "block_time": 1730150109, + "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480e8357d02fbc701ab928c73d7d2cfcd62d7dd2c20017377656570206d7920617373657473", + "data": "04803c9e235caa5be4be07a3dfbf730d21c096c653e2017377656570206d7920617373657473", "supported": true, - "utxos_info": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68:1", + "utxos_info": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "flags": 1, "memo": "sweep my assets" } @@ -3199,17 +3199,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", - "block_time": 1730147539, - "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", - "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", + "block_time": 1730150176, + "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3222,17 +3222,17 @@ Returns the list of the last ten transactions }, { "tx_index": 74, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", - "block_time": 1730147530, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", + "block_time": 1730150162, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f:1", + "utxos_info": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3277,7 +3277,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `0200000000010603eb7b2120bd3de02c1ad129d11a48c9acb377c6b0bd799813367fdd1f7c81450000000000ffffffff529e0c801ebb4d5203b89593cfc4a5b0fd302cfdfa29d31283cd1a8ebd5b654b0000000000ffffffff716491af6c6b1530054e03b9887305dbb982136f0e42b61c148706e10e0845010000000000ffffffff181a23460a56059dffe405360c4c1d35cb503f5ff0452f951ae0ba63213ba7320000000000ffffffffc0a6cb160237308a59dacf6f68a88f6e33e6446b653dc48f2bb8b6b813ebc6dc0000000000ffffffffd7153b6c88b84e9727c746dde7931bd12b0aec2662aaa32f7bc4475ba0bf6f560000000000ffffffff04e80300000000000069512102a643a4ff08f7a6ce081b9dc80ce7fa92204726be3ebc2f811acf90796fec6f442102f1ca1cbe98a71273ada4d14ac84876c0836317d039e09f02327fe9039d5ccdf6210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53aee80300000000000069512103a643a4ff08f7a6ce08b30f47ffe24a40cc509fdbf92e436528781749494fb61b2102d1459c87e879e0276d54d9ee522df9c3ffa89834974657efbf27fb32e69bcc80210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53aee803000000000000695121028743a4ff08f7a6ce08189dcb8c35188f01324806d50e574e43569f50498b62902103d1459c87e879e00d78e14c5beee7f9c3ffa89834974cd282da4a9401669bcc52210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53ae387923fc06000000160014527fc786dce354681ff9800bc9b06a2a44fd524e0247304402205f607226f87467d9ec99d07b2f55dca3fffec5fc4d34c9f2ee59070647283ddf02206a84273f17748ce50a9f104d91930e73cd83019a7310686eb0574872c561849e01210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e024730440220609c34c72ed9688a6f65d72931ebe50a4d29109849b0fe9fbe5380d10e3ead8202202bf1098796b3f9f861c2cf1eb7324c1763cc389124c689c69b4bf94ae4b58b6f01210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e02473044022064bbc765ae9fe2d806b9262233fb449ea9cdc556c76949ce7f3d12ea56a3c81002204dfd87424d79f8a8e2c2d047a9cb23d691558f4421b6a1f5f09221299b8f08c301210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e0247304402205189c0231cd313bc7ec75614a27a36f6520bb3c742bbbf6a775cba4e7d58493a022054b4de7fa2f5d055ebb233f3cb97b8077d6dfbee126f4ed11c2192161d2ebb3b01210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e024730440220189421cb50e385ebbb4145f1a0009e2ed115d40c2dde5db9c7ac72bed9ca21ea02207d39b7fd0b1614cbfb4857609e9463fcd27979aefccc1047789c20dcf52063ef01210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e0247304402202d5d65b9c03c396247bea5a3e975d1c6cec94d7da3b6d950c4bf5607f60fb2e30220680f965ae329cbc74e57466d61af9af750b3be686f8c27a5ee9c1cbb30808d7c01210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e00000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000101cf949dffd0450d4a69dae4636f4c94c35011e7f9338efea635db0220d592bc1e0000000000ffffffff020000000000000000356a333e0104f9de1867866062b67557048fb8a623a572b848d6d77f4483e791b32ad96759cb346a9a9f40f4e3c413395fa062f31badf0ca052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102473044022018455d972c6b439a6641f0e5633be8f382872c4893416b692b38f8a5ea15461402206fc58766cb40cc9d552def555bfb27de92737607eb0814ff2a6f8e34094717e60121026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c00000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -3290,53 +3290,18 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d2621d21756eb8ebb22ce432b26450ae670d208f803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2040000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "03eb7b2120bd3de02c1ad129d11a48c9acb377c6b0bd799813367fdd1f7c8145", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "529e0c801ebb4d5203b89593cfc4a5b0fd302cfdfa29d31283cd1a8ebd5b654b", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "716491af6c6b1530054e03b9887305dbb982136f0e42b61c148706e10e084501", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "181a23460a56059dffe405360c4c1d35cb503f5ff0452f951ae0ba63213ba732", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "c0a6cb160237308a59dacf6f68a88f6e33e6446b653dc48f2bb8b6b813ebc6dc", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "d7153b6c88b84e9727c746dde7931bd12b0aec2662aaa32f7bc4475ba0bf6f56", + "hash": "cf949dffd0450d4a69dae4636f4c94c35011e7f9338efea635db0220d592bc1e", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3345,75 +3310,51 @@ Returns Counterparty information from a raw transaction in hex format. ], "vout": [ { - "value": 1000, - "script_pub_key": "512102a643a4ff08f7a6ce081b9dc80ce7fa92204726be3ebc2f811acf90796fec6f442102f1ca1cbe98a71273ada4d14ac84876c0836317d039e09f02327fe9039d5ccdf6210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53ae" - }, - { - "value": 1000, - "script_pub_key": "512103a643a4ff08f7a6ce08b30f47ffe24a40cc509fdbf92e436528781749494fb61b2102d1459c87e879e0276d54d9ee522df9c3ffa89834974657efbf27fb32e69bcc80210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53ae" - }, - { - "value": 1000, - "script_pub_key": "5121028743a4ff08f7a6ce08189dcb8c35188f01324806d50e574e43569f50498b62902103d1459c87e879e00d78e14c5beee7f9c3ffa89834974cd282da4a9401669bcc52210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53ae" + "value": 0, + "script_pub_key": "6a333e0104f9de1867866062b67557048fb8a623a572b848d6d77f4483e791b32ad96759cb346a9a9f40f4e3c413395fa062f31bad" }, { - "value": 29999987000, - "script_pub_key": "0014527fc786dce354681ff9800bc9b06a2a44fd524e" + "value": 4999990000, + "script_pub_key": "001453acd20b89492c54642d81b92cdc32862046ce71" } ], "vtxinwit": [ - "304402205f607226f87467d9ec99d07b2f55dca3fffec5fc4d34c9f2ee59070647283ddf02206a84273f17748ce50a9f104d91930e73cd83019a7310686eb0574872c561849e01", - "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e", - "30440220609c34c72ed9688a6f65d72931ebe50a4d29109849b0fe9fbe5380d10e3ead8202202bf1098796b3f9f861c2cf1eb7324c1763cc389124c689c69b4bf94ae4b58b6f01", - "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e", - "3044022064bbc765ae9fe2d806b9262233fb449ea9cdc556c76949ce7f3d12ea56a3c81002204dfd87424d79f8a8e2c2d047a9cb23d691558f4421b6a1f5f09221299b8f08c301", - "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e", - "304402205189c0231cd313bc7ec75614a27a36f6520bb3c742bbbf6a775cba4e7d58493a022054b4de7fa2f5d055ebb233f3cb97b8077d6dfbee126f4ed11c2192161d2ebb3b01", - "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e", - "30440220189421cb50e385ebbb4145f1a0009e2ed115d40c2dde5db9c7ac72bed9ca21ea02207d39b7fd0b1614cbfb4857609e9463fcd27979aefccc1047789c20dcf52063ef01", - "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e", - "304402202d5d65b9c03c396247bea5a3e975d1c6cec94d7da3b6d950c4bf5607f60fb2e30220680f965ae329cbc74e57466d61af9af750b3be686f8c27a5ee9c1cbb30808d7c01", - "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e" + "3044022018455d972c6b439a6641f0e5633be8f382872c4893416b692b38f8a5ea15461402206fc58766cb40cc9d552def555bfb27de92737607eb0814ff2a6f8e34094717e601", + "026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c" ], "lock_time": 0, - "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", - "tx_id": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767" + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_id": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830" }, "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", - "quantity": 10, - "memo": "memo2", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" + "message_type": "order", + "message_type_id": 10, + "message_data": { + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "expiration": 21, + "fee_required": 0, + "status": "open", + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null }, - { - "asset": "XCP", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "quantity": 10, - "memo": "memo1", - "memo_is_hex": false, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - } - ] + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000000" + } }, "btc_amount_normalized": "0.00000000" } @@ -3425,7 +3366,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4` (str, required) - Transaction hash + + tx_hash: `055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca` (str, required) - Transaction hash + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3436,18 +3377,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710803970def27ed5459d1126af8f037ccb8fe4aeac4d", + "data": "0200000000000000010000000000002710803eb72a4136323ae914b5e511d43a96fe66f85c55", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "8d4bef92b931a1c06d6bab5395537943d4218a8c17b832cf1f27c4b5d26ca3f1", + "hash": "046bd1758bd65556db2f872b9803788e82871cb891bca6a8671f1c2203d5eb2f", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3457,20 +3398,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2ecd2b19017aed9c5dec4f390093b39dd1f0ec75729a5e5c59cf26a61505a3042769517cf7e577fb7d37c37417c0e4" + "script_pub_key": "6a2e159b491df4e1cc63cbd344287282ce43eb42ae4cf95a12d94d973b973c3b5b18f479d9d00c735c4837d0af87be5b" }, { "value": 4999970000, - "script_pub_key": "0014e8357d02fbc701ab928c73d7d2cfcd62d7dd2c20" + "script_pub_key": "00143c9e235caa5be4be07a3dfbf730d21c096c653e2" } ], "vtxinwit": [ - "30440220692dde2e060e2cc05bae5e602158bf81c34d18f821fe613e16e0dbed4383928502206d827185874c9b7639ffc09756d99f2517e843c8769bf32d809dab219ee44bb301", - "03d019ffa6402ee701cc2792ac17105aa83f73c2941f477e20277c2d2132d0bb7a" + "3044022052ad54091732d8d818d82ec24649155fe2f4fdb6a6a7a2aded7fb7bea407e4b002202fa49a77a5158f5687a5a2600001f4fabf5303d46a9a0809dca4e2240f17862801", + "03c1a7c33ad91c7f9e3c3aec9546acbb11cc8e02feaff182e7e827840daa063254" ], "lock_time": 0, - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", - "tx_id": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4" + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_id": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3478,7 +3419,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "memo": null, "asset_info": { "divisible": true, @@ -3539,17 +3480,17 @@ Returns a transaction by its index. { "result": { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", - "block_time": 1730147539, - "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", - "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", + "block_time": 1730150176, + "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3568,7 +3509,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2` (str, required) - The hash of the transaction + + tx_hash: `ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b` (str, required) - The hash of the transaction + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3580,17 +3521,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", - "block_time": 1730147539, - "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", - "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", + "block_time": 1730150176, + "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3633,12 +3574,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75 }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 673, @@ -3647,14 +3588,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -3665,9 +3606,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 672, @@ -3676,9 +3617,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "status": 0, - "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "asset_info": { "divisible": true, "asset_longname": null, @@ -3688,24 +3629,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -3715,9 +3656,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 670, @@ -3725,14 +3666,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 208, - "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "msg_index": 1, "quantity": 1500000000, - "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", "status": "valid", - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -3742,9 +3683,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 669, @@ -3757,7 +3698,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2` (str, required) - The hash of the transaction to return + + tx_hash: `ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `675` (str, optional) - The last event index to return @@ -3781,12 +3722,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75 }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 673, @@ -3795,14 +3736,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -3813,9 +3754,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 672, @@ -3824,9 +3765,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "status": 0, - "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "asset_info": { "divisible": true, "asset_longname": null, @@ -3836,24 +3777,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -3863,9 +3804,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 670, @@ -3873,14 +3814,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 208, - "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "msg_index": 1, "quantity": 1500000000, - "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", "status": "valid", - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -3890,9 +3831,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 669, @@ -3905,7 +3846,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2` (str, required) - The hash of the transaction to return + + tx_hash: `ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b` (str, required) - The hash of the transaction to return + cursor (str, optional) - The last index of the debits to return + Default: `None` + limit: `5` (int, optional) - The maximum number of debits to return @@ -3924,10 +3865,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3935,7 +3876,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -3948,10 +3889,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3959,11 +3900,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -3981,7 +3922,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2` (str, required) - The hash of the transaction to return + + tx_hash: `ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b` (str, required) - The hash of the transaction to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -4001,27 +3942,27 @@ Returns the dispenses of a block { "tx_index": 75, "dispense_index": 0, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "last_status_tx_hash": null, - "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4036,7 +3977,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -4080,16 +4021,16 @@ Returns the events of a transaction "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -4099,9 +4040,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 669, @@ -4111,12 +4052,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 1500000000, "tx_index": 75, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "block_time": 1730147539, + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -4126,9 +4067,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 666, @@ -4138,24 +4079,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 1500000000, "tx_index": 75, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "block_time": 1730147539, + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_time": 1730150176, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": null, @@ -4168,7 +4109,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2` (str, required) - The hash of the transaction to return + + tx_hash: `ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `675` (str, optional) - The last event index to return + Default: `None` @@ -4190,16 +4131,16 @@ Returns the events of a transaction "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -4209,9 +4150,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 669, @@ -4221,12 +4162,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 1500000000, "tx_index": 75, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "block_time": 1730147539, + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -4236,9 +4177,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 666, @@ -4248,24 +4189,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 1500000000, "tx_index": 75, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "block_time": 1730147539, + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_time": 1730150176, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": null, @@ -4280,7 +4221,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m,bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70,bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - Comma separated list of addresses + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -4304,7 +4245,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4314,7 +4255,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4325,7 +4266,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4335,7 +4276,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4346,7 +4287,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4356,7 +4297,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4367,7 +4308,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4377,7 +4318,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4388,7 +4329,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4398,7 +4339,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4409,7 +4350,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4419,7 +4360,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4436,7 +4377,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m,bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70,bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - Comma separated list of addresses to return + cursor: `75` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4455,17 +4396,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 74, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", - "block_time": 1730147530, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", + "block_time": 1730150162, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f:1", + "utxos_info": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4501,17 +4442,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 73, - "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "block_index": 206, - "block_hash": "01846b45f3471c31292a5664be521ee633e3113f741f72dafb1bf6543e16d259", - "block_time": 1730147525, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "block_hash": "24fcd9eac7b7cd3657adfe8bc22e3952cde382c08c9782ffc7e354dfaf750fcf", + "block_time": 1730150158, + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380527fc786dce354681ff9800bc9b06a2a44fd524e803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2088746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038053acd20b89492c54642d81b92cdc32862046ce71803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6:0", + "utxos_info": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4519,14 +4460,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4534,7 +4475,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4553,17 +4494,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 72, - "tx_hash": "4f72d5bee6053f9591d332772cf67ec1874d67118be7049fac7da1ed5b6f83b8", + "tx_hash": "5cc312fce3a8f8432aea553285ab698a3d10185eafdb52df5723ee3ed378d751", "block_index": 205, - "block_hash": "3873d38f2cf1b4e0638c2afeefa858f06618aa1b2fbcaa8fa43d7beadd77ea33", - "block_time": 1730147521, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "block_hash": "290c68bb409d42e9ed62dc8223e72f61f221b4e03db77c76fe49931edea5538a", + "block_time": 1730150154, + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380527fc786dce354681ff9800bc9b06a2a44fd524e803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c20c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038053acd20b89492c54642d81b92cdc32862046ce71803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e2c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "4f72d5bee6053f9591d332772cf67ec1874d67118be7049fac7da1ed5b6f83b8:0", + "utxos_info": "5cc312fce3a8f8432aea553285ab698a3d10185eafdb52df5723ee3ed378d751:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4571,14 +4512,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4586,7 +4527,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4605,17 +4546,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 71, - "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "block_index": 204, - "block_hash": "5d35bb0804bc053ef7d59c9d0c4a9f4bcd4bc52272146001da9b7757c898d039", - "block_time": 1730147517, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "3906807db0d56b9fec78f5982ba29d4512f200a4769bb4153d83c94df666c0a4", + "block_time": 1730150151, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d2621d21756eb8ebb22ce432b26450ae670d208f803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2040000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d630d477df0f6e07f91e8949433310400b60dd35803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e240000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767:0", + "utxos_info": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4623,14 +4564,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4638,7 +4579,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4657,17 +4598,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 70, - "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", + "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", "block_index": 203, - "block_hash": "0770bd3567046a0c047163accfc399966280bdbd87644d765df50a5819c333f3", - "block_time": 1730147502, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "5b2cb939f6b6a782be5829b4a32d310f3e8b11c136ebed663d064b28e5700f62", + "block_time": 1730150148, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d2621d21756eb8ebb22ce432b26450ae670d208f803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2088746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d630d477df0f6e07f91e8949433310400b60dd35803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b:0", + "utxos_info": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4675,14 +4616,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4690,7 +4631,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4718,7 +4659,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m,bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70,bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `675` (str, optional) - The last event index to return @@ -4754,11 +4695,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "status": "open", - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "tx_index": 74, - "block_time": 1730147530, + "block_time": 1730150162, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4782,24 +4723,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_time": 1730147530 + "block_time": 1730150162 }, { "event_index": 658, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "block_index": 207, - "event": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "event": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "quantity": 1000, "tx_index": 74, "utxo": null, "utxo_address": null, - "block_time": 1730147530, + "block_time": 1730150162, "asset_info": { "divisible": true, "asset_longname": null, @@ -4809,37 +4750,37 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_time": 1730147530 + "block_time": 1730150162 }, { "event_index": 657, "event": "ORDER_EXPIRATION", "params": { "block_index": 207, - "order_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "block_time": 1730147530 + "order_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_time": 1730150162 }, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_time": 1730147530 + "block_time": 1730150162 }, { "event_index": 656, "event": "CREDIT", "params": { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "block_index": 207, "calling_function": "cancel order", - "event": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "event": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730147530, + "block_time": 1730150162, "asset_info": { "divisible": true, "asset_longname": null, @@ -4849,25 +4790,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00005000" }, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_time": 1730147530 + "block_time": 1730150162 }, { "event_index": 654, "event": "NEW_TRANSACTION", "params": { - "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", + "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", "block_index": 207, - "block_time": 1730147530, + "block_time": 1730150162, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "tx_index": 74, - "utxos_info": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f:1", + "utxos_info": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4899,9 +4840,9 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_time": 1730147530 + "block_time": 1730150162 } ], "next_cursor": 650, @@ -4914,7 +4855,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0,bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk,bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa` (str, required) - Comma separated list of addresses to return + cursor (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return @@ -4930,17 +4871,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "memo": null, "quantity": 10000, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "status": "valid", - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "tx_index": 76, "asset_info": { "divisible": true, @@ -4951,22 +4892,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "CREDIT", "params": { - "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -4976,22 +4917,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "XCP", "block_index": 208, - "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -5001,30 +4942,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730147542.563512, + "block_time": 1730150180.8792815, "btc_amount": 0, - "data": "0200000000000000010000000000002710803970def27ed5459d1126af8f037ccb8fe4aeac4d", + "data": "0200000000000000010000000000002710803eb72a4136323ae914b5e511d43a96fe66f85c55", "destination": "", "fee": 10000, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "tx_index": 76, - "utxos_info": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4:1", + "utxos_info": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "memo": null, "asset_info": { "divisible": true, @@ -5038,7 +4979,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 } ], "next_cursor": null, @@ -5051,7 +4992,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -5071,7 +5012,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5079,14 +5020,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5094,14 +5035,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5109,14 +5050,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -5131,7 +5072,7 @@ Returns the balances of an address "quantity_normalized": "826.49941000" }, { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5139,7 +5080,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -5156,7 +5097,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -5169,7 +5110,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -5194,7 +5135,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5244,16 +5185,16 @@ Returns the credits of an address "result": [ { "block_index": 207, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "event": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147530, + "block_time": 1730150162, "asset_info": { "divisible": true, "asset_longname": null, @@ -5265,16 +5206,16 @@ Returns the credits of an address }, { "block_index": 206, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "event": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147525, + "block_time": 1730150158, "asset_info": { "divisible": true, "asset_longname": null, @@ -5286,16 +5227,16 @@ Returns the credits of an address }, { "block_index": 205, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "4f72d5bee6053f9591d332772cf67ec1874d67118be7049fac7da1ed5b6f83b8", + "event": "5cc312fce3a8f8432aea553285ab698a3d10185eafdb52df5723ee3ed378d751", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147521, + "block_time": 1730150154, "asset_info": { "divisible": true, "asset_longname": null, @@ -5307,20 +5248,20 @@ Returns the credits of an address }, { "block_index": 201, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", + "event": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", "tx_index": 68, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147494, + "block_time": 1730150139, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -5328,16 +5269,16 @@ Returns the credits of an address }, { "block_index": 192, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", + "event": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147455, + "block_time": 1730150102, "asset_info": { "divisible": true, "asset_longname": null, @@ -5358,7 +5299,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5397,16 +5338,16 @@ Returns the debits of an address "result": [ { "block_index": 207, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "event": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147530, + "block_time": 1730150162, "asset_info": { "divisible": true, "asset_longname": null, @@ -5418,16 +5359,16 @@ Returns the debits of an address }, { "block_index": 204, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "event": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147517, + "block_time": 1730150151, "asset_info": { "divisible": true, "asset_longname": null, @@ -5439,20 +5380,20 @@ Returns the debits of an address }, { "block_index": 204, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "event": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147517, + "block_time": 1730150151, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -5460,16 +5401,16 @@ Returns the debits of an address }, { "block_index": 203, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", + "event": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147502, + "block_time": 1730150148, "asset_info": { "divisible": true, "asset_longname": null, @@ -5481,20 +5422,20 @@ Returns the debits of an address }, { "block_index": 203, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", + "event": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147502, + "block_time": 1730150148, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -5511,7 +5452,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address of the feed + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5546,7 +5487,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + cursor (str, optional) - The last index of the broadcasts to return + Default: `None` + limit: `5` (int, optional) - The maximum number of broadcasts to return @@ -5565,9 +5506,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "18aaf369ee7b22607393e152af0efd92979dee2ef001c12f68449f3dd6a3c100", + "tx_hash": "6bb6a779b50b7a5f5e7f2eeb16d14bf3280a3bb411704fe10c8e4937e68590ac", "block_index": 137, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5575,7 +5516,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730147234, + "block_time": 1730149887, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5589,7 +5530,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + cursor (str, optional) - The last index of the burns to return + Default: `None` + limit: `5` (int, optional) - The maximum number of burns to return @@ -5608,14 +5549,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "2fed39c42c5098183f1ae8e1361e26ab555b2ec5955749c972b5f1067f3e2c72", + "tx_hash": "8ff0c2680710490b1c7c0269f3397e605b43865d2c911da53d7fa1a8ef46f050", "block_index": 112, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730147143, + "block_time": 1730149793, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5630,7 +5571,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + cursor (str, optional) - The last index of the sends to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sends to return @@ -5649,10 +5590,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 71, - "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "block_index": 204, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5660,7 +5601,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730147517, + "block_time": 1730150151, "asset_info": { "divisible": true, "asset_longname": null, @@ -5673,10 +5614,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 71, - "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "block_index": 204, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5684,11 +5625,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730147517, + "block_time": 1730150151, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -5697,10 +5638,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 71, - "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "block_index": 204, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5708,11 +5649,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730147517, + "block_time": 1730150151, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -5721,10 +5662,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 70, - "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", + "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", "block_index": 203, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5732,7 +5673,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730147502, + "block_time": 1730150148, "asset_info": { "divisible": true, "asset_longname": null, @@ -5745,10 +5686,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 70, - "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", + "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", "block_index": 203, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5756,11 +5697,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730147502, + "block_time": 1730150148, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -5778,7 +5719,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qcz42hsauvvj7zvqys6awauwvtlxm66sq2gnk5v` (str, required) - The address to return + + address: `bcrt1qg89hz5l72ck62vsg34dpc2fvtfgmuhna0e0t4c` (str, required) - The address to return + cursor (str, optional) - The last index of the sends to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sends to return @@ -5797,10 +5738,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "b9aeb481d6d93a3eee3edaee0438c4e3a7efc7f5f40d59eaa8606c125a6b2d9f", + "tx_hash": "1f020eae3e44998e380ea6141659b829120b8ba595664630b4ae8d51e6eb3ff2", "block_index": 151, - "source": "0e342a2ee7897e26da5b3b27ef89ed24cb2f5db944eb6471b2b3b214318205e4:0", - "destination": "bcrt1qcz42hsauvvj7zvqys6awauwvtlxm66sq2gnk5v", + "source": "d94e197f2a619d264cc847eb0c6d0cc74b543b39ee3e674e770d01b6491332f0:0", + "destination": "bcrt1qg89hz5l72ck62vsg34dpc2fvtfgmuhna0e0t4c", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5808,11 +5749,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730147299, + "block_time": 1730149952, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -5830,7 +5771,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5850,10 +5791,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 71, - "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "block_index": 204, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5861,11 +5802,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730147517, + "block_time": 1730150151, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -5874,10 +5815,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 71, - "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "block_index": 204, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5885,11 +5826,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730147517, + "block_time": 1730150151, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -5898,10 +5839,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 70, - "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", + "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", "block_index": 203, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5909,11 +5850,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730147502, + "block_time": 1730150148, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -5922,10 +5863,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 70, - "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", + "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", "block_index": 203, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5933,11 +5874,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730147502, + "block_time": 1730150148, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -5946,10 +5887,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 69, - "tx_hash": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f", + "tx_hash": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c", "block_index": 202, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5957,11 +5898,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730147498, + "block_time": 1730150144, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -5979,7 +5920,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qcz42hsauvvj7zvqys6awauwvtlxm66sq2gnk5v` (str, required) - The address to return + + address: `bcrt1qg89hz5l72ck62vsg34dpc2fvtfgmuhna0e0t4c` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -6007,7 +5948,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -6036,9 +5977,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6047,7 +5988,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6057,7 +5998,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -6073,9 +6014,9 @@ Returns the dispensers of an address }, { "tx_index": 62, - "tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", + "tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", "block_index": 197, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6084,7 +6025,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6094,11 +6035,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147475, + "block_time": 1730150120, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -6119,7 +6060,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -6132,9 +6073,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6143,7 +6084,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6153,7 +6094,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -6175,7 +6116,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -6195,19 +6136,19 @@ Returns the dispenses of a source { "tx_index": 63, "dispense_index": 0, - "tx_hash": "3eaa0359313df169f4e9a098ef8e0ab8cdd5939ab338dca7fa670dbbfb3c0111", + "tx_hash": "541f0fb85b7dbc11dc47a5535cee583b4066f143b1409c77dd9d39d0d60f6af8", "block_index": 197, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", + "dispenser_tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6215,7 +6156,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6230,11 +6171,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147475, + "block_time": 1730150120, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -6244,19 +6185,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", + "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6264,7 +6205,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6279,7 +6220,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -6293,19 +6234,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", + "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", "block_index": 140, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6313,7 +6254,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6328,7 +6269,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147244, + "block_time": 1730149900, "asset_info": { "divisible": true, "asset_longname": null, @@ -6350,7 +6291,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - The address to return + + address: `bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -6370,19 +6311,19 @@ Returns the dispenses of a destination { "tx_index": 63, "dispense_index": 0, - "tx_hash": "3eaa0359313df169f4e9a098ef8e0ab8cdd5939ab338dca7fa670dbbfb3c0111", + "tx_hash": "541f0fb85b7dbc11dc47a5535cee583b4066f143b1409c77dd9d39d0d60f6af8", "block_index": 197, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", + "dispenser_tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6390,7 +6331,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6405,11 +6346,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147475, + "block_time": 1730150120, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -6419,19 +6360,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", + "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6439,7 +6380,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6454,7 +6395,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -6468,19 +6409,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", + "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", "block_index": 140, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6488,7 +6429,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6503,7 +6444,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147244, + "block_time": 1730149900, "asset_info": { "divisible": true, "asset_longname": null, @@ -6525,7 +6466,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` @@ -6546,19 +6487,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", + "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6566,7 +6507,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6581,7 +6522,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -6595,19 +6536,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", + "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", "block_index": 140, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6615,7 +6556,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6630,7 +6571,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147244, + "block_time": 1730149900, "asset_info": { "divisible": true, "asset_longname": null, @@ -6652,7 +6593,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - The address to return + + address: `bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` @@ -6673,19 +6614,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", + "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6693,7 +6634,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6708,7 +6649,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -6722,19 +6663,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", + "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", "block_index": 140, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6742,7 +6683,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6757,7 +6698,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147244, + "block_time": 1730149900, "asset_info": { "divisible": true, "asset_longname": null, @@ -6779,7 +6720,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0` (str, required) - The address to return + + address: `bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk` (str, required) - The address to return + cursor (str, optional) - The last index of the sweeps to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sweeps to return @@ -6798,16 +6739,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 60, - "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", + "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", "block_index": 194, - "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730147463, + "block_time": 1730150109, "fee_paid_normalized": "0.00600000" } ], @@ -6821,7 +6762,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6853,14 +6794,14 @@ Returns the issuances of an address "result": [ { "tx_index": 68, - "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", + "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -6875,20 +6816,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730147494, + "block_time": 1730150139, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "ecedf49fefa307a78131f6b1d7f52c17b4ececb2e16f6ace25f1e6735fe7090f", + "tx_hash": "bfaad85954beda99abea4a7010a07447599bbf6f22ea125e30ed294c7f5218f0", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -6903,20 +6844,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730147339, + "block_time": 1730149990, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "4ef076610716e47917b7d9a1703541120e00b089e1da54ae1a615438306de745", + "tx_hash": "05689fcc47dfef00b3da5ab26a1b46ea1887fa933a6f6903acb19faf207eca1f", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -6931,20 +6872,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730147334, + "block_time": 1730149986, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "4a865f981bedcaa6f59c08c2b25f1e47c0c1db264cac059bd89ad1011fd381e0", + "tx_hash": "b9a6fb371b7caf85edb70d0c373d91aad170224779eb8f3effcbeec5ea512deb", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -6959,20 +6900,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730147330, + "block_time": 1730149983, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "a65366c8d04355c3ec10374f3abcb6c2aa5d455b1ff2ca72cee7c67943ff6e12", + "tx_hash": "6e5931b93013418aa0a6e7540e41bec82e1bd61e68f03b4f0488178a69c2f131", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -6987,7 +6928,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730147326, + "block_time": 1730149979, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -7002,7 +6943,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The issuer or owner to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7025,8 +6966,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 100000000000, @@ -7034,16 +6975,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730147494, - "last_issuance_block_time": 1730147494, + "first_issuance_block_time": 1730150139, + "last_issuance_block_time": 1730150139, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 10000000000, @@ -7051,16 +6992,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730147326, - "last_issuance_block_time": 1730147334, + "first_issuance_block_time": 1730149979, + "last_issuance_block_time": 1730149986, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 100000000000, @@ -7068,16 +7009,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730147287, - "last_issuance_block_time": 1730147287, + "first_issuance_block_time": 1730149941, + "last_issuance_block_time": 1730149941, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 40, @@ -7085,16 +7026,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730147227, - "last_issuance_block_time": 1730147231, + "first_issuance_block_time": 1730149878, + "last_issuance_block_time": 1730149883, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 19, @@ -7102,8 +7043,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730147211, - "last_issuance_block_time": 1730147222, + "first_issuance_block_time": 1730149865, + "last_issuance_block_time": 1730149874, "supply_normalized": "0.00000019" } ], @@ -7117,7 +7058,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The issuer to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The issuer to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7140,8 +7081,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 100000000000, @@ -7149,16 +7090,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730147494, - "last_issuance_block_time": 1730147494, + "first_issuance_block_time": 1730150139, + "last_issuance_block_time": 1730150139, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 10000000000, @@ -7166,16 +7107,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730147326, - "last_issuance_block_time": 1730147334, + "first_issuance_block_time": 1730149979, + "last_issuance_block_time": 1730149986, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 100000000000, @@ -7183,16 +7124,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730147287, - "last_issuance_block_time": 1730147287, + "first_issuance_block_time": 1730149941, + "last_issuance_block_time": 1730149941, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 40, @@ -7200,16 +7141,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730147227, - "last_issuance_block_time": 1730147231, + "first_issuance_block_time": 1730149878, + "last_issuance_block_time": 1730149883, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 19, @@ -7217,8 +7158,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730147211, - "last_issuance_block_time": 1730147222, + "first_issuance_block_time": 1730149865, + "last_issuance_block_time": 1730149874, "supply_normalized": "0.00000019" } ], @@ -7232,7 +7173,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The owner to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7255,8 +7196,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 100000000000, @@ -7264,16 +7205,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730147494, - "last_issuance_block_time": 1730147494, + "first_issuance_block_time": 1730150139, + "last_issuance_block_time": 1730150139, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 10000000000, @@ -7281,16 +7222,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730147326, - "last_issuance_block_time": 1730147334, + "first_issuance_block_time": 1730149979, + "last_issuance_block_time": 1730149986, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 100000000000, @@ -7298,16 +7239,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730147287, - "last_issuance_block_time": 1730147287, + "first_issuance_block_time": 1730149941, + "last_issuance_block_time": 1730149941, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 40, @@ -7315,16 +7256,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730147227, - "last_issuance_block_time": 1730147231, + "first_issuance_block_time": 1730149878, + "last_issuance_block_time": 1730149883, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 19, @@ -7332,8 +7273,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730147211, - "last_issuance_block_time": 1730147222, + "first_issuance_block_time": 1730149865, + "last_issuance_block_time": 1730149874, "supply_normalized": "0.00000019" } ], @@ -7347,7 +7288,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + cursor: `75` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7366,17 +7307,17 @@ Returns the transactions of an address "result": [ { "tx_index": 74, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", - "block_time": 1730147530, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", + "block_time": 1730150162, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f:1", + "utxos_info": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7412,17 +7353,17 @@ Returns the transactions of an address }, { "tx_index": 71, - "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "block_index": 204, - "block_hash": "5d35bb0804bc053ef7d59c9d0c4a9f4bcd4bc52272146001da9b7757c898d039", - "block_time": 1730147517, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "3906807db0d56b9fec78f5982ba29d4512f200a4769bb4153d83c94df666c0a4", + "block_time": 1730150151, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d2621d21756eb8ebb22ce432b26450ae670d208f803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2040000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d630d477df0f6e07f91e8949433310400b60dd35803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e240000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767:0", + "utxos_info": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7430,14 +7371,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -7445,7 +7386,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7464,17 +7405,17 @@ Returns the transactions of an address }, { "tx_index": 70, - "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", + "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", "block_index": 203, - "block_hash": "0770bd3567046a0c047163accfc399966280bdbd87644d765df50a5819c333f3", - "block_time": 1730147502, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "5b2cb939f6b6a782be5829b4a32d310f3e8b11c136ebed663d064b28e5700f62", + "block_time": 1730150148, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d2621d21756eb8ebb22ce432b26450ae670d208f803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2088746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d630d477df0f6e07f91e8949433310400b60dd35803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b:0", + "utxos_info": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7482,14 +7423,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -7497,7 +7438,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7516,17 +7457,17 @@ Returns the transactions of an address }, { "tx_index": 69, - "tx_hash": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f", + "tx_hash": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c", "block_index": 202, - "block_hash": "5b62183f865f9122b0b1823726656c462dab8e5c45823a9c43b72ce9ce1bdbde", - "block_time": 1730147498, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "4def8f3f53efebbf9574a397c76511feff3e10ee36a643847e7619aa265947fa", + "block_time": 1730150144, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d2621d21756eb8ebb22ce432b26450ae670d208f", + "data": "02000000178d82231300000000000003e880d630d477df0f6e07f91e8949433310400b60dd35", "supported": true, - "utxos_info": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f:1", + "utxos_info": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7534,12 +7475,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -7550,17 +7491,17 @@ Returns the transactions of an address }, { "tx_index": 68, - "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", + "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", "block_index": 201, - "block_hash": "7156384707e1643c99729bcff455e508cc134e75ff200fe29f1138d04e3ffe6b", - "block_time": 1730147494, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "283a8824308fb868afc9759ec62e9714ff889dbf79c0e6a5b9aa0d6f7d4b906a", + "block_time": 1730150139, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e:1", + "utxos_info": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7594,7 +7535,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + cursor (str, optional) - The last index of the assets to return + Default: `None` + limit: `5` (int, optional) - The maximum number of assets to return @@ -7613,20 +7554,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", + "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", "block_index": 154, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730147310, + "block_time": 1730149962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -7651,7 +7592,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7680,9 +7621,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", + "tx_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", "block_index": 184, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7697,7 +7638,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730147353, + "block_time": 1730150014, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7723,9 +7664,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", "block_index": 207, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7740,7 +7681,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730147530, + "block_time": 1730150162, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7766,9 +7707,9 @@ Returns the orders of an address }, { "tx_index": 57, - "tx_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", + "tx_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", "block_index": 192, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7783,7 +7724,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730147455, + "block_time": 1730150102, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7809,9 +7750,9 @@ Returns the orders of an address }, { "tx_index": 59, - "tx_hash": "8c2d59b10cf446779609dae007a9bc91d0a00c457b17a0b279920ccbc776425e", + "tx_hash": "13047cb4dab1b0ba2151ae8e16379cc2b16fb4bb8f63e8c0f205359d365a62a2", "block_index": 193, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7826,7 +7767,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730147459, + "block_time": 1730150106, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7852,9 +7793,9 @@ Returns the orders of an address }, { "tx_index": 74, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7869,7 +7810,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730147530, + "block_time": 1730150162, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7904,7 +7845,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The source of the fairminter to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7929,10 +7870,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "0998f235a3feba0746e143f431c1f698ca50ae3f8745598a4671168e9c151cef", + "tx_hash": "93dee74a73fd75a2b609a0b4cd62839d0d254025bf44bcb5513cad7d35bfa6f3", "tx_index": 42, "block_index": 155, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7957,7 +7898,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730147313, + "block_time": 1730149965, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7966,10 +7907,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", + "tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7994,7 +7935,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730147227, + "block_time": 1730149878, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -8006,10 +7947,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", + "tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -8034,7 +7975,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730147211, + "block_time": 1730149865, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -8046,10 +7987,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "ef648a52d64c60ed013aa174ae6a48421d17f923b88d3aba2e05b58ef0c76886", + "tx_hash": "0e2c46ac44f390ff6b06d99469bca85858fa064feb09b8c2ef799039d36dfa3f", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8074,7 +8015,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730147206, + "block_time": 1730149860, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8086,10 +8027,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", + "tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8114,7 +8055,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730147187, + "block_time": 1730149841, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8136,7 +8077,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - The address of the mints to return + + address: `bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8154,22 +8095,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", + "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147231, + "block_time": 1730149883, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -8178,22 +8119,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "a9ec529d035361f0f926d689b0a23cdf4fef412a2be429d5399f71ab7fbd086a", + "tx_hash": "fda34c124d140677eccc10bdff0dc1cac5550cd210cdabf0ec3cac7f5621c72d", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147222, + "block_time": 1730149874, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -8202,22 +8143,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "93c5f036c8e324dda6f5e9e84e15f096906d0974ea4003bdf51cd4bd013c3ad4", + "tx_hash": "1a79feb1b1b318e55f4b6836518ac7315c78fc94029d4bfbe2e66f0341f3d69d", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147218, + "block_time": 1730149871, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -8226,22 +8167,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "24ba6e5e817679a1c81bd41098b8ea21134e6fd0493e343e7ce171576bae5ef2", + "tx_hash": "52aa1faf5394a028bd06452893acd47a19a81f90b3984c7546cf5c0fa205f190", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147215, + "block_time": 1730149868, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -8250,22 +8191,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "c8d21094348438b7c4655120669db0ddae866ac6446b9ca3b607e8b9c96ac128", + "tx_hash": "d1586440adceece4e92b7437fba4cba5a60fe7b2bd73cef159abc829572d7f76", "tx_index": 15, "block_index": 127, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "ef648a52d64c60ed013aa174ae6a48421d17f923b88d3aba2e05b58ef0c76886", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "0e2c46ac44f390ff6b06d99469bca85858fa064feb09b8c2ef799039d36dfa3f", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147194, + "block_time": 1730149849, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -8274,22 +8215,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", + "tx_hash": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147180, + "block_time": 1730149834, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -8308,7 +8249,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - The address of the mints to return + + address: `bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - The address of the mints to return + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -8327,22 +8268,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", + "tx_hash": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147180, + "block_time": 1730149834, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -8363,7 +8304,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0` (str, required) - The utxo to return + + utxo: `ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8383,8 +8324,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 1500000000, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "asset_info": { "divisible": true, "asset_longname": null, @@ -8397,12 +8338,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 1500000000, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -8437,13 +8378,13 @@ By default the default value of the `encoding` parameter detailed above is `auto - Sign the transaction following the `Bitcoinjs-lib on javascript, signing a P2SH redeeming transaction` section - **NOTE**: Don't leave pretxs hanging without transmitting the second transaction as this pollutes the UTXO set and risks making bitcoin harder to run on low spec nodes. -### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address}{&bet_type}{&deadline}{&wager_quantity}{&counterwager_quantity}{&expiration}{&leverage}{&target_value}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] +### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address}{&bet_type}{&deadline}{&wager_quantity}{&counterwager_quantity}{&expiration}{&leverage}{&target_value}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a bet against a feed. + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will make the bet - + feed_address: `bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will make the bet + + feed_address: `bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - The address that hosts the feed to be bet on + bet_type: `2` (int, required) - Bet 0 for Bullish CFD (deprecated), 1 for Bearish CFD (deprecated), 2 for Equal, 3 for NotEqual + deadline: `3000000000` (int, required) - The time at which the bet should be decided/settled, in Unix time (seconds since epoch) + wager_quantity: `1000` (int, required) - The quantities of XCP to wager (in satoshis, hence integer) @@ -8493,9 +8434,9 @@ Composes a transaction to issue a bet against a feed. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` - + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + use_utxos_with_balances (bool, optional) - Use UTXO with balances + Default: `False` - + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8510,12 +8451,12 @@ Composes a transaction to issue a bet against a feed. } ``` -### Compose Broadcast [GET /v2/addresses/{address}/compose/broadcast{?timestamp}{&value}{&fee_fraction}{&text}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] +### Compose Broadcast [GET /v2/addresses/{address}/compose/broadcast{?timestamp}{&value}{&fee_fraction}{&text}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to broadcast textual and numerical information to the network. + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + timestamp: `4003903985` (int, required) - The timestamp of the broadcast, in Unix time + value: `100` (float, required) - Numerical value of the broadcast + fee_fraction: `0.05` (float, required) - How much of every bet on this feed should go to its operator; a fraction of 1, (i.e. 0.05 is five percent) @@ -8560,9 +8501,9 @@ Composes a transaction to broadcast textual and numerical information to the net + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` - + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + use_utxos_with_balances (bool, optional) - Use UTXO with balances + Default: `False` - + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8575,7 +8516,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8587,7 +8528,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "02000000000101ec554f96df34adde2d052d8c8ff141c82bbe4c0e291b407e2db656d0bcad131700000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff0200000000000000002b6a29c707dd529b7abad7f5c6edfa52a167c2b99a13f93fb0e203b60d7e7f271c4d040d8c93648bec77fada83ba052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "02000000000101a16813c6cbda4394caf28ebf52642d8f4c3a0951615e5c3c2714fb2d5edb99c10000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff0200000000000000002b6a29fb22783a08b808d57fec85d10dc4cc7474cc5c11299d8be14b5c6f6c63ec479d7d89ded2d8dbb6129383ba052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8604,13 +8545,13 @@ Composes a transaction to broadcast textual and numerical information to the net } ``` -### Compose BTCPay [GET /v2/addresses/{address}/compose/btcpay{?order_match_id}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] +### Compose BTCPay [GET /v2/addresses/{address}/compose/btcpay{?order_match_id}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to pay for a BTC order match. + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be sending the payment - + order_match_id: `99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9` (str, required) - The ID of the order match to pay for + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be sending the payment + + order_match_id: `bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1` (str, required) - The ID of the order match to pay for + encoding (str, optional) - The encoding method to use + Default: `auto` + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis) @@ -8651,9 +8592,9 @@ Composes a transaction to pay for a BTC order match. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` - + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + use_utxos_with_balances (bool, optional) - Use UTXO with balances + Default: `False` - + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8666,23 +8607,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9" + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1" }, "name": "btcpay", - "data": "434e5452505254590b99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "data": "434e5452505254590bbee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82ef9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978921, "btc_fee": 18079, - "rawtransaction": "02000000000101f783ff9ef8362151324d3e3c73fd567bdc7330f40489345ff887d25221866a0f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff03b80b000000000000160014527fc786dce354681ff9800bc9b06a2a44fd524e00000000000000004b6a49b2da7a60d77d3e2ff5da583fe83f15a8a9cc207b59c30ca77d213dc899f6c4a65378180ebf2504f1e34b96a5d845089e833b98161b8225a44c42a42a58827d9e94f03470c733093a41a99f052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "02000000000101b7bdde1323902defae298dc5e6725026dcd9e92e8d6df8a467b1ae2f8f65a98c0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff03b80b00000000000016001453acd20b89492c54642d81b92cdc32862046ce7100000000000000004b6a496c56d1b9cc9c99f2c1186c78fce1461d1a4885cc655bb120d5e2d15f68776717d357c5ebc0617e4cbad496680db286dff338ee270e42da36772480c28e54fcafb6cf980d3ed8395f8aa99f052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", - "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "status": "valid" } } @@ -8690,12 +8631,12 @@ Composes a transaction to pay for a BTC order match. } ``` -### Compose Burn [GET /v2/addresses/{address}/compose/burn{?quantity}{&overburn}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] +### Compose Burn [GET /v2/addresses/{address}/compose/burn{?quantity}{&overburn}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, possible between blocks 278310 and 283810; on testnet it is still available). + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address with the BTC to burn + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address with the BTC to burn + quantity: `1000` (int, required) - The quantities of BTC to burn (in satoshis, hence integer) (1 BTC maximum burn per address) + overburn (bool, optional) - Whether to allow the burn to exceed 1 BTC for the address + Default: `False` @@ -8739,9 +8680,9 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` - + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + use_utxos_with_balances (bool, optional) - Use UTXO with balances + Default: `False` - + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8754,7 +8695,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "quantity": 1000, "overburn": false }, @@ -8764,18 +8705,18 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985793, "btc_fee": 13207, - "rawtransaction": "020000000001017cc467ffa3846c0908d281028a906a2f987f00285abe9533fe70de6809112ed700000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000" + "rawtransaction": "0200000000010131fa73b5d4effef47223f586d146bcdb01a1b5ca74702206aa2c981f0c1bef380000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000" } } ``` -### Compose Cancel [GET /v2/addresses/{address}/compose/cancel{?offer_hash}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] +### Compose Cancel [GET /v2/addresses/{address}/compose/cancel{?offer_hash}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to cancel an open order or bet. + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830` (str, required) - The hash of the order/bet to be cancelled + encoding (str, optional) - The encoding method to use + Default: `auto` + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis) @@ -8816,9 +8757,9 @@ Composes a transaction to cancel an open order or bet. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` - + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + use_utxos_with_balances (bool, optional) - Use UTXO with balances + Default: `False` - + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8831,21 +8772,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "offer_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f" + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "offer_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830" }, "name": "cancel", - "data": "434e54525052545946ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "data": "434e54525052545946affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "02000000000101f21565ec24ac8a6c096fe0d96924dbef615d2d131b10317105784673b582f96000000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff0200000000000000002b6a298bcb8bd253cae71a7e3f78c9ba32e28019c386c1523aa89e7b3c6138f2172a03481507a8669ac7efdb83ba052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "02000000000101986b752aa9bcf253eb6166b125bc4b962fb4be72afcfedfb5bea6db7124013420000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff0200000000000000002b6a29a264c680ff8488221489027a95d43a65eb06c19f524ee1ec0933808007294988a829a932c94f1bf3c983ba052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "offer_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "status": "valid" } } @@ -8853,12 +8794,12 @@ Composes a transaction to cancel an open order or bet. } ``` -### Compose Destroy [GET /v2/addresses/{address}/compose/destroy{?asset}{&quantity}{&tag}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] +### Compose Destroy [GET /v2/addresses/{address}/compose/destroy{?asset}{&quantity}{&tag}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be sending the asset to be destroyed + asset: `XCP` (str, required) - The asset to be destroyed + quantity: `1000` (int, required) - The quantity of the asset to be destroyed (in satoshis, hence integer) + tag: `"bugs!"` (str, required) - A tag for the destruction @@ -8902,9 +8843,9 @@ Composes a transaction to destroy a quantity of an asset. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` - + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + use_utxos_with_balances (bool, optional) - Use UTXO with balances + Default: `False` - + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8917,7 +8858,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8936,7 +8877,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986323, "btc_fee": 13677, - "rawtransaction": "02000000000101edca6184e83a2f2a9bb0ac09055f30de12f8f1e8e6099d7d60efe1f13506b06800000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000226a208a5dc160058962707268a118313c98488ef8e198371871ff602001eaf8963b3e93bc052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "020000000001016b1b80af5d849670ff64fd6d4049b93d30ee541dfa6d8a6fdb417b9570aae5db0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000226a20a2c8663360f1bf8191fc65393b59e5780de29514e6b3271b33778308bdb2b89693bc052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8951,12 +8892,12 @@ Composes a transaction to destroy a quantity of an asset. } ``` -### Compose Dispenser [GET /v2/addresses/{address}/compose/dispenser{?asset}{&give_quantity}{&escrow_quantity}{&mainchainrate}{&status}{&open_address}{&oracle_address}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] +### Compose Dispenser [GET /v2/addresses/{address}/compose/dispenser{?asset}{&give_quantity}{&escrow_quantity}{&mainchainrate}{&status}{&open_address}{&oracle_address}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to opens or closes a dispenser for a given asset at a given rate of main chain asset (BTC). Escrowed quantity on open must be equal or greater than give_quantity. It is suggested that you escrow multiples of give_quantity to ease dispenser operation. + Parameters - + address: `bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + asset: `XCP` (str, required) - The asset or subasset to dispense + give_quantity: `1000` (int, required) - The quantity of the asset to dispense (in satoshis, hence integer) + escrow_quantity: `1000` (int, required) - The quantity of the asset to reserve for this dispenser (in satoshis, hence integer) @@ -9006,9 +8947,9 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` - + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + use_utxos_with_balances (bool, optional) - Use UTXO with balances + Default: `False` - + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -9019,16 +8960,16 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv ``` { - "error": "invalid UTXO: 39b475d96fe427bf70a7413c344bbfa88768c4f038da4a0efceb2d0a3b5065bf:0" + "error": "invalid UTXO: 508340a6b50309287c608280e281aeb60e7fdb44401c73cc2d824350a587a82b:0" } ``` -### Compose Dividend [GET /v2/addresses/{address}/compose/dividend{?quantity_per_unit}{&asset}{÷nd_asset}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] +### Compose Dividend [GET /v2/addresses/{address}/compose/dividend{?quantity_per_unit}{&asset}{÷nd_asset}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a dividend to holders of a given asset. + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + quantity_per_unit: `1` (int, required) - The amount of dividend_asset rewarded (in satoshis, hence integer) + asset: `FAIRMINTA` (str, required) - The asset or subasset that the dividends are being rewarded on + dividend_asset: `XCP` (str, required) - The asset or subasset that the dividends are paid in @@ -9072,9 +9013,9 @@ Composes a transaction to issue a dividend to holders of a given asset. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` - + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + use_utxos_with_balances (bool, optional) - Use UTXO with balances + Default: `False` - + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -9087,14 +9028,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -9113,7 +9054,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "020000000001018aaa34296c5eaaaa5af41403de267a2b2d8521c1318fd5952d28e9f92d6c179300000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000236a21e9b0acfa86a694d7f95ef829118248d90aa0eb3df28e46d40ba6e86282c5e54dce58bc052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "0200000000010174b414fd30c96205105a31a703c8fbb63ee940861fff7e19d57d4b7fb76d69730000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000236a21fe12993920573aa7800ba36b3bd9522137afd716c44bfcb0bcc426a6895ac1a21858bc052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9129,15 +9070,15 @@ Composes a transaction to issue a dividend to holders of a given asset. } ``` -### Compose Issuance [GET /v2/addresses/{address}/compose/issuance{?asset}{&quantity}{&transfer_destination}{&divisible}{&lock}{&reset}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] +### Compose Issuance [GET /v2/addresses/{address}/compose/issuance{?asset}{&quantity}{&transfer_destination}{&divisible}{&lock}{&reset}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to Issue a new asset, issue more of an existing asset, lock an asset, reset existing supply, or transfer the ownership of an asset. + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be issuing or transfering the asset + asset: `XCPTEST` (str, required) - The assets to issue or transfer. This can also be a subasset longname for new subasset issuances + quantity: `1000` (int, required) - The quantity of the asset to issue (set to 0 if transferring an asset) (in satoshis, hence integer) - + transfer_destination: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, optional) - The address to receive the asset + Default: `None` + divisible (bool, optional) - Whether this asset is divisible or not (if a transfer, this value must match the value specified when the asset was originally issued) + Default: `True` @@ -9187,9 +9128,9 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` - + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + use_utxos_with_balances (bool, optional) - Use UTXO with balances + Default: `False` - + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -9202,10 +9143,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "transfer_destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "lock": false, "reset": false, @@ -9218,7 +9159,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983723, "btc_fee": 15731, - "rawtransaction": "0200000000010154ad99d547dce324cf6c8c1cad5a34d8fbec5ca1144b1dc1e1d84bc790b3aada00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff032202000000000000160014527fc786dce354681ff9800bc9b06a2a44fd524e0000000000000000236a2110b125f993ac326e3f43a8ef54c0b53167c5af10c3ef537d00ef290d80cfed305c6bb2052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "02000000000101e1a3f1ada3217a1505637717ee8298f57e874e534b68690dcf8495fae60e5aa20000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff03220200000000000016001453acd20b89492c54642d81b92cdc32862046ce710000000000000000236a21844f5e277f678854121c6312b80487336a152fb17918ba74747fdb06c3b8a2e2806bb2052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9242,14 +9183,14 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo } ``` -### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memos}{&memos_are_hex}{&memo}{&memo_is_hex}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] +### Compose MPMA [GET /v2/addresses/{address}/compose/mpma{?assets}{&destinations}{&quantities}{&memos}{&memos_are_hex}{&memo}{&memo_is_hex}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to send multiple payments to multiple addresses. + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m,bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70,bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9299,9 +9240,9 @@ Composes a transaction to send multiple payments to multiple addresses. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` - + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + use_utxos_with_balances (bool, optional) - Use UTXO with balances + Default: `False` - + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -9314,16 +9255,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", 1 ], [ "MPMASSET", - "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", 2 ] ], @@ -9331,26 +9272,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280527fc786dce354681ff9800bc9b06a2a44fd524e80d2621d21756eb8ebb22ce432b26450ae670d208f40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e5452505254590300028053acd20b89492c54642d81b92cdc32862046ce7180d630d477df0f6e07f91e8949433310400b60dd3540000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945404, "btc_fee": 52596, - "rawtransaction": "02000000000104eb16b1dea782b710fe959e2403a3444a73b1b428be97b4f759db556ec294cd6e00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff8bfecbfd4d7c1ac49abe78c4aab75848d36f482911123a35161cd1948d5ad31a00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff44b8185ee04b24bf5457051abf4738e1ab2202b08208d0900d3bb07d3859e35600000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffffb3a91e8473d3bcf38592e933a9a9a1c886b76a2edbd1d705ab37223ec621994f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff03e80300000000000069512103229c1ad740e1fc7fe315b713d61367a44b16f37daa05db4a8a0c3b783897df28210247b946b98e1484ab58f866adaf57143b427f4078cb44b221122d6c84343f3449210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53aee803000000000000695121033d9c1ad740e1fc7fe3c6b71156411863cdee1029c21a22ca81c18b1212d32203210215f7c76bec09a5de36408d1f83b32689262fee1fc6643d61122d696754b7f062210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53aebcf216a804000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000002000002000002000000000000", + "rawtransaction": "02000000000104f774d36dff6d2786ec3b57ebb0c6dc5065f653e1a3ec007e66c21e21d46ffde50000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffffae4dd615d91336a8690b9aafe0e1617c1f4355e4be5d4bac09edb74e9cf4f2ce0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff70a2fb38ffc69b48d06226cc480565f32dbca5e1fef2979a796d755368803f8a0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff90eb00cdf8c1ac8e43f29ea7d3b81dec006bb3f0eedfb730221e77b51b494ff50000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff03e80300000000000069512102f15bddc977261dc0ca449e10c45d3c04ddd4ec9108e620c3285d352902e80a0f21034a588fe557248f340c1a13a5e3cba2211108b8c5b8f23f48d246f28c19a92d4221026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c53aee80300000000000069512103ee5bddc977261dc0ca979e12440e90d6d679a5bd5c820d429175e91b84c84c38210384290e3367f0f8eb0374145cfd42eb622218f8ced82f0a08d246f76f7921e9c721026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c53aebcf216a80400000016001453acd20b89492c54642d81b92cdc32862046ce7102000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9361,12 +9302,12 @@ Composes a transaction to send multiple payments to multiple addresses. } ``` -### Compose Order [GET /v2/addresses/{address}/compose/order{?give_asset}{&give_quantity}{&get_asset}{&get_quantity}{&expiration}{&fee_required}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] +### Compose Order [GET /v2/addresses/{address}/compose/order{?give_asset}{&give_quantity}{&get_asset}{&get_quantity}{&expiration}{&fee_required}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + give_asset: `XCP` (str, required) - The asset that will be given in the trade + give_quantity: `1000` (int, required) - The quantity of the asset that will be given (in satoshis, hence integer) + get_asset: `FAIRMINTA` (str, required) - The asset that will be received in the trade @@ -9413,9 +9354,9 @@ Composes a transaction to place an order on the distributed exchange. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` - + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + use_utxos_with_balances (bool, optional) - Use UTXO with balances + Default: `False` - + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -9428,7 +9369,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9445,7 +9386,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -9459,7 +9400,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985208, "btc_fee": 14792, - "rawtransaction": "020000000001013ccaeac64cc74c78aef490bfae465b26ce4d220bd88c53177d880ed6dfea3dd700000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000356a335729e4bf32af8f0e0ce28caf305a31a0812e519e4adc58500482f912e756736022499ff5709b2ca48cd36bcb4cb95e61cb179138b8052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "020000000001018a5431282e296f8f6ec31997a9a19adbe0256760f91162762bd13197339dd29b0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000356a336e82d0e5da1fae99227559bc259661cd39188bfb165d81e7842d2f24bd003797730b4ff853fffad533e50faf2511417376206738b8052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9480,13 +9421,13 @@ Composes a transaction to place an order on the distributed exchange. } ``` -### Compose Send [GET /v2/addresses/{address}/compose/send{?destination}{&asset}{&quantity}{&memo}{&memo_is_hex}{&use_enhanced_send}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] +### Compose Send [GET /v2/addresses/{address}/compose/send{?destination}{&asset}{&quantity}{&memo}{&memo_is_hex}{&use_enhanced_send}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to send a quantity of an asset to another address. + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - The address that will be receiving the asset + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - The address that will be receiving the asset + asset: `XCP` (str, required) - The asset or subasset to send + quantity: `1000` (int, required) - The quantity of the asset to send (in satoshis, hence integer) + memo (str, optional) - The Memo associated with this transaction @@ -9535,9 +9476,9 @@ Composes a transaction to send a quantity of an asset to another address. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` - + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + use_utxos_with_balances (bool, optional) - Use UTXO with balances + Default: `False` - + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -9550,8 +9491,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9567,19 +9508,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d2621d21756eb8ebb22ce432b26450ae670d208f", + "data": "434e54525052545902000000000000000100000000000003e880d630d477df0f6e07f91e8949433310400b60dd35", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985501, "btc_fee": 14499, - "rawtransaction": "02000000000101d2f9655814140cfeae93a2e40eb2285f960de02624abe024150dab6c014da1f300000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000306a2eb969df85bea8ea91ea294ef9f0aaa6469576d27c614e4adbf7deee7540e457ac380a29697a2f5d6b0577e85a2c735db9052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "020000000001018ce1dac28e46b9ffc500532f032c7b6a095ded5eed19562e548949cae92e26e20000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000306a2e751a14448bb75f0b213c510aec235f87d66fe6f5f5838ab19907721972b931a89ce9785511175d1b89d9cbe364525db9052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "memo": null, "quantity_normalized": "0.00001000" } @@ -9588,13 +9529,13 @@ Composes a transaction to send a quantity of an asset to another address. } ``` -### Compose Sweep [GET /v2/addresses/{address}/compose/sweep{?destination}{&flags}{&memo}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] +### Compose Sweep [GET /v2/addresses/{address}/compose/sweep{?destination}{&flags}{&memo}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to Sends all assets and/or transfer ownerships to a destination address. + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be sending - + destination: `bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be sending + + destination: `bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - The address to receive the assets and/or ownerships + flags: `7` (int, required) - An OR mask of flags indicating how the sweep should be processed. Possible flags are: - FLAG_BALANCES: (integer) 1, specifies that all balances should be transferred. - FLAG_OWNERSHIP: (integer) 2, specifies that all ownerships should be transferred. - FLAG_BINARY_MEMO: (integer) 4, specifies that the memo is in binary/hex form. + memo: `FFFF` (str, required) - The Memo associated with this transaction in hex format + encoding (str, optional) - The encoding method to use @@ -9637,9 +9578,9 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` - + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + use_utxos_with_balances (bool, optional) - Use UTXO with balances + Default: `False` - + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -9652,23 +9593,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480d2621d21756eb8ebb22ce432b26450ae670d208f07ffff", + "data": "434e5452505254590480d630d477df0f6e07f91e8949433310400b60dd3507ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "02000000000101673d5bbca76da706712756c51a521ad02e735ebcd33dde3f61a615cffb602c8700000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000236a21ff6f20411bc7edae051336c0c581ebeac8000a4390289d2ca70960fa50db2a70d158bc052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "020000000001012bf41b5b20cc150647aacd5020b3a1b707d3fb13e5e428d3687f2ce64096877b0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000236a215169fbeea60c9864d21a2671087cf6509cde7a5985eab95d76ca13d34b6cd7008258bc052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "flags": 7, "memo": "ffff" } @@ -9677,13 +9618,13 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti } ``` -### Compose Dispense [GET /v2/addresses/{address}/compose/dispense{?dispenser}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] +### Compose Dispense [GET /v2/addresses/{address}/compose/dispense{?dispenser}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to send BTC to a dispenser. + Parameters - + address: `bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa` (str, required) - The dispenser that will be receiving the asset + quantity: `1000` (int, required) - The quantity of BTC to send (in satoshis, hence integer) + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9725,9 +9666,9 @@ Composes a transaction to send BTC to a dispenser. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` - + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + use_utxos_with_balances (bool, optional) - Use UTXO with balances + Default: `False` - + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -9740,8 +9681,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "quantity": 1000 }, "name": "dispense", @@ -9750,7 +9691,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949812619, "btc_fee": 14381, - "rawtransaction": "02000000000101e636303a873dcef54d7de9aa2af7c6eba3d2db3a0db88c259eeb62884461a52f03000000160014d2621d21756eb8ebb22ce432b26450ae670d208fffffffff03e803000000000000160014e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2000000000000000000c6a0adc4ca86eef93f50841298b25082701000000160014d2621d21756eb8ebb22ce432b26450ae670d208f02000000000000", + "rawtransaction": "02000000000101b5ee039444727c228f35e9c208bf7373e34d240942221db5ee97bf1a306046d003000000160014d630d477df0f6e07f91e8949433310400b60dd35ffffffff03e8030000000000001600143c9e235caa5be4be07a3dfbf730d21c096c653e200000000000000000c6a0ae8fe42d79e54765e9b2d8b25082701000000160014d630d477df0f6e07f91e8949433310400b60dd3502000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9762,12 +9703,12 @@ Composes a transaction to send BTC to a dispenser. } ``` -### Compose Fairminter [GET /v2/addresses/{address}/compose/fairminter{?asset}{&asset_parent}{&price}{&quantity_by_price}{&max_mint_per_tx}{&hard_cap}{&premint_quantity}{&start_block}{&end_block}{&soft_cap}{&soft_cap_deadline_block}{&minted_asset_commission}{&burn_payment}{&lock_description}{&lock_quantity}{&divisible}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] +### Compose Fairminter [GET /v2/addresses/{address}/compose/fairminter{?asset}{&asset_parent}{&price}{&quantity_by_price}{&max_mint_per_tx}{&hard_cap}{&premint_quantity}{&start_block}{&end_block}{&soft_cap}{&soft_cap_deadline_block}{&minted_asset_commission}{&burn_payment}{&lock_description}{&lock_quantity}{&divisible}{&description}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be issuing the asset + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be issuing the asset + asset: `MYASSET` (str, required) - The asset to issue + asset_parent (str, optional) - The parent asset of the asset to issue + Default: `` @@ -9841,9 +9782,9 @@ Composes a transaction to issue a new asset using the FairMinter protocol. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` - + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + use_utxos_with_balances (bool, optional) - Use UTXO with balances + Default: `False` - + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -9856,7 +9797,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9887,7 +9828,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985443, "btc_fee": 14557, - "rawtransaction": "020000000001019e8858a0cbb589a8d8d5b69862a7b6a3ac33ff311114fdc36a7fe9b27cd09e6f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000316a2f9f0dae530e4c2d83cc5b76667cb865f3c426c948aa34ddff60fa6e66025c62bab7ddcb6a1237be3e0a37741a99eeef23b9052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "02000000000101f94a34858f6216ab91942f2962dd5a888e4824b0fb03395484d045bed53428d80000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000316a2fa06d07855f57ad2eca0b372207b3d4ce15a16b0d1f95d679727d1933bac64c4e38649fe4b99c73651a71df87c7741623b9052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9921,12 +9862,12 @@ Composes a transaction to issue a new asset using the FairMinter protocol. } ``` -### Compose Fairmint [GET /v2/addresses/{address}/compose/fairmint{?asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] +### Compose Fairmint [GET /v2/addresses/{address}/compose/fairmint{?asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to mint a quantity of an asset using the FairMinter protocol. + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address that will be minting the asset + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be minting the asset + asset: `FAIRMINTC` (str, required) - The asset to mint + quantity: `1` (int, optional) - The quantity of the asset to mint (in satoshis, hence integer) + Default: `0` @@ -9970,9 +9911,9 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` - + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + use_utxos_with_balances (bool, optional) - Use UTXO with balances + Default: `False` - + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -9985,13 +9926,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -10003,7 +9944,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987028, "btc_fee": 12972, - "rawtransaction": "0200000000010113279095345a2f2ac96393d18fbf278be94aea081285a8b7626dc89b7d11f23f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000166a14f50858299126a56cacebad8bcc2eb8bde8c35f6254bf052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "0200000000010160bf483bfb75fd9aff99462c31a13a8dffe086ce6de938b617206815e38d0af60000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000166a14431570188731b14184fc873f882909c90af214c054bf052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -10017,15 +9958,15 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto } ``` -### Compose Attach [GET /v2/addresses/{address}/compose/attach{?asset}{&quantity}{&destination}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] +### Compose Attach [GET /v2/addresses/{address}/compose/attach{?asset}{&quantity}{&destination}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address from which the assets are attached + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) - + destination: `db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767:3` (str, optional) - The utxo to attach the assets to + + destination: `affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10067,9 +10008,9 @@ Composes a transaction to attach assets from an address to UTXO. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` - + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + use_utxos_with_balances (bool, optional) - Use UTXO with balances + Default: `False` - + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -10082,8 +10023,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767:3", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -10096,12 +10037,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e5452505254596462637274317132666c7530706b757564327873386c65737139756e76723239667a3036356a7730336136346d7c646230353531373664633534666438393539633761353661663535646636666535376337626337643161633564663363393466363436616334353733623736373a337c5843507c31303030", + "data": "434e5452505254596462637274317132776b64797a756666796b39676570647378756a6568706a73637379646e6e336767767537307c616666623438313266616261303838393433333738643339383838383562333566653137393634626531353337306362323833613038663634393563383833303a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918400, "btc_fee": 78600, - "rawtransaction": "020000000001066b9740003b749ea753f9d0b74a875c83c60667410c961203fa761dc7bdcb008f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffffd7606422e2d0ada7d99ccad4bcdb51dbe0c0d3a4d601253a9742899b5fb1292800000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff5975cc919095d0a390c024e7674d89beb25fe0fd759a73b8247d1a5e4e7e0c1f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff271e2d4f309e0a86df152fad193229530fa40288f2f4817d5289a3bcf2d221f200000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffffaacfa165e430871e4aac30fc62e6f07950866fa5e90ba26425aeed455236c2eb00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff389e7f52492ec0939d60faee8742c64336f492ed6bb50d8f983fb6d372d3cbb500000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff04e8030000000000006951210222ab349b8563f53461bed1c6278c3ee9156292f56c7a4608a2add91f6754f83a2102573836ca5bed8cddce8b8ec41112fabeede30072f363f52986c057c3d18c4fe2210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53aee8030000000000006951210222ab349b8563f53461ecd7c660cc69fc1f3dcbb93f3d4c48e1a88d522108f2012103042d22c619e0cdcd9f858c8f4047fab0fce0502af131ae61d4c304c2d18a4be5210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53aee8030000000000006951210308ab349b8563f53461b8849362c23ce47f47aefc6d3a1d4dd7c9eb67146c94232103324b47f32e83faaffcb2e8be2124cfd49ad33313c5579855e2a267f6e4bd78b9210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53ae406d22fc06000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000002000002000002000002000002000000000000", + "rawtransaction": "020000000001062ea2715c88439687e9a5ff953de075a8f14e66ef5dd3e11e6e02f4c09d460a060000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff875b3b180194df32dd19fa9503d98c50efaae911f6f667150073d0e293a2d4860000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffffd20d5edc36a6ae19fcb6427a85cc2989aedb154a44df36fcabe59e0a83c7104b0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffffd5a13b826bd404c64e6ac6f7e64f35f1762c1d8250e01d979ddb9b948c84bb1c0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff572ea89ef5b2eb4c6aef192ffebc64a3adb4cf84f192744333f4d1f8ed07bc5b0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffffd994dcbf7384a57c44b7563bab1a21bf09bd5696bc41187bd542221ec1bd6ee20000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff04e803000000000000695121034a53d463f8074cff8f62ebb7222c1c0f6cd9aadbff200c01c5833d621a3cf6dd2102b960e4c6250bc80798cab6b3ee86bea7e2475b6280720a36e80c8af4deaca88921026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c53aee803000000000000695121034a53d463f8074cff8f34efb532391d466697f58cb56d410390c36e634561b34c2102bf20a9d52a5f974ec48db7a5a6d7e3fee1435e26cd765b7ab10cdaa2d3a1fa8821026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c53aee803000000000000695121026053d463f8074cff8f3eb1e760621c0206ed91c3b76a4957a3fa565b7d5986842103dd139cb34f6ea077f2b9d5c097e2d0c9d1203c14f5453a4a896aec96ea94996b21026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c53ae406d22fc0600000016001453acd20b89492c54642d81b92cdc32862046ce7102000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10113,13 +10054,13 @@ Composes a transaction to attach assets from an address to UTXO. } ``` -### Compose Detach [GET /v2/utxos/{utxo}/compose/detach{?destination}{&asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxo_with_balances}{&exclude_utxo_with_balances}{&verbose}{&show_unconfirmed}] +### Compose Detach [GET /v2/utxos/{utxo}/compose/detach{?destination}{&asset}{&quantity}{&encoding}{&fee_per_kb}{®ular_dust_size}{&multisig_dust_size}{&pubkeys}{&allow_unconfirmed_inputs}{&exact_fee}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&disable_utxo_locks}{&p2sh_pretx_txid}{&segwit}{&confirmation_target}{&exclude_utxos}{&inputs_set}{&return_psbt}{&return_only_data}{&extended_tx_info}{&old_style_api}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&verbose}{&show_unconfirmed}] Composes a transaction to detach assets from UTXO to an address. + Parameters - + utxo: `39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to detach the assets to + + utxo: `ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to detach the assets to + asset: `XCP` (str, required) - The asset or subasset to detach + quantity: `1000` (int, required) - The quantity of the asset to detach (in satoshis, hence integer) + encoding (str, optional) - The encoding method to use @@ -10162,9 +10103,9 @@ Composes a transaction to detach assets from UTXO to an address. + Default: `False` + old_style_api (bool, optional) - (API v1 only) Returns a single hex-encoded string instead of an array + Default: `False` - + use_utxo_with_balances (bool, optional) - Use UTXO with balances + + use_utxos_with_balances (bool, optional) - Use UTXO with balances + Default: `False` - + exclude_utxo_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -10177,8 +10118,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -10191,12 +10132,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964333965653735326233313262373733323931303561363861623335633636376238303330376636613564326232303434396232366438656263316534313863323a307c62637274317132666c7530706b757564327873386c65737139756e76723239667a3036356a7730336136346d7c5843507c31303030", + "data": "434e54525052545964616539623565373039643434363366653765626466343131633439313165313266646539393439373434306636623965366430626432653566663135323935623a307c62637274317132776b64797a756666796b39676570647378756a6568706a73637379646e6e336767767537307c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030275, "btc_fee": 46725, - "rawtransaction": "02000000000103d9d64e30e4cddc4ae711b103673ff2ef778b8b76a0ac6f4837a710f94ff2b80d01000000160014683c2d33034856d0b1db09c7b7e1773ae80add54ffffffff9ab86aed71e4c98fe94801572d8dd97a70c6ab07ec9052ddf5b44bcbbff0dad200000000160014683c2d33034856d0b1db09c7b7e1773ae80add54ffffffff12ac675882dc75787ee844b16a29500ca2d9d580928628d0e631bd8cad66a0df01000000160014683c2d33034856d0b1db09c7b7e1773ae80add54ffffffff04e8030000000000006951210299cdde3a3c495e64c938ac002b937eab26380991760805e8a9a35e27004c13c321021fb8e637e1d21d7b95419c3ccf53d234602cf32dacd2f131e09781b4a0227c272102e724a18b424760c2ae31273f48b5a06c7a2a3bccc4115ff383a3e80b8dbdbd6053aee8030000000000006951210299cdde3a3c495e64c938a75c2c9578fb206b02c3765002a3f8f215620108406e21034fecf265a28c0b38c7448677c70c87707723e776be92a13ab6d985bbf77a3dbc2102e724a18b424760c2ae31273f48b5a06c7a2a3bccc4115ff383a3e80b8dbdbd6053aee80300000000000069512102b3cdde3a3c495e64c96cac5878c224e24c196adc755a02ef9a916716307972f5210229808755d2e77e4da376fe04ff60e203061a9218c8e09303d0a3b58dc2104ad02102e724a18b424760c2ae31273f48b5a06c7a2a3bccc4115ff383a3e80b8dbdbd6053aec3770b2701000000160014683c2d33034856d0b1db09c7b7e1773ae80add5402000002000002000000000000", + "rawtransaction": "02000000000103ba847062b0903b9fccc451378ce19ea4f04d786f938502bed3c9b48eba351337010000001600149e3d73cf180ab4652f14e45d6dd17012e1442b00fffffffffce41e62934b44d48ddc1fc02758f3d1f4898f0fb9bd9d9bfa9258eed64bad5f000000001600149e3d73cf180ab4652f14e45d6dd17012e1442b00ffffffffe725dd965df10a780a6d4fab6722ab9bbe0cc75862621fae38a6c22b5f52a401010000001600149e3d73cf180ab4652f14e45d6dd17012e1442b00ffffffff04e8030000000000006951210394b23fa5321e236b5f9911eea827ac480b5b4160bff8810db7bbdd6b405d64d8210262dfb957d1153681a831349d36375941f8881095bf5281a956844ed8a2dc2b3c2102cb42db2ff4f01f61ce4d4f401f6af5315110c4ff80e640b55fd27915d822287253aee8030000000000006951210394b23fa5321e236b5f9942eea423ff1c09594131e9f68742b3bd987a134830bf21022185ec4d9f5961d6b46b3f9c3722040bb4c44dc4e3128dec57ce528aa8827a6f2102cb42db2ff4f01f61ce4d4f401f6af5315110c4ff80e640b55fd27915d822287253aee80300000000000069512103beb23fa5321e236b5f9a17fde472a95164282878bafc870ed1deea0e2239029e210356ee8834e52c07b0cd0006fb52526078ccb127a18b62e79f34bd2beec6ec49ac2102cb42db2ff4f01f61ce4d4f401f6af5315110c4ff80e640b55fd27915d822287253aec3770b27010000001600149e3d73cf180ab4652f14e45d6dd17012e1442b0002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10265,8 +10206,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 100000000000, @@ -10274,16 +10215,16 @@ Returns the valid assets "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730147494, - "last_issuance_block_time": 1730147494, + "first_issuance_block_time": 1730150139, + "last_issuance_block_time": 1730150139, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", - "owner": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", + "issuer": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", + "owner": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", "divisible": true, "locked": false, "supply": 100000000000, @@ -10291,16 +10232,16 @@ Returns the valid assets "first_issuance_block_index": 198, "last_issuance_block_index": 198, "confirmed": true, - "first_issuance_block_time": 1730147479, - "last_issuance_block_time": 1730147479, + "first_issuance_block_time": 1730150124, + "last_issuance_block_time": 1730150124, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 10000000000, @@ -10308,16 +10249,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730147326, - "last_issuance_block_time": 1730147334, + "first_issuance_block_time": 1730149979, + "last_issuance_block_time": 1730149986, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", - "owner": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "issuer": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "owner": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "divisible": true, "locked": false, "supply": 100000000000, @@ -10325,16 +10266,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730147321, - "last_issuance_block_time": 1730147321, + "first_issuance_block_time": 1730149974, + "last_issuance_block_time": 1730149974, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 100000000000, @@ -10342,8 +10283,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730147287, - "last_issuance_block_time": 1730147287, + "first_issuance_block_time": 1730149941, + "last_issuance_block_time": 1730149941, "supply_normalized": "1000.00000000" } ], @@ -10371,8 +10312,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 10000000000, @@ -10380,8 +10321,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730147176, - "last_issuance_block_time": 1730147187, + "first_issuance_block_time": 1730149829, + "last_issuance_block_time": 1730149841, "supply_normalized": "100.00000000" } } @@ -10412,7 +10353,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10420,14 +10361,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10435,7 +10376,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -10453,7 +10394,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -10465,7 +10406,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -10519,9 +10460,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", + "tx_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", "block_index": 184, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10536,7 +10477,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730147353, + "block_time": 1730150014, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10562,9 +10503,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", "block_index": 207, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10579,7 +10520,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730147530, + "block_time": 1730150162, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10605,9 +10546,9 @@ Returns the orders of an asset }, { "tx_index": 57, - "tx_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", + "tx_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", "block_index": 192, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10622,7 +10563,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730147455, + "block_time": 1730150102, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10648,9 +10589,9 @@ Returns the orders of an asset }, { "tx_index": 59, - "tx_hash": "8c2d59b10cf446779609dae007a9bc91d0a00c457b17a0b279920ccbc776425e", + "tx_hash": "13047cb4dab1b0ba2151ae8e16379cc2b16fb4bb8f63e8c0f205359d365a62a2", "block_index": 193, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10665,7 +10606,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730147459, + "block_time": 1730150106, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10691,9 +10632,9 @@ Returns the orders of an asset }, { "tx_index": 74, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10708,7 +10649,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730147530, + "block_time": 1730150162, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10770,13 +10711,13 @@ Returns the orders of an asset { "result": [ { - "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "tx0_index": 51, - "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 54, - "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", - "tx1_address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "tx1_address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10790,7 +10731,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730147430, + "block_time": 1730150087, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10810,13 +10751,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", "tx0_index": 51, - "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 52, - "tx1_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", - "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "tx1_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10830,7 +10771,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730147427, + "block_time": 1730150084, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10850,13 +10791,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962_9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", + "id": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97_caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", "tx0_index": 49, - "tx0_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 50, - "tx1_hash": "9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", - "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "tx1_hash": "caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", + "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10870,7 +10811,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730147353, + "block_time": 1730150014, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10950,20 +10891,20 @@ Returns the credits of an asset "result": [ { "block_index": 194, - "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", + "event": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147463, + "block_time": 1730150109, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -10971,20 +10912,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "f758697b62ece0df11283b89756ced9214a9f2bc83f7f4e02b74736099dab0d7", + "event": "e85bdf707fe349f0e40e559b6a1f20a10a1e0f329a969174ed358ea1e715df9d", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147187, + "block_time": 1730149841, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -10992,20 +10933,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "830a7b9e1f16656de3d506078bbeb7daa4cac5f7a80eb58cd6d4e749dea4b48c", + "event": "9ab485c03158b0379a31a0ed1f790c058cddbccea9db255dd3cfcb37da360985", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147183, + "block_time": 1730149837, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -11013,20 +10954,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", + "event": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147183, + "block_time": 1730149837, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -11038,16 +10979,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "830a7b9e1f16656de3d506078bbeb7daa4cac5f7a80eb58cd6d4e749dea4b48c", + "event": "9ab485c03158b0379a31a0ed1f790c058cddbccea9db255dd3cfcb37da360985", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147183, + "block_time": 1730149837, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -11107,12 +11048,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "utxo": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "utxo_address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "utxo": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "utxo_address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -11124,16 +11065,16 @@ Returns the debits of an asset }, { "block_index": 207, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "event": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147530, + "block_time": 1730150162, "asset_info": { "divisible": true, "asset_longname": null, @@ -11145,16 +11086,16 @@ Returns the debits of an asset }, { "block_index": 206, - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "event": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147525, + "block_time": 1730150158, "asset_info": { "divisible": true, "asset_longname": null, @@ -11166,16 +11107,16 @@ Returns the debits of an asset }, { "block_index": 205, - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "4f72d5bee6053f9591d332772cf67ec1874d67118be7049fac7da1ed5b6f83b8", + "event": "5cc312fce3a8f8432aea553285ab698a3d10185eafdb52df5723ee3ed378d751", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147521, + "block_time": 1730150154, "asset_info": { "divisible": true, "asset_longname": null, @@ -11187,16 +11128,16 @@ Returns the debits of an asset }, { "block_index": 204, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "event": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147517, + "block_time": 1730150151, "asset_info": { "divisible": true, "asset_longname": null, @@ -11276,14 +11217,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "f758697b62ece0df11283b89756ced9214a9f2bc83f7f4e02b74736099dab0d7", + "tx_hash": "e85bdf707fe349f0e40e559b6a1f20a10a1e0f329a969174ed358ea1e715df9d", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -11298,20 +11239,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730147187, + "block_time": 1730149841, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "830a7b9e1f16656de3d506078bbeb7daa4cac5f7a80eb58cd6d4e749dea4b48c", + "tx_hash": "9ab485c03158b0379a31a0ed1f790c058cddbccea9db255dd3cfcb37da360985", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -11326,20 +11267,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730147183, + "block_time": 1730149837, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", + "tx_hash": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -11354,20 +11295,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730147180, + "block_time": 1730149834, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", + "tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -11382,7 +11323,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730147176, + "block_time": 1730149829, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11416,10 +11357,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11427,7 +11368,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -11440,10 +11381,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 73, - "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "block_index": 206, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11451,7 +11392,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730147525, + "block_time": 1730150158, "asset_info": { "divisible": true, "asset_longname": null, @@ -11464,10 +11405,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 72, - "tx_hash": "4f72d5bee6053f9591d332772cf67ec1874d67118be7049fac7da1ed5b6f83b8", + "tx_hash": "5cc312fce3a8f8432aea553285ab698a3d10185eafdb52df5723ee3ed378d751", "block_index": 205, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11475,7 +11416,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730147521, + "block_time": 1730150154, "asset_info": { "divisible": true, "asset_longname": null, @@ -11488,10 +11429,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 71, - "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "block_index": 204, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11499,7 +11440,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730147517, + "block_time": 1730150151, "asset_info": { "divisible": true, "asset_longname": null, @@ -11512,10 +11453,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 70, - "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", + "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", "block_index": 203, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11523,7 +11464,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730147502, + "block_time": 1730150148, "asset_info": { "divisible": true, "asset_longname": null, @@ -11574,9 +11515,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11585,7 +11526,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11595,7 +11536,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -11611,9 +11552,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "0f8b14713e0204ae9ff12c34e2165f2d60b09ca423e678e8a5330a4016d691d1", + "tx_hash": "4473f2dbb7eb09b4240bbb4d13cf34b75bb23352b2c27da502c37866a024f217", "block_index": 142, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11622,7 +11563,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "origin": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11632,7 +11573,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147253, + "block_time": 1730149918, "asset_info": { "divisible": true, "asset_longname": null, @@ -11648,9 +11589,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "aa2eb896e9aab9ff1080957160ee3e8e9ccdfe2e0d1487c2aea504a2fbd46ff9", + "tx_hash": "3075db3fd894fb4982759d08c57ccf5915c726f7f2c2de2eb1cb9b695ac565b3", "block_index": 150, - "source": "mg2iDq9hHHgarJckVLMgpwt5YE7WjvUVPs", + "source": "mxVik5RWM3aheqn4VPBhE4NkDjFECW4vt5", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11658,10 +11599,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "c1af00f61ee9d962dec73cc4efbdaaefc68742f334d37368fddf8dfefe137210", - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "last_status_tx_hash": "6d03e19b70659ea140a7f92d319e95dd4815b2ece8393b26b1c9a0d7ba77f279", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 0, - "last_status_tx_source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "last_status_tx_source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11669,7 +11610,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147296, + "block_time": 1730149949, "asset_info": { "divisible": true, "asset_longname": null, @@ -11685,18 +11626,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "last_status_tx_hash": null, - "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11706,7 +11647,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -11731,7 +11672,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - The address to return + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -11744,9 +11685,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11755,7 +11696,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11765,7 +11706,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -11815,7 +11756,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -11823,7 +11764,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11832,7 +11773,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -11840,7 +11781,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11849,7 +11790,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -11857,7 +11798,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11866,7 +11807,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -11903,27 +11844,27 @@ Returns the dispenses of an asset { "tx_index": 75, "dispense_index": 0, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "last_status_tx_hash": null, - "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11938,7 +11879,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -11952,27 +11893,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "d2daf0bfcb4bb4f5dd5290ec07abc6707ad98d2d570148e98fc9e471ed6ab89a", + "tx_hash": "5fad4bd6ee5892fa9b9dbdb90f8f89f4d1f35827c01fdc8dd4444b93621ee4fc", "block_index": 147, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "destination": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "destination": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "last_status_tx_hash": null, - "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11987,7 +11928,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730147283, + "block_time": 1730149937, "asset_info": { "divisible": true, "asset_longname": null, @@ -12001,19 +11942,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", + "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12021,7 +11962,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12036,7 +11977,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -12050,19 +11991,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", + "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", "block_index": 140, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12070,7 +12011,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12085,7 +12026,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147244, + "block_time": 1730149900, "asset_info": { "divisible": true, "asset_longname": null, @@ -12159,10 +12100,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", + "tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12187,7 +12128,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730147187, + "block_time": 1730149841, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12227,22 +12168,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "f758697b62ece0df11283b89756ced9214a9f2bc83f7f4e02b74736099dab0d7", + "tx_hash": "e85bdf707fe349f0e40e559b6a1f20a10a1e0f329a969174ed358ea1e715df9d", "tx_index": 13, "block_index": 125, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", - "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147187, + "block_time": 1730149841, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -12251,22 +12192,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "830a7b9e1f16656de3d506078bbeb7daa4cac5f7a80eb58cd6d4e749dea4b48c", + "tx_hash": "9ab485c03158b0379a31a0ed1f790c058cddbccea9db255dd3cfcb37da360985", "tx_index": 12, "block_index": 124, - "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", - "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", + "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147183, + "block_time": 1730149837, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -12275,22 +12216,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", + "tx_hash": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147180, + "block_time": 1730149834, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -12309,7 +12250,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue` (str, required) - The address of the mints to return + + address: `bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - The address of the mints to return + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -12328,22 +12269,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", + "tx_hash": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147180, + "block_time": 1730149834, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -12396,9 +12337,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", + "tx_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", "block_index": 184, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12413,7 +12354,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730147353, + "block_time": 1730150014, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12439,9 +12380,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "tx_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", "block_index": 187, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12456,7 +12397,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730147427, + "block_time": 1730150084, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12482,9 +12423,9 @@ Returns all the orders }, { "tx_index": 54, - "tx_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "tx_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "block_index": 188, - "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12499,7 +12440,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730147430, + "block_time": 1730150087, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12525,9 +12466,9 @@ Returns all the orders }, { "tx_index": 57, - "tx_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", + "tx_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", "block_index": 192, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12542,7 +12483,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730147455, + "block_time": 1730150102, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12568,9 +12509,9 @@ Returns all the orders }, { "tx_index": 59, - "tx_hash": "8c2d59b10cf446779609dae007a9bc91d0a00c457b17a0b279920ccbc776425e", + "tx_hash": "13047cb4dab1b0ba2151ae8e16379cc2b16fb4bb8f63e8c0f205359d365a62a2", "block_index": 193, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12585,7 +12526,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730147459, + "block_time": 1730150106, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12620,7 +12561,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f` (str, required) - The hash of the transaction that created the order + + order_hash: `affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830` (str, required) - The hash of the transaction that created the order + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -12632,9 +12573,9 @@ Returns the information of an order { "result": { "tx_index": 74, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12649,7 +12590,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730147530, + "block_time": 1730150162, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12681,7 +12622,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2` (str, required) - The hash of the transaction that created the order + + order_hash: `bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e` (str, required) - The hash of the transaction that created the order + status (enum[str], optional) - The status of the order matches to return + Default: `all` + Members @@ -12708,13 +12649,13 @@ Returns the order matches of an order { "result": [ { - "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "tx0_index": 51, - "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 54, - "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", - "tx1_address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "tx1_address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12728,7 +12669,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730147430, + "block_time": 1730150087, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12748,13 +12689,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", "tx0_index": 51, - "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 52, - "tx1_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", - "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "tx1_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12768,7 +12709,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730147427, + "block_time": 1730150084, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12798,7 +12739,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2` (str, required) - The hash of the transaction that created the order + + order_hash: `bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e` (str, required) - The hash of the transaction that created the order + cursor (str, optional) - The last index of the resolutions to return + Default: `None` + limit: `5` (int, optional) - The maximum number of resolutions to return @@ -12817,15 +12758,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", + "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", "block_index": 187, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "btc_amount": 2000, - "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", "status": "valid", "confirmed": true, - "block_time": 1730147427, + "block_time": 1730150084, "btc_amount_normalized": "0.00002000" } ], @@ -12869,9 +12810,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "tx_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", "block_index": 187, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12889,7 +12830,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730147427, + "block_time": 1730150084, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12915,9 +12856,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "tx_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "block_index": 188, - "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12935,7 +12876,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730147430, + "block_time": 1730150087, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12961,9 +12902,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", + "tx_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", "block_index": 184, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12981,7 +12922,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730147353, + "block_time": 1730150014, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13007,9 +12948,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", "block_index": 207, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -13027,7 +12968,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730147530, + "block_time": 1730150162, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13053,9 +12994,9 @@ Returns the orders to exchange two assets }, { "tx_index": 57, - "tx_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", + "tx_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", "block_index": 192, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13073,7 +13014,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730147455, + "block_time": 1730150102, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13136,13 +13077,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "tx0_index": 51, - "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 54, - "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", - "tx1_address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "tx1_address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13159,7 +13100,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730147430, + "block_time": 1730150087, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13179,13 +13120,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", "tx0_index": 51, - "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 52, - "tx1_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", - "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "tx1_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13202,7 +13143,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730147427, + "block_time": 1730150084, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13222,13 +13163,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962_9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", + "id": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97_caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", "tx0_index": 49, - "tx0_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 50, - "tx1_hash": "9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", - "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "tx1_hash": "caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", + "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13245,7 +13186,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730147353, + "block_time": 1730150014, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13303,13 +13244,13 @@ Returns all the order matches { "result": [ { - "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "tx0_index": 51, - "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 54, - "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", - "tx1_address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "tx1_address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13323,7 +13264,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730147430, + "block_time": 1730150087, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13343,13 +13284,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", "tx0_index": 51, - "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 52, - "tx1_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", - "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "tx1_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13363,7 +13304,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730147427, + "block_time": 1730150084, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13383,13 +13324,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962_9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", + "id": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97_caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", "tx0_index": 49, - "tx0_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 50, - "tx1_hash": "9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", - "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "tx1_hash": "caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", + "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13403,7 +13344,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730147353, + "block_time": 1730150014, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13571,66 +13512,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "9e48aa492c822fb8f10573455eaf92d7238d1c56139fd15c3731cd53d0c10e6e", + "tx_hash": "1d67669f030d7a8d4afa14aaefef4fe7d507c15946907c1ec3b5688d4f587ce5", "block_index": 121, - "source": "bcrt1qutqyvw6qfn824wrr8kc5u5lhtyml7s9fg92uds", + "source": "bcrt1qvpsk2579x0my98dh6s9fxhlmk9u454p63anff9", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730147172, + "block_time": 1730149826, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "422452cf31c8190bad76ee05114c8fef9cfc2bff2289189668e02bd227432259", + "tx_hash": "a292ad6d93325e6d1548ace7936f98d323f34deb8b7c87d779aa11c52d286639", "block_index": 120, - "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730147169, + "block_time": 1730149823, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "83350ea2ef8988a3e3c47e9bb475d84937d37345db027a863e145ec516e24496", + "tx_hash": "2703d2682ac050e52bf9041850ca3ef9cc6ce768e820a79f27d7641ee6ca55b3", "block_index": 119, - "source": "bcrt1qh2m2jullqmwfxs3vllx9krdjz6qgz0r4x3jc8s", + "source": "bcrt1quy9exauh6h8xraqsj4qexjw7xn47yevhezvy27", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730147165, + "block_time": 1730149818, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "f2ce999766ff3d70a5dd5bcc7a744b6f9b64861ee7a2abf190bc84f85562267a", + "tx_hash": "fad67a3a3ab51ed384adef0aaaa2ceb87808d61441538179c49ece39620c16fb", "block_index": 118, - "source": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", + "source": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730147161, + "block_time": 1730149815, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "52dda604707387f581bee24b3be851cf8da91a4e256837de0021558ac7fc8970", + "tx_hash": "d5167d517bee36d60dc07daf8226611a10a2550ba7049bbbed02570cea1c454c", "block_index": 117, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730147158, + "block_time": 1730149812, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13675,9 +13616,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13686,7 +13627,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13696,7 +13637,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -13712,9 +13653,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "0f8b14713e0204ae9ff12c34e2165f2d60b09ca423e678e8a5330a4016d691d1", + "tx_hash": "4473f2dbb7eb09b4240bbb4d13cf34b75bb23352b2c27da502c37866a024f217", "block_index": 142, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13723,7 +13664,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "origin": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13733,7 +13674,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147253, + "block_time": 1730149918, "asset_info": { "divisible": true, "asset_longname": null, @@ -13749,9 +13690,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "aa2eb896e9aab9ff1080957160ee3e8e9ccdfe2e0d1487c2aea504a2fbd46ff9", + "tx_hash": "3075db3fd894fb4982759d08c57ccf5915c726f7f2c2de2eb1cb9b695ac565b3", "block_index": 150, - "source": "mg2iDq9hHHgarJckVLMgpwt5YE7WjvUVPs", + "source": "mxVik5RWM3aheqn4VPBhE4NkDjFECW4vt5", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13759,10 +13700,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "c1af00f61ee9d962dec73cc4efbdaaefc68742f334d37368fddf8dfefe137210", - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "last_status_tx_hash": "6d03e19b70659ea140a7f92d319e95dd4815b2ece8393b26b1c9a0d7ba77f279", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 0, - "last_status_tx_source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "last_status_tx_source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13770,7 +13711,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147296, + "block_time": 1730149949, "asset_info": { "divisible": true, "asset_longname": null, @@ -13786,9 +13727,9 @@ Returns all dispensers }, { "tx_index": 62, - "tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", + "tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", "block_index": 197, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13797,7 +13738,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13807,11 +13748,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147475, + "block_time": 1730150120, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -13823,18 +13764,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "last_status_tx_hash": null, - "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13844,7 +13785,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -13869,7 +13810,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00` (str, required) - The hash of the dispenser to return + + dispenser_hash: `40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e` (str, required) - The hash of the dispenser to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -13881,9 +13822,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13892,7 +13833,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13902,7 +13843,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -13924,7 +13865,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00` (str, required) - The hash of the dispenser to return + + dispenser_hash: `40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e` (str, required) - The hash of the dispenser to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -13944,19 +13885,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", + "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13964,7 +13905,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13979,7 +13920,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -13993,19 +13934,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", + "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", "block_index": 140, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14013,7 +13954,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14028,7 +13969,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147244, + "block_time": 1730149900, "asset_info": { "divisible": true, "asset_longname": null, @@ -14070,20 +14011,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", + "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", "block_index": 154, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730147310, + "block_time": 1730149962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -14108,7 +14049,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895` (str, required) - The hash of the dividend to return + + dividend_hash: `930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a` (str, required) - The hash of the dividend to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -14120,20 +14061,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", + "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", "block_index": 154, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730147310, + "block_time": 1730149962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -14155,7 +14096,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a` (str, required) - The hash of the dividend distribution to return + cursor (str, optional) - The last index of the credit to return + Default: `None` + limit: `5` (int, optional) - The maximum number of credit to return @@ -14178,12 +14119,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", + "event": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", "tx_index": 41, - "utxo": "f1a36cd2b5c4271fcf32b8178c8a21d44379539553ab6b6dc0a131b992ef4b8d:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "utxo": "2febd503221c1f67a8a6bc91b81c87828e7803982b872fdb5655d68b75d16b04:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "confirmed": true, - "block_time": 1730147310, + "block_time": 1730149962, "asset_info": { "divisible": true, "asset_longname": null, @@ -14195,16 +14136,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qcz42hsauvvj7zvqys6awauwvtlxm66sq2gnk5v", + "address": "bcrt1qg89hz5l72ck62vsg34dpc2fvtfgmuhna0e0t4c", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", + "event": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147310, + "block_time": 1730149962, "asset_info": { "divisible": true, "asset_longname": null, @@ -14250,27 +14191,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", - "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", + "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", + "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", "transaction_count": 1, - "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", - "block_time": 1730147539 + "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", + "block_time": 1730150176 }, "tx_hash": null, "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 674, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75 }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 673, @@ -14279,14 +14220,14 @@ Returns all events "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -14297,9 +14238,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 672, @@ -14308,9 +14249,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "status": 0, - "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "asset_info": { "divisible": true, "asset_longname": null, @@ -14320,24 +14261,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -14347,9 +14288,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 670, @@ -14377,15 +14318,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", - "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", + "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", + "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", "transaction_count": 1, - "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", - "block_time": 1730147539 + "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", + "block_time": 1730150176 }, "tx_hash": null, "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } } ``` @@ -14463,16 +14404,16 @@ Returns the events filtered by event name "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -14482,9 +14423,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 669, @@ -14494,12 +14435,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 1500000000, "tx_index": 75, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "block_time": 1730147539, + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -14509,9 +14450,9 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 666, @@ -14521,39 +14462,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 1500000000, "tx_index": 75, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "block_time": 1730147539, + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_time": 1730150176, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 656, "event": "CREDIT", "params": { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "block_index": 207, "calling_function": "cancel order", - "event": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "event": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730147530, + "block_time": 1730150162, "asset_info": { "divisible": true, "asset_longname": null, @@ -14563,24 +14504,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00005000" }, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_time": 1730147530 + "block_time": 1730150162 }, { "event_index": 645, "event": "CREDIT", "params": { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "block_index": 206, "calling_function": "mpma send", - "event": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "event": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "quantity": 10, "tx_index": 73, "utxo": null, "utxo_address": null, - "block_time": 1730147525, + "block_time": 1730150158, "asset_info": { "divisible": true, "asset_longname": null, @@ -14590,9 +14531,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "block_index": 206, - "block_time": 1730147525 + "block_time": 1730150158 } ], "next_cursor": 644, @@ -14648,27 +14589,27 @@ Returns all the dispenses { "tx_index": 75, "dispense_index": 0, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "last_status_tx_hash": null, - "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14683,7 +14624,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -14697,19 +14638,19 @@ Returns all the dispenses { "tx_index": 63, "dispense_index": 0, - "tx_hash": "3eaa0359313df169f4e9a098ef8e0ab8cdd5939ab338dca7fa670dbbfb3c0111", + "tx_hash": "541f0fb85b7dbc11dc47a5535cee583b4066f143b1409c77dd9d39d0d60f6af8", "block_index": 197, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", + "dispenser_tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14717,7 +14658,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14732,11 +14673,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147475, + "block_time": 1730150120, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -14746,27 +14687,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "d2daf0bfcb4bb4f5dd5290ec07abc6707ad98d2d570148e98fc9e471ed6ab89a", + "tx_hash": "5fad4bd6ee5892fa9b9dbdb90f8f89f4d1f35827c01fdc8dd4444b93621ee4fc", "block_index": 147, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "destination": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "destination": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "last_status_tx_hash": null, - "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14781,7 +14722,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730147283, + "block_time": 1730149937, "asset_info": { "divisible": true, "asset_longname": null, @@ -14795,19 +14736,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", + "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14815,7 +14756,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14830,7 +14771,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -14844,19 +14785,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", + "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", "block_index": 140, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14864,7 +14805,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14879,7 +14820,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147244, + "block_time": 1730149900, "asset_info": { "divisible": true, "asset_longname": null, @@ -14921,10 +14862,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -14932,7 +14873,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -14945,10 +14886,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -14956,11 +14897,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -14969,10 +14910,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 73, - "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "block_index": 206, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14980,7 +14921,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730147525, + "block_time": 1730150158, "asset_info": { "divisible": true, "asset_longname": null, @@ -14993,10 +14934,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 73, - "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "block_index": 206, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15004,11 +14945,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730147525, + "block_time": 1730150158, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -15017,10 +14958,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 73, - "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "block_index": 206, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -15028,11 +14969,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730147525, + "block_time": 1730150158, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -15083,14 +15024,14 @@ Returns all the issuances "result": [ { "tx_index": 68, - "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", + "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -15105,20 +15046,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730147494, + "block_time": 1730150139, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 64, - "tx_hash": "0a9d770a1093b62fffeae30fc71fdcfbe41e571d6df0b5586d3e4e3368f6b254", + "tx_hash": "b5544f95147a8700f9db7a99f2713173f6cf13457b75605298197c154da0fcda", "msg_index": 0, "block_index": 198, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", - "issuer": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", + "source": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", + "issuer": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", "transfer": false, "callable": false, "call_date": 0, @@ -15133,20 +15074,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730147479, + "block_time": 1730150124, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "ecedf49fefa307a78131f6b1d7f52c17b4ececb2e16f6ace25f1e6735fe7090f", + "tx_hash": "bfaad85954beda99abea4a7010a07447599bbf6f22ea125e30ed294c7f5218f0", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -15161,20 +15102,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730147339, + "block_time": 1730149990, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "4ef076610716e47917b7d9a1703541120e00b089e1da54ae1a615438306de745", + "tx_hash": "05689fcc47dfef00b3da5ab26a1b46ea1887fa933a6f6903acb19faf207eca1f", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -15189,20 +15130,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730147334, + "block_time": 1730149986, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "4a865f981bedcaa6f59c08c2b25f1e47c0c1db264cac059bd89ad1011fd381e0", + "tx_hash": "b9a6fb371b7caf85edb70d0c373d91aad170224779eb8f3effcbeec5ea512deb", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -15217,7 +15158,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730147330, + "block_time": 1730149983, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15232,7 +15173,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e` (str, required) - The hash of the transaction to return + + tx_hash: `0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15244,14 +15185,14 @@ Returns the issuances of a block { "result": { "tx_index": 68, - "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", + "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -15266,7 +15207,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730147494, + "block_time": 1730150139, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15298,16 +15239,16 @@ Returns all sweeps "result": [ { "tx_index": 60, - "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", + "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", "block_index": 194, - "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730147463, + "block_time": 1730150109, "fee_paid_normalized": "0.00600000" } ], @@ -15321,7 +15262,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68` (str, required) - The hash of the transaction to return + + tx_hash: `d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15334,16 +15275,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 60, - "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", + "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", "block_index": 194, - "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730147463, + "block_time": 1730150109, "fee_paid_normalized": "0.00600000" } ], @@ -15377,9 +15318,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e", + "tx_hash": "e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc", "block_index": 138, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15387,14 +15328,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730147237, + "block_time": 1730149891, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "18aaf369ee7b22607393e152af0efd92979dee2ef001c12f68449f3dd6a3c100", + "tx_hash": "6bb6a779b50b7a5f5e7f2eeb16d14bf3280a3bb411704fe10c8e4937e68590ac", "block_index": 137, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15402,7 +15343,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730147234, + "block_time": 1730149887, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15416,7 +15357,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e` (str, required) - The hash of the transaction to return + + tx_hash: `e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15428,9 +15369,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e", + "tx_hash": "e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc", "block_index": 138, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15438,7 +15379,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730147237, + "block_time": 1730149891, "fee_fraction_int_normalized": "0.00000000" } } @@ -15475,10 +15416,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "0998f235a3feba0746e143f431c1f698ca50ae3f8745598a4671168e9c151cef", + "tx_hash": "93dee74a73fd75a2b609a0b4cd62839d0d254025bf44bcb5513cad7d35bfa6f3", "tx_index": 42, "block_index": 155, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15503,7 +15444,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730147313, + "block_time": 1730149965, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15512,10 +15453,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", + "tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15540,7 +15481,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730147227, + "block_time": 1730149878, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15552,10 +15493,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", + "tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15580,7 +15521,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730147211, + "block_time": 1730149865, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15592,10 +15533,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "ef648a52d64c60ed013aa174ae6a48421d17f923b88d3aba2e05b58ef0c76886", + "tx_hash": "0e2c46ac44f390ff6b06d99469bca85858fa064feb09b8c2ef799039d36dfa3f", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15620,7 +15561,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730147206, + "block_time": 1730149860, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15632,10 +15573,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", + "tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15660,7 +15601,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730147187, + "block_time": 1730149841, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15729,22 +15670,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", + "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147231, + "block_time": 1730149883, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -15753,22 +15694,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "a9ec529d035361f0f926d689b0a23cdf4fef412a2be429d5399f71ab7fbd086a", + "tx_hash": "fda34c124d140677eccc10bdff0dc1cac5550cd210cdabf0ec3cac7f5621c72d", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147222, + "block_time": 1730149874, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -15777,22 +15718,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "93c5f036c8e324dda6f5e9e84e15f096906d0974ea4003bdf51cd4bd013c3ad4", + "tx_hash": "1a79feb1b1b318e55f4b6836518ac7315c78fc94029d4bfbe2e66f0341f3d69d", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147218, + "block_time": 1730149871, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -15801,22 +15742,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "24ba6e5e817679a1c81bd41098b8ea21134e6fd0493e343e7ce171576bae5ef2", + "tx_hash": "52aa1faf5394a028bd06452893acd47a19a81f90b3984c7546cf5c0fa205f190", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147215, + "block_time": 1730149868, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -15825,22 +15766,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "ddcb643e460d09cded92379e8a56186db44c87c5c1fac5fb1e41c45b4be96ee7", + "tx_hash": "0d3ec97ca627c8afdc74e7cd74d98e23e70e50fb3f4556145985a0937ee00c5b", "tx_index": 17, "block_index": 129, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", - "fairminter_tx_hash": "ef648a52d64c60ed013aa174ae6a48421d17f923b88d3aba2e05b58ef0c76886", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "fairminter_tx_hash": "0e2c46ac44f390ff6b06d99469bca85858fa064feb09b8c2ef799039d36dfa3f", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147202, + "block_time": 1730149856, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -15859,7 +15800,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3` (str, required) - The hash of the fairmint to return + + tx_hash: `bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15870,22 +15811,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", + "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147231, + "block_time": 1730149883, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -15903,7 +15844,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf,bcrt1qh2m2jullqmwfxs3vllx9krdjz6qgz0r4x3jc8s` (str, required) - The addresses to search for + + addresses: `bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa,bcrt1quy9exauh6h8xraqsj4qexjw7xn47yevhezvy27` (str, required) - The addresses to search for + unconfirmed (bool, optional) - Include unconfirmed transactions + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -15917,22 +15858,22 @@ Returns a list of unspent outputs for a list of addresses { "result": [ { - "vout": 1, + "vout": 0, "height": 200, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "c98bca33812483eb341164f4c5a4ba9d07609a460ff2889e15c58332db2b7878", - "address": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf" + "amount": 5.46e-05, + "txid": "508340a6b50309287c608280e281aeb60e7fdb44401c73cc2d824350a587a82b", + "address": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa" }, { - "vout": 0, + "vout": 1, "height": 200, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "39b475d96fe427bf70a7413c344bbfa88768c4f038da4a0efceb2d0a3b5065bf", - "address": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf" + "amount": 49.499345, + "txid": "9b6c9a7bb596e969abc4b473d1fe8cfb354de8ab6eeb5085ae582ed48ab6e97e", + "address": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa" }, { "vout": 2, @@ -15940,8 +15881,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 52, "amount": 0.001, - "txid": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd", - "address": "bcrt1qh2m2jullqmwfxs3vllx9krdjz6qgz0r4x3jc8s" + "txid": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849", + "address": "bcrt1quy9exauh6h8xraqsj4qexjw7xn47yevhezvy27" } ], "next_cursor": null, @@ -15954,7 +15895,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0` (str, required) - The address to search for + + address: `bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk` (str, required) - The address to search for + unconfirmed: `True` (bool, optional) - Include unconfirmed transactions + Default: `True` + only_tx_hashes: `True` (bool, optional) - Return only the tx hashes @@ -15970,28 +15911,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "1e694ec5568f83f06a53f19617cb3373a81673e566a3f4674943004b4241310b" + "tx_hash": "ac629e61e6754dc91053dab34f5c7923f53a25f08505c48e02020b88fcbf160c" }, { - "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68" + "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813" }, { - "tx_hash": "830a7b9e1f16656de3d506078bbeb7daa4cac5f7a80eb58cd6d4e749dea4b48c" + "tx_hash": "9ab485c03158b0379a31a0ed1f790c058cddbccea9db255dd3cfcb37da360985" }, { - "tx_hash": "48a65ca47e1f55ab2c324ea59ab0c61e1948101ffb108e7a0b1861245bfba996" + "tx_hash": "166c36ba6e40975fd9175e2c75c3429ffbabdb6d40d994cf45739dcd7cd3718f" }, { - "tx_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9" + "tx_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1" }, { - "tx_hash": "0e342a2ee7897e26da5b3b27ef89ed24cb2f5db944eb6471b2b3b214318205e4" + "tx_hash": "1a13cc5410faf54cf3e15d2f36ebe7d2162194c040bbcb754a460a587bb183df" }, { - "tx_hash": "c4c02b36eb4f5d00ec94e34a9caeeb533405c89dfe49d307bb4085c54b8a35e6" + "tx_hash": "2b8d25beb3e954c2626269fe981cad7457e2816015fa2ffb47fc40dab3aab8ec" }, { - "tx_hash": "c460c8c1cea374657e76abf6b2e42aa139e55eeab89569949f94ce705bdc60f4" + "tx_hash": "d94e197f2a619d264cc847eb0c6d0cc74b543b39ee3e674e770d01b6491332f0" } ], "next_cursor": null, @@ -16004,7 +15945,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq` (str, required) - The address to search for. + + address: `bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57` (str, required) - The address to search for. + block_index (int, optional) - The block index to search from. + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -16017,8 +15958,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 4, - "tx_hash": "258b682c0b3b5c300a74faa54c3b3c75e72556d56bbf097eebb51d521068de57" + "block_index": 10, + "tx_hash": "7eb3eacdd595345e0fe6958c9a1175ee02db099b906474714fae3e96901ca847" } } ``` @@ -16028,7 +15969,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf` (str, required) - The address to search for + + address: `bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa` (str, required) - The address to search for + unconfirmed (bool, optional) - Include unconfirmed transactions + Default: `False` + unspent_tx_hash (str, optional) - Filter by unspent_tx_hash @@ -16044,20 +15985,20 @@ Returns a list of unspent outputs for a specific address { "result": [ { - "vout": 1, + "vout": 0, "height": 200, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "c98bca33812483eb341164f4c5a4ba9d07609a460ff2889e15c58332db2b7878" + "amount": 5.46e-05, + "txid": "508340a6b50309287c608280e281aeb60e7fdb44401c73cc2d824350a587a82b" }, { - "vout": 0, + "vout": 1, "height": 200, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "39b475d96fe427bf70a7413c344bbfa88768c4f038da4a0efceb2d0a3b5065bf" + "amount": 49.499345, + "txid": "9b6c9a7bb596e969abc4b473d1fe8cfb354de8ab6eeb5085ae582ed48ab6e97e" } ], "next_cursor": null, @@ -16070,7 +16011,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m` (str, required) - Address to get pubkey for. + + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - Address to get pubkey for. + provided_pubkeys (str, optional) - Comma separated list of provided pubkeys. + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -16082,7 +16023,7 @@ Get pubkey for an address. ``` { - "result": "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e" + "result": "026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c" } ``` @@ -16091,7 +16032,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2` (str, required) - The transaction hash + + tx_hash: `ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b` (str, required) - The transaction hash + format: `hex` (str, optional) - Whether to return JSON output or raw hex + Default: `json` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -16103,7 +16044,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101dd6036f00dd0c18b8a639d86de226d3296f7c720ec11b17defc3204e8b01d01e0100000000ffffffff03e803000000000000160014683c2d33034856d0b1db09c7b7e1773ae80add5400000000000000000c6a0a11eda9ba1cdb99830cfaeb14092701000000160014bf4792b14b11b425a171e4605d662e7cf9ed8d63024730440220242fd2fafb6e456eeb2416629f59e8c033bd124a870f3cec20c7784517f511be02203ce32ad5e5f27bbdccda125b876ff10b8d6a69fb4ee4882eba632d663a46554b012102a59bfe4c5aff502eec07b4831b733657f409185a43056c6a5a250557f9e3b45d00000000" + "result": "0200000000010149289a40c78c66916c239ac7f908b0d59ef63456994b1e9510d8717257f0bf460100000000ffffffff03e8030000000000001600149e3d73cf180ab4652f14e45d6dd17012e1442b0000000000000000000c6a0a06f7bbe2b2ce3b3aeeebeb1409270100000016001465c904bf5dd078f1db7ff75e9d02179c176ab0900247304402201dd21b409a496da4d49a01840c4e3f9d1bdef1d8184b29b20924ff78f921b5a102203046c25e5926256e32950b3f56702d092ce66300479cdcd5b6fc02d37760fa7601210394905cd47735fcf8303d48ee74e9528871221d877e69b6ae5e376e64158d451000000000" } ``` @@ -16198,27 +16139,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "tx_index": 76 }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "memo": null, "quantity": 10000, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "status": "valid", - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "tx_index": 76, "asset_info": { "divisible": true, @@ -16229,22 +16170,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "CREDIT", "params": { - "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -16254,22 +16195,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "XCP", "block_index": 208, - "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -16279,30 +16220,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730147542.563512, + "block_time": 1730150180.8792815, "btc_amount": 0, - "data": "0200000000000000010000000000002710803970def27ed5459d1126af8f037ccb8fe4aeac4d", + "data": "0200000000000000010000000000002710803eb72a4136323ae914b5e511d43a96fe66f85c55", "destination": "", "fee": 10000, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "tx_index": 76, - "utxos_info": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4:1", + "utxos_info": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "memo": null, "asset_info": { "divisible": true, @@ -16316,7 +16257,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 } ], "next_cursor": null, @@ -16347,19 +16288,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "CREDIT", "params": { - "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -16369,7 +16310,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 } ], "next_cursor": null, @@ -16382,7 +16323,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4` (str, required) - The hash of the transaction to return + + tx_hash: `055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor (str, optional) - The last event index to return @@ -16402,27 +16343,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "tx_index": 76 }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "memo": null, "quantity": 10000, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "status": "valid", - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "tx_index": 76, "asset_info": { "divisible": true, @@ -16433,22 +16374,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "CREDIT", "params": { - "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -16458,22 +16399,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "XCP", "block_index": 208, - "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -16483,30 +16424,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730147542.563512, + "block_time": 1730150180.8792815, "btc_amount": 0, - "data": "0200000000000000010000000000002710803970def27ed5459d1126af8f037ccb8fe4aeac4d", + "data": "0200000000000000010000000000002710803eb72a4136323ae914b5e511d43a96fe66f85c55", "destination": "", "fee": 10000, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "tx_index": 76, - "utxos_info": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4:1", + "utxos_info": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "memo": null, "asset_info": { "divisible": true, @@ -16520,7 +16461,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/api/compose.py b/counterparty-core/counterpartycore/lib/api/compose.py index 244cc07b42..2a58aabcf4 100644 --- a/counterparty-core/counterpartycore/lib/api/compose.py +++ b/counterparty-core/counterpartycore/lib/api/compose.py @@ -131,12 +131,12 @@ False, "(API v1 only) Returns a single hex-encoded string instead of an array", ), - "use_utxo_with_balances": ( + "use_utxos_with_balances": ( bool, False, "Use UTXO with balances", ), - "exclude_utxo_with_balances": ( + "exclude_utxos_with_balances": ( bool, False, "Exclude silently UTXO with balances instead of raising an exception", diff --git a/counterparty-core/counterpartycore/lib/transaction.py b/counterparty-core/counterpartycore/lib/transaction.py index a9238dffd9..9cb9224fc0 100644 --- a/counterparty-core/counterpartycore/lib/transaction.py +++ b/counterparty-core/counterpartycore/lib/transaction.py @@ -191,8 +191,8 @@ def construct( p2sh_source_multisig_pubkeys=None, p2sh_source_multisig_pubkeys_required=None, p2sh_pretx_txid=None, - use_utxo_with_balances=False, - exclude_utxo_with_balances=False, + use_utxos_with_balances=False, + exclude_utxos_with_balances=False, ): # Extract tx_info (source, destinations, data) = tx_info @@ -259,8 +259,8 @@ def construct( multisig_dust_size, disable_utxo_locks, exclude_utxos, - use_utxo_with_balances, - exclude_utxo_with_balances, + use_utxos_with_balances, + exclude_utxos_with_balances, ) """Finish""" diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py index 8f14dcce00..06e70d2c59 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py @@ -187,8 +187,8 @@ def construct_coin_selection( multisig_dust_size, disable_utxo_locks, exclude_utxos, - use_utxo_with_balances, - exclude_utxo_with_balances, + use_utxos_with_balances, + exclude_utxos_with_balances, ): if inputs_set: if isinstance(inputs_set, str): @@ -249,12 +249,12 @@ def construct_coin_selection( unspent = UTXOLocks().filter_unspents(source, unspent, exclude_utxos) # remove UTXOs with balances if not specified - if not use_utxo_with_balances: + if not use_utxos_with_balances: filtered_unspent = [] for utxo in unspent: str_input = f"{utxo['txid']}:{utxo['vout']}" if len(ledger.get_utxo_balances(db, str_input)) > 0: - if not exclude_utxo_with_balances: + if not exclude_utxos_with_balances: raise exceptions.ComposeError(f"invalid UTXO: {str_input}") else: filtered_unspent.append(utxo) @@ -386,8 +386,8 @@ def prepare_inputs( multisig_dust_size, disable_utxo_locks, exclude_utxos, - use_utxo_with_balances, - exclude_utxo_with_balances, + use_utxos_with_balances, + exclude_utxos_with_balances, ): btc_in = 0 final_fee = 0 @@ -436,8 +436,8 @@ def prepare_inputs( multisig_dust_size, disable_utxo_locks, exclude_utxos, - use_utxo_with_balances, - exclude_utxo_with_balances, + use_utxos_with_balances, + exclude_utxos_with_balances, ) btc_in = n_btc_in final_fee = n_final_fee diff --git a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json index 152309ac6b..8f119c8954 100644 --- a/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json +++ b/counterparty-core/counterpartycore/test/fixtures/api_v2_fixtures.json @@ -11073,12 +11073,19 @@ "required": false }, { - "name": "use_utxo_with_balances", + "name": "use_utxos_with_balances", "type": "bool", "default": false, "description": "Use UTXO with balances", "required": false }, + { + "name": "exclude_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Exclude silently UTXO with balances instead of raising an exception", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11270,12 +11277,19 @@ "required": false }, { - "name": "use_utxo_with_balances", + "name": "use_utxos_with_balances", "type": "bool", "default": false, "description": "Use UTXO with balances", "required": false }, + { + "name": "exclude_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Exclude silently UTXO with balances instead of raising an exception", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11449,12 +11463,19 @@ "required": false }, { - "name": "use_utxo_with_balances", + "name": "use_utxos_with_balances", "type": "bool", "default": false, "description": "Use UTXO with balances", "required": false }, + { + "name": "exclude_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Exclude silently UTXO with balances instead of raising an exception", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11635,12 +11656,19 @@ "required": false }, { - "name": "use_utxo_with_balances", + "name": "use_utxos_with_balances", "type": "bool", "default": false, "description": "Use UTXO with balances", "required": false }, + { + "name": "exclude_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Exclude silently UTXO with balances instead of raising an exception", + "required": false + }, { "name": "verbose", "type": "bool", @@ -11814,12 +11842,19 @@ "required": false }, { - "name": "use_utxo_with_balances", + "name": "use_utxos_with_balances", "type": "bool", "default": false, "description": "Use UTXO with balances", "required": false }, + { + "name": "exclude_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Exclude silently UTXO with balances instead of raising an exception", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12005,12 +12040,19 @@ "required": false }, { - "name": "use_utxo_with_balances", + "name": "use_utxos_with_balances", "type": "bool", "default": false, "description": "Use UTXO with balances", "required": false }, + { + "name": "exclude_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Exclude silently UTXO with balances instead of raising an exception", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12222,12 +12264,19 @@ "required": false }, { - "name": "use_utxo_with_balances", + "name": "use_utxos_with_balances", "type": "bool", "default": false, "description": "Use UTXO with balances", "required": false }, + { + "name": "exclude_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Exclude silently UTXO with balances instead of raising an exception", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12413,12 +12462,19 @@ "required": false }, { - "name": "use_utxo_with_balances", + "name": "use_utxos_with_balances", "type": "bool", "default": false, "description": "Use UTXO with balances", "required": false }, + { + "name": "exclude_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Exclude silently UTXO with balances instead of raising an exception", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12633,12 +12689,19 @@ "required": false }, { - "name": "use_utxo_with_balances", + "name": "use_utxos_with_balances", "type": "bool", "default": false, "description": "Use UTXO with balances", "required": false }, + { + "name": "exclude_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Exclude silently UTXO with balances instead of raising an exception", + "required": false + }, { "name": "verbose", "type": "bool", @@ -12852,12 +12915,19 @@ "required": false }, { - "name": "use_utxo_with_balances", + "name": "use_utxos_with_balances", "type": "bool", "default": false, "description": "Use UTXO with balances", "required": false }, + { + "name": "exclude_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Exclude silently UTXO with balances instead of raising an exception", + "required": false + }, { "name": "verbose", "type": "bool", @@ -13061,12 +13131,19 @@ "required": false }, { - "name": "use_utxo_with_balances", + "name": "use_utxos_with_balances", "type": "bool", "default": false, "description": "Use UTXO with balances", "required": false }, + { + "name": "exclude_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Exclude silently UTXO with balances instead of raising an exception", + "required": false + }, { "name": "verbose", "type": "bool", @@ -13273,12 +13350,19 @@ "required": false }, { - "name": "use_utxo_with_balances", + "name": "use_utxos_with_balances", "type": "bool", "default": false, "description": "Use UTXO with balances", "required": false }, + { + "name": "exclude_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Exclude silently UTXO with balances instead of raising an exception", + "required": false + }, { "name": "verbose", "type": "bool", @@ -13464,12 +13548,19 @@ "required": false }, { - "name": "use_utxo_with_balances", + "name": "use_utxos_with_balances", "type": "bool", "default": false, "description": "Use UTXO with balances", "required": false }, + { + "name": "exclude_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Exclude silently UTXO with balances instead of raising an exception", + "required": false + }, { "name": "verbose", "type": "bool", @@ -13649,12 +13740,19 @@ "required": false }, { - "name": "use_utxo_with_balances", + "name": "use_utxos_with_balances", "type": "bool", "default": false, "description": "Use UTXO with balances", "required": false }, + { + "name": "exclude_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Exclude silently UTXO with balances instead of raising an exception", + "required": false + }, { "name": "verbose", "type": "bool", @@ -13940,12 +14038,19 @@ "required": false }, { - "name": "use_utxo_with_balances", + "name": "use_utxos_with_balances", "type": "bool", "default": false, "description": "Use UTXO with balances", "required": false }, + { + "name": "exclude_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Exclude silently UTXO with balances instead of raising an exception", + "required": false + }, { "name": "verbose", "type": "bool", @@ -14126,12 +14231,19 @@ "required": false }, { - "name": "use_utxo_with_balances", + "name": "use_utxos_with_balances", "type": "bool", "default": false, "description": "Use UTXO with balances", "required": false }, + { + "name": "exclude_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Exclude silently UTXO with balances instead of raising an exception", + "required": false + }, { "name": "verbose", "type": "bool", @@ -14318,12 +14430,19 @@ "required": false }, { - "name": "use_utxo_with_balances", + "name": "use_utxos_with_balances", "type": "bool", "default": false, "description": "Use UTXO with balances", "required": false }, + { + "name": "exclude_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Exclude silently UTXO with balances instead of raising an exception", + "required": false + }, { "name": "verbose", "type": "bool", @@ -14509,12 +14628,19 @@ "required": false }, { - "name": "use_utxo_with_balances", + "name": "use_utxos_with_balances", "type": "bool", "default": false, "description": "Use UTXO with balances", "required": false }, + { + "name": "exclude_utxos_with_balances", + "type": "bool", + "default": false, + "description": "Exclude silently UTXO with balances instead of raising an exception", + "required": false + }, { "name": "verbose", "type": "bool", diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index c1b6e114a5..06b8a7d2a9 100644 --- a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json +++ b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json @@ -3,61 +3,61 @@ "result": [ { "block_index": 208, - "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", - "block_time": 1730147539, - "previous_block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", + "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", + "block_time": 1730150176, + "previous_block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", "difficulty": 545259519, - "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", - "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", - "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", + "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", + "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", + "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", - "block_time": 1730147530, - "previous_block_hash": "01846b45f3471c31292a5664be521ee633e3113f741f72dafb1bf6543e16d259", + "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", + "block_time": 1730150162, + "previous_block_hash": "24fcd9eac7b7cd3657adfe8bc22e3952cde382c08c9782ffc7e354dfaf750fcf", "difficulty": 545259519, - "ledger_hash": "ac0e12a27a7095f9b6950e51b5c19d8bb6e9f5f645489c0d4898a3d6afae586a", - "txlist_hash": "6478f1ea88d777dd859ecc2d26434b2b10bd8b347825cca5122f9ac6fac07ec5", - "messages_hash": "0c2fd82e70a9920a39eb3bb2efadb7c20f3f790a86774945f11c49b35278c16b", + "ledger_hash": "e32feb5e459aef10ade923772074376074ed225d60b46c6980af3924f5acd3ef", + "txlist_hash": "07761e73b55838e899f773a3d385248e67c8639db8646ea97db76fb277ab2930", + "messages_hash": "9c239fb45f7eadba952f1e433220d5d025f3ed4a96536c564f49f4b05ff2ad4f", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "01846b45f3471c31292a5664be521ee633e3113f741f72dafb1bf6543e16d259", - "block_time": 1730147525, - "previous_block_hash": "3873d38f2cf1b4e0638c2afeefa858f06618aa1b2fbcaa8fa43d7beadd77ea33", + "block_hash": "24fcd9eac7b7cd3657adfe8bc22e3952cde382c08c9782ffc7e354dfaf750fcf", + "block_time": 1730150158, + "previous_block_hash": "290c68bb409d42e9ed62dc8223e72f61f221b4e03db77c76fe49931edea5538a", "difficulty": 545259519, - "ledger_hash": "7e8b6e3d55a0309fc8f54172602464cfcd4395a6a424927c0056173dfa15467a", - "txlist_hash": "ae305e97a3ca2fee8f6a95d548949e897c1b227625bd653d810b3f769c7d65f9", - "messages_hash": "8aee0249f0e25b26ae34201e5f3afa848a977216ac464bd377708dcffbee612f", + "ledger_hash": "cdce55ebc4b38e82b4cd4095b9153f4a29fc07ff2b8bcfb6b6f6cd13277ccc42", + "txlist_hash": "00e4944db20400bcd459987846344303b626e6a91a9767f1474eb9111787e71e", + "messages_hash": "fb41f289331b1456895f7d5b051b5a17741fc1bb9308036094d6e752a1edd358", "transaction_count": 1, "confirmed": true }, { "block_index": 205, - "block_hash": "3873d38f2cf1b4e0638c2afeefa858f06618aa1b2fbcaa8fa43d7beadd77ea33", - "block_time": 1730147521, - "previous_block_hash": "5d35bb0804bc053ef7d59c9d0c4a9f4bcd4bc52272146001da9b7757c898d039", + "block_hash": "290c68bb409d42e9ed62dc8223e72f61f221b4e03db77c76fe49931edea5538a", + "block_time": 1730150154, + "previous_block_hash": "3906807db0d56b9fec78f5982ba29d4512f200a4769bb4153d83c94df666c0a4", "difficulty": 545259519, - "ledger_hash": "e9ce7f40c431517eb719f00dbd6aec19395a35fdf1e169c6577059af09378484", - "txlist_hash": "afe39379f1e509b56e07873f33b98342581f9aaf90e155e2ed9165d469f622d3", - "messages_hash": "72a9b1cd32541e7f93a8eff9b694d19291e09fd9863364ce0ccc6240dac5d3dd", + "ledger_hash": "fb6fa100bcf1dab2deace12dd3f350e79c2f5d805a7608209d29d7308ff65edc", + "txlist_hash": "475920684f1ab856770d9d807d17ef1b1e547555e7787b0e8a6f112fae00c432", + "messages_hash": "80907e25a0ead5ab76e1b793b9a17683be58f0da5739d6b553205fb8f915fc42", "transaction_count": 1, "confirmed": true }, { "block_index": 204, - "block_hash": "5d35bb0804bc053ef7d59c9d0c4a9f4bcd4bc52272146001da9b7757c898d039", - "block_time": 1730147517, - "previous_block_hash": "0770bd3567046a0c047163accfc399966280bdbd87644d765df50a5819c333f3", + "block_hash": "3906807db0d56b9fec78f5982ba29d4512f200a4769bb4153d83c94df666c0a4", + "block_time": 1730150151, + "previous_block_hash": "5b2cb939f6b6a782be5829b4a32d310f3e8b11c136ebed663d064b28e5700f62", "difficulty": 545259519, - "ledger_hash": "1a0c19c4bd1e6608e2e33b517d6fb5ac32212fad8471f74cb0e1e6c5438a15f4", - "txlist_hash": "e66c89aefbfe780c7f0f18a77bf0823ba616f804e47aab1beabca6a84813f602", - "messages_hash": "ea18e0508f4e556ffde5975a7754fc7271808f9f7dbb042adf736443ecdfb7d6", + "ledger_hash": "b173405fba1bf44bf2a8c11c6b526256ea13b3750afce6a0d8b4b7369b3ac2ed", + "txlist_hash": "0286081e03a112d9e0153e5fe9d8043526f209fef2239e647a256edf72c72157", + "messages_hash": "51ad30cb166cc647352835bd87f313ecb0c1f4d9058ab7740ea45a60dd26ceb2", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 208, - "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", - "block_time": 1730147539, - "previous_block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", + "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", + "block_time": 1730150176, + "previous_block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", "difficulty": 545259519, - "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", - "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", - "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", + "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", + "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", + "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 208, - "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", - "block_time": 1730147539, - "previous_block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", + "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", + "block_time": 1730150176, + "previous_block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", "difficulty": 545259519, - "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", - "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", - "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", + "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", + "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", + "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", - "block_time": 1730147539, - "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", - "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", + "block_time": 1730150176, + "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", - "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", + "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", + "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", "transaction_count": 1, - "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", - "block_time": 1730147539 + "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", + "block_time": 1730150176 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75 }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" }, { "event_index": 673, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" }, { "event_index": 672, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "status": 0, - "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" } ], "next_cursor": 670, @@ -256,16 +256,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" }, { "event_index": 669, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 1500000000, "tx_index": 75, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "block_time": 1730147539, + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" }, { "event_index": 666, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 1500000000, "tx_index": 75, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "block_time": 1730147539, + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_time": 1730150176, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2" + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 208, - "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "utxo": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "utxo_address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "utxo": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "utxo_address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "utxo": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "utxo_address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "utxo": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "utxo_address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "object_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", "block_index": 207, "confirmed": true, - "block_time": 1730147530 + "block_time": 1730150162 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 58, - "tx_hash": "62c09c5f1959d825532f5594282ad39694424a743802d560f520b42aab6c4ee3", + "tx_hash": "273b62eaf8de41c504f5b4619412ccadacc70cff6b889cb2396189018c05d81c", "block_index": 192, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "offer_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "offer_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", "status": "valid", "confirmed": true, - "block_time": 1730147455 + "block_time": 1730150102 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 61, - "tx_hash": "5709751e42222eb3fe342e7c1bdb4cfc6f20f4a9eec48c8dd200a08f1b4838bb", + "tx_hash": "c00a1d1e74c94dc85120712a15a6b62760a12590f92814b3ab2725b9b992038c", "block_index": 195, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730147466, + "block_time": 1730150114, "asset_info": { "divisible": true, "asset_longname": null, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 68, - "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", + "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730147494, + "block_time": 1730150139, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -565,10 +565,10 @@ }, { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 75, "dispense_index": 0, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "last_status_tx_hash": null, - "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -650,16 +650,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", + "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", "block_index": 194, - "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730147463, + "block_time": 1730150109, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "0998f235a3feba0746e143f431c1f698ca50ae3f8745598a4671168e9c151cef", + "tx_hash": "93dee74a73fd75a2b609a0b4cd62839d0d254025bf44bcb5513cad7d35bfa6f3", "tx_index": 42, "block_index": 155, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730147313, + "block_time": 1730149965, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", + "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147231, + "block_time": 1730149883, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", - "block_time": 1730147539, - "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", - "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", + "block_time": 1730150176, + "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 74, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", - "block_time": 1730147530, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", + "block_time": 1730150162, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f:1", + "utxos_info": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -816,53 +816,18 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d2621d21756eb8ebb22ce432b26450ae670d208f803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2040000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "03eb7b2120bd3de02c1ad129d11a48c9acb377c6b0bd799813367fdd1f7c8145", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "529e0c801ebb4d5203b89593cfc4a5b0fd302cfdfa29d31283cd1a8ebd5b654b", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "716491af6c6b1530054e03b9887305dbb982136f0e42b61c148706e10e084501", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "181a23460a56059dffe405360c4c1d35cb503f5ff0452f951ae0ba63213ba732", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "c0a6cb160237308a59dacf6f68a88f6e33e6446b653dc48f2bb8b6b813ebc6dc", - "n": 0, - "script_sig": "", - "sequence": 4294967295, - "coinbase": false - }, - { - "hash": "d7153b6c88b84e9727c746dde7931bd12b0aec2662aaa32f7bc4475ba0bf6f56", + "hash": "cf949dffd0450d4a69dae4636f4c94c35011e7f9338efea635db0220d592bc1e", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -871,93 +836,69 @@ ], "vout": [ { - "value": 1000, - "script_pub_key": "512102a643a4ff08f7a6ce081b9dc80ce7fa92204726be3ebc2f811acf90796fec6f442102f1ca1cbe98a71273ada4d14ac84876c0836317d039e09f02327fe9039d5ccdf6210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53ae" - }, - { - "value": 1000, - "script_pub_key": "512103a643a4ff08f7a6ce08b30f47ffe24a40cc509fdbf92e436528781749494fb61b2102d1459c87e879e0276d54d9ee522df9c3ffa89834974657efbf27fb32e69bcc80210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53ae" - }, - { - "value": 1000, - "script_pub_key": "5121028743a4ff08f7a6ce08189dcb8c35188f01324806d50e574e43569f50498b62902103d1459c87e879e00d78e14c5beee7f9c3ffa89834974cd282da4a9401669bcc52210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53ae" + "value": 0, + "script_pub_key": "6a333e0104f9de1867866062b67557048fb8a623a572b848d6d77f4483e791b32ad96759cb346a9a9f40f4e3c413395fa062f31bad" }, { - "value": 29999987000, - "script_pub_key": "0014527fc786dce354681ff9800bc9b06a2a44fd524e" + "value": 4999990000, + "script_pub_key": "001453acd20b89492c54642d81b92cdc32862046ce71" } ], "vtxinwit": [ - "304402205f607226f87467d9ec99d07b2f55dca3fffec5fc4d34c9f2ee59070647283ddf02206a84273f17748ce50a9f104d91930e73cd83019a7310686eb0574872c561849e01", - "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e", - "30440220609c34c72ed9688a6f65d72931ebe50a4d29109849b0fe9fbe5380d10e3ead8202202bf1098796b3f9f861c2cf1eb7324c1763cc389124c689c69b4bf94ae4b58b6f01", - "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e", - "3044022064bbc765ae9fe2d806b9262233fb449ea9cdc556c76949ce7f3d12ea56a3c81002204dfd87424d79f8a8e2c2d047a9cb23d691558f4421b6a1f5f09221299b8f08c301", - "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e", - "304402205189c0231cd313bc7ec75614a27a36f6520bb3c742bbbf6a775cba4e7d58493a022054b4de7fa2f5d055ebb233f3cb97b8077d6dfbee126f4ed11c2192161d2ebb3b01", - "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e", - "30440220189421cb50e385ebbb4145f1a0009e2ed115d40c2dde5db9c7ac72bed9ca21ea02207d39b7fd0b1614cbfb4857609e9463fcd27979aefccc1047789c20dcf52063ef01", - "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e", - "304402202d5d65b9c03c396247bea5a3e975d1c6cec94d7da3b6d950c4bf5607f60fb2e30220680f965ae329cbc74e57466d61af9af750b3be686f8c27a5ee9c1cbb30808d7c01", - "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e" + "3044022018455d972c6b439a6641f0e5633be8f382872c4893416b692b38f8a5ea15461402206fc58766cb40cc9d552def555bfb27de92737607eb0814ff2a6f8e34094717e601", + "026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c" ], "lock_time": 0, - "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", - "tx_id": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767" + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_id": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830" }, "unpacked_data": { - "message_type": "mpma_send", - "message_type_id": 3, - "message_data": [ - { - "asset": "MPMASSET", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", - "quantity": 10, - "memo": "memo2", - "memo_is_hex": false, - "asset_info": { - "asset_longname": null, - "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "divisible": true, - "locked": false - }, - "quantity_normalized": "0.00000010" + "message_type": "order", + "message_type_id": 10, + "message_data": { + "give_asset": "XCP", + "give_quantity": 1000, + "get_asset": "BTC", + "get_quantity": 1000, + "expiration": 21, + "fee_required": 0, + "status": "open", + "give_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null }, - { - "asset": "XCP", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "quantity": 10, - "memo": "memo1", - "memo_is_hex": false, - "asset_info": { - "divisible": true, - "asset_longname": null, - "description": "The Counterparty protocol native currency", - "locked": true, - "issuer": null - }, - "quantity_normalized": "0.00000010" - } - ] + "get_asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Bitcoin cryptocurrency", + "locked": false, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "get_quantity_normalized": "0.00001000", + "fee_required_normalized": "0.00000000" + } }, "btc_amount_normalized": "0.00000000" } }, "/v2/transactions//info": { "result": { - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710803970def27ed5459d1126af8f037ccb8fe4aeac4d", + "data": "0200000000000000010000000000002710803eb72a4136323ae914b5e511d43a96fe66f85c55", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "8d4bef92b931a1c06d6bab5395537943d4218a8c17b832cf1f27c4b5d26ca3f1", + "hash": "046bd1758bd65556db2f872b9803788e82871cb891bca6a8671f1c2203d5eb2f", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -967,20 +908,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2ecd2b19017aed9c5dec4f390093b39dd1f0ec75729a5e5c59cf26a61505a3042769517cf7e577fb7d37c37417c0e4" + "script_pub_key": "6a2e159b491df4e1cc63cbd344287282ce43eb42ae4cf95a12d94d973b973c3b5b18f479d9d00c735c4837d0af87be5b" }, { "value": 4999970000, - "script_pub_key": "0014e8357d02fbc701ab928c73d7d2cfcd62d7dd2c20" + "script_pub_key": "00143c9e235caa5be4be07a3dfbf730d21c096c653e2" } ], "vtxinwit": [ - "30440220692dde2e060e2cc05bae5e602158bf81c34d18f821fe613e16e0dbed4383928502206d827185874c9b7639ffc09756d99f2517e843c8769bf32d809dab219ee44bb301", - "03d019ffa6402ee701cc2792ac17105aa83f73c2941f477e20277c2d2132d0bb7a" + "3044022052ad54091732d8d818d82ec24649155fe2f4fdb6a6a7a2aded7fb7bea407e4b002202fa49a77a5158f5687a5a2600001f4fabf5303d46a9a0809dca4e2240f17862801", + "03c1a7c33ad91c7f9e3c3aec9546acbb11cc8e02feaff182e7e827840daa063254" ], "lock_time": 0, - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", - "tx_id": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4" + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_id": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca" }, "unpacked_data": { "message_type": "enhanced_send", @@ -988,7 +929,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "memo": null, "asset_info": { "divisible": true, @@ -1015,17 +956,17 @@ "/v2/transactions/": { "result": { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", - "block_time": 1730147539, - "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", - "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", + "block_time": 1730150176, + "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1040,17 +981,17 @@ "/v2/transactions/": { "result": { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", - "block_time": 1730147539, - "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", - "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", + "block_time": 1730150176, + "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1069,12 +1010,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75 }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 673, @@ -1083,14 +1024,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -1101,9 +1042,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 672, @@ -1112,9 +1053,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "status": 0, - "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "asset_info": { "divisible": true, "asset_longname": null, @@ -1124,24 +1065,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -1151,9 +1092,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 670, @@ -1161,14 +1102,14 @@ "params": { "asset": "XCP", "block_index": 208, - "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "msg_index": 1, "quantity": 1500000000, - "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", "status": "valid", - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -1178,9 +1119,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 669, @@ -1193,12 +1134,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75 }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 673, @@ -1207,14 +1148,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -1225,9 +1166,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 672, @@ -1236,9 +1177,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "status": 0, - "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "asset_info": { "divisible": true, "asset_longname": null, @@ -1248,24 +1189,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -1275,9 +1216,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 670, @@ -1285,14 +1226,14 @@ "params": { "asset": "XCP", "block_index": 208, - "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "msg_index": 1, "quantity": 1500000000, - "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", "status": "valid", - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -1302,9 +1243,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 669, @@ -1314,10 +1255,10 @@ "result": [ { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1325,7 +1266,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -1338,10 +1279,10 @@ }, { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1349,11 +1290,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -1369,27 +1310,27 @@ { "tx_index": 75, "dispense_index": 0, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "last_status_tx_hash": null, - "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1404,7 +1345,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -1425,16 +1366,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -1444,9 +1385,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 669, @@ -1456,12 +1397,12 @@ "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 1500000000, "tx_index": 75, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "block_time": 1730147539, + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -1471,9 +1412,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 666, @@ -1483,24 +1424,24 @@ "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 1500000000, "tx_index": 75, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "block_time": 1730147539, + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_time": 1730150176, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": null, @@ -1512,16 +1453,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -1531,9 +1472,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 669, @@ -1543,12 +1484,12 @@ "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 1500000000, "tx_index": 75, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "block_time": 1730147539, + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -1558,9 +1499,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 666, @@ -1570,24 +1511,24 @@ "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 1500000000, "tx_index": 75, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "block_time": 1730147539, + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_time": 1730150176, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": null, @@ -1600,7 +1541,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1610,7 +1551,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -1621,7 +1562,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1631,7 +1572,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -1642,7 +1583,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1652,7 +1593,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -1663,7 +1604,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1673,7 +1614,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -1684,7 +1625,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1694,7 +1635,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -1705,7 +1646,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1715,7 +1656,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -1729,17 +1670,17 @@ "result": [ { "tx_index": 74, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", - "block_time": 1730147530, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", + "block_time": 1730150162, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f:1", + "utxos_info": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1775,17 +1716,17 @@ }, { "tx_index": 73, - "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "block_index": 206, - "block_hash": "01846b45f3471c31292a5664be521ee633e3113f741f72dafb1bf6543e16d259", - "block_time": 1730147525, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "block_hash": "24fcd9eac7b7cd3657adfe8bc22e3952cde382c08c9782ffc7e354dfaf750fcf", + "block_time": 1730150158, + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380527fc786dce354681ff9800bc9b06a2a44fd524e803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2088746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038053acd20b89492c54642d81b92cdc32862046ce71803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6:0", + "utxos_info": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1793,14 +1734,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -1808,7 +1749,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1827,17 +1768,17 @@ }, { "tx_index": 72, - "tx_hash": "4f72d5bee6053f9591d332772cf67ec1874d67118be7049fac7da1ed5b6f83b8", + "tx_hash": "5cc312fce3a8f8432aea553285ab698a3d10185eafdb52df5723ee3ed378d751", "block_index": 205, - "block_hash": "3873d38f2cf1b4e0638c2afeefa858f06618aa1b2fbcaa8fa43d7beadd77ea33", - "block_time": 1730147521, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "block_hash": "290c68bb409d42e9ed62dc8223e72f61f221b4e03db77c76fe49931edea5538a", + "block_time": 1730150154, + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380527fc786dce354681ff9800bc9b06a2a44fd524e803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c20c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038053acd20b89492c54642d81b92cdc32862046ce71803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e2c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "4f72d5bee6053f9591d332772cf67ec1874d67118be7049fac7da1ed5b6f83b8:0", + "utxos_info": "5cc312fce3a8f8432aea553285ab698a3d10185eafdb52df5723ee3ed378d751:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1845,14 +1786,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -1860,7 +1801,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1879,17 +1820,17 @@ }, { "tx_index": 71, - "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "block_index": 204, - "block_hash": "5d35bb0804bc053ef7d59c9d0c4a9f4bcd4bc52272146001da9b7757c898d039", - "block_time": 1730147517, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "3906807db0d56b9fec78f5982ba29d4512f200a4769bb4153d83c94df666c0a4", + "block_time": 1730150151, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d2621d21756eb8ebb22ce432b26450ae670d208f803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2040000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d630d477df0f6e07f91e8949433310400b60dd35803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e240000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767:0", + "utxos_info": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1897,14 +1838,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -1912,7 +1853,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1931,17 +1872,17 @@ }, { "tx_index": 70, - "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", + "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", "block_index": 203, - "block_hash": "0770bd3567046a0c047163accfc399966280bdbd87644d765df50a5819c333f3", - "block_time": 1730147502, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "5b2cb939f6b6a782be5829b4a32d310f3e8b11c136ebed663d064b28e5700f62", + "block_time": 1730150148, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d2621d21756eb8ebb22ce432b26450ae670d208f803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2088746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d630d477df0f6e07f91e8949433310400b60dd35803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b:0", + "utxos_info": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1949,14 +1890,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -1964,7 +1905,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -2004,11 +1945,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "status": "open", - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "tx_index": 74, - "block_time": 1730147530, + "block_time": 1730150162, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -2032,24 +1973,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_time": 1730147530 + "block_time": 1730150162 }, { "event_index": 658, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "block_index": 207, - "event": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "event": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "quantity": 1000, "tx_index": 74, "utxo": null, "utxo_address": null, - "block_time": 1730147530, + "block_time": 1730150162, "asset_info": { "divisible": true, "asset_longname": null, @@ -2059,37 +2000,37 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_time": 1730147530 + "block_time": 1730150162 }, { "event_index": 657, "event": "ORDER_EXPIRATION", "params": { "block_index": 207, - "order_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "block_time": 1730147530 + "order_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_time": 1730150162 }, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_time": 1730147530 + "block_time": 1730150162 }, { "event_index": 656, "event": "CREDIT", "params": { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "block_index": 207, "calling_function": "cancel order", - "event": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "event": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730147530, + "block_time": 1730150162, "asset_info": { "divisible": true, "asset_longname": null, @@ -2099,25 +2040,25 @@ }, "quantity_normalized": "0.00005000" }, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_time": 1730147530 + "block_time": 1730150162 }, { "event_index": 654, "event": "NEW_TRANSACTION", "params": { - "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", + "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", "block_index": 207, - "block_time": 1730147530, + "block_time": 1730150162, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "tx_index": 74, - "utxos_info": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f:1", + "utxos_info": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -2149,9 +2090,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_time": 1730147530 + "block_time": 1730150162 } ], "next_cursor": 650, @@ -2160,17 +2101,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "memo": null, "quantity": 10000, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "status": "valid", - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "tx_index": 76, "asset_info": { "divisible": true, @@ -2181,22 +2122,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "CREDIT", "params": { - "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -2206,22 +2147,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "XCP", "block_index": 208, - "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -2231,30 +2172,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730147542.563512, + "block_time": 1730150180.8792815, "btc_amount": 0, - "data": "0200000000000000010000000000002710803970def27ed5459d1126af8f037ccb8fe4aeac4d", + "data": "0200000000000000010000000000002710803eb72a4136323ae914b5e511d43a96fe66f85c55", "destination": "", "fee": 10000, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "tx_index": 76, - "utxos_info": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4:1", + "utxos_info": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "memo": null, "asset_info": { "divisible": true, @@ -2268,7 +2209,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 } ], "next_cursor": null, @@ -2277,7 +2218,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2285,14 +2226,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2300,14 +2241,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2315,14 +2256,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -2337,7 +2278,7 @@ "quantity_normalized": "826.49941000" }, { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2345,7 +2286,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -2358,7 +2299,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -2380,16 +2321,16 @@ "result": [ { "block_index": 207, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "event": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147530, + "block_time": 1730150162, "asset_info": { "divisible": true, "asset_longname": null, @@ -2401,16 +2342,16 @@ }, { "block_index": 206, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "event": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147525, + "block_time": 1730150158, "asset_info": { "divisible": true, "asset_longname": null, @@ -2422,16 +2363,16 @@ }, { "block_index": 205, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "4f72d5bee6053f9591d332772cf67ec1874d67118be7049fac7da1ed5b6f83b8", + "event": "5cc312fce3a8f8432aea553285ab698a3d10185eafdb52df5723ee3ed378d751", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147521, + "block_time": 1730150154, "asset_info": { "divisible": true, "asset_longname": null, @@ -2443,20 +2384,20 @@ }, { "block_index": 201, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", + "event": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", "tx_index": 68, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147494, + "block_time": 1730150139, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -2464,16 +2405,16 @@ }, { "block_index": 192, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", + "event": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147455, + "block_time": 1730150102, "asset_info": { "divisible": true, "asset_longname": null, @@ -2491,16 +2432,16 @@ "result": [ { "block_index": 207, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "event": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147530, + "block_time": 1730150162, "asset_info": { "divisible": true, "asset_longname": null, @@ -2512,16 +2453,16 @@ }, { "block_index": 204, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "event": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147517, + "block_time": 1730150151, "asset_info": { "divisible": true, "asset_longname": null, @@ -2533,20 +2474,20 @@ }, { "block_index": 204, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "event": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147517, + "block_time": 1730150151, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -2554,16 +2495,16 @@ }, { "block_index": 203, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", + "event": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147502, + "block_time": 1730150148, "asset_info": { "divisible": true, "asset_longname": null, @@ -2575,20 +2516,20 @@ }, { "block_index": 203, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", + "event": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147502, + "block_time": 1730150148, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -2607,9 +2548,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "18aaf369ee7b22607393e152af0efd92979dee2ef001c12f68449f3dd6a3c100", + "tx_hash": "6bb6a779b50b7a5f5e7f2eeb16d14bf3280a3bb411704fe10c8e4937e68590ac", "block_index": 137, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2617,7 +2558,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730147234, + "block_time": 1730149887, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2628,14 +2569,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "2fed39c42c5098183f1ae8e1361e26ab555b2ec5955749c972b5f1067f3e2c72", + "tx_hash": "8ff0c2680710490b1c7c0269f3397e605b43865d2c911da53d7fa1a8ef46f050", "block_index": 112, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730147143, + "block_time": 1730149793, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2647,10 +2588,10 @@ "result": [ { "tx_index": 71, - "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "block_index": 204, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2658,7 +2599,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730147517, + "block_time": 1730150151, "asset_info": { "divisible": true, "asset_longname": null, @@ -2671,10 +2612,10 @@ }, { "tx_index": 71, - "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "block_index": 204, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2682,11 +2623,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730147517, + "block_time": 1730150151, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -2695,10 +2636,10 @@ }, { "tx_index": 71, - "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "block_index": 204, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2706,11 +2647,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730147517, + "block_time": 1730150151, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -2719,10 +2660,10 @@ }, { "tx_index": 70, - "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", + "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", "block_index": 203, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2730,7 +2671,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730147502, + "block_time": 1730150148, "asset_info": { "divisible": true, "asset_longname": null, @@ -2743,10 +2684,10 @@ }, { "tx_index": 70, - "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", + "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", "block_index": 203, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2754,11 +2695,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730147502, + "block_time": 1730150148, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -2773,10 +2714,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "b9aeb481d6d93a3eee3edaee0438c4e3a7efc7f5f40d59eaa8606c125a6b2d9f", + "tx_hash": "1f020eae3e44998e380ea6141659b829120b8ba595664630b4ae8d51e6eb3ff2", "block_index": 151, - "source": "0e342a2ee7897e26da5b3b27ef89ed24cb2f5db944eb6471b2b3b214318205e4:0", - "destination": "bcrt1qcz42hsauvvj7zvqys6awauwvtlxm66sq2gnk5v", + "source": "d94e197f2a619d264cc847eb0c6d0cc74b543b39ee3e674e770d01b6491332f0:0", + "destination": "bcrt1qg89hz5l72ck62vsg34dpc2fvtfgmuhna0e0t4c", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2784,11 +2725,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730147299, + "block_time": 1730149952, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -2803,10 +2744,10 @@ "result": [ { "tx_index": 71, - "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "block_index": 204, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2814,11 +2755,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730147517, + "block_time": 1730150151, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -2827,10 +2768,10 @@ }, { "tx_index": 71, - "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "block_index": 204, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2838,11 +2779,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730147517, + "block_time": 1730150151, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -2851,10 +2792,10 @@ }, { "tx_index": 70, - "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", + "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", "block_index": 203, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2862,11 +2803,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730147502, + "block_time": 1730150148, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -2875,10 +2816,10 @@ }, { "tx_index": 70, - "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", + "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", "block_index": 203, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2886,11 +2827,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730147502, + "block_time": 1730150148, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -2899,10 +2840,10 @@ }, { "tx_index": 69, - "tx_hash": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f", + "tx_hash": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c", "block_index": 202, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2910,11 +2851,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730147498, + "block_time": 1730150144, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -2934,9 +2875,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2945,7 +2886,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2955,7 +2896,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -2971,9 +2912,9 @@ }, { "tx_index": 62, - "tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", + "tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", "block_index": 197, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2982,7 +2923,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2992,11 +2933,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147475, + "block_time": 1730150120, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -3013,9 +2954,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -3024,7 +2965,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3034,7 +2975,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -3054,19 +2995,19 @@ { "tx_index": 63, "dispense_index": 0, - "tx_hash": "3eaa0359313df169f4e9a098ef8e0ab8cdd5939ab338dca7fa670dbbfb3c0111", + "tx_hash": "541f0fb85b7dbc11dc47a5535cee583b4066f143b1409c77dd9d39d0d60f6af8", "block_index": 197, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", + "dispenser_tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3074,7 +3015,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3089,11 +3030,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147475, + "block_time": 1730150120, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -3103,19 +3044,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", + "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3123,7 +3064,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3138,7 +3079,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -3152,19 +3093,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", + "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", "block_index": 140, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3172,7 +3113,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3187,7 +3128,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147244, + "block_time": 1730149900, "asset_info": { "divisible": true, "asset_longname": null, @@ -3207,19 +3148,19 @@ { "tx_index": 63, "dispense_index": 0, - "tx_hash": "3eaa0359313df169f4e9a098ef8e0ab8cdd5939ab338dca7fa670dbbfb3c0111", + "tx_hash": "541f0fb85b7dbc11dc47a5535cee583b4066f143b1409c77dd9d39d0d60f6af8", "block_index": 197, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", + "dispenser_tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3227,7 +3168,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3242,11 +3183,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147475, + "block_time": 1730150120, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -3256,19 +3197,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", + "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3276,7 +3217,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3291,7 +3232,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -3305,19 +3246,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", + "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", "block_index": 140, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3325,7 +3266,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3340,7 +3281,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147244, + "block_time": 1730149900, "asset_info": { "divisible": true, "asset_longname": null, @@ -3360,19 +3301,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", + "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3380,7 +3321,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3395,7 +3336,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -3409,19 +3350,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", + "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", "block_index": 140, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3429,7 +3370,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3444,7 +3385,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147244, + "block_time": 1730149900, "asset_info": { "divisible": true, "asset_longname": null, @@ -3464,19 +3405,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", + "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3484,7 +3425,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3499,7 +3440,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -3513,19 +3454,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", + "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", "block_index": 140, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3533,7 +3474,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3548,7 +3489,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147244, + "block_time": 1730149900, "asset_info": { "divisible": true, "asset_longname": null, @@ -3567,16 +3508,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", + "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", "block_index": 194, - "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730147463, + "block_time": 1730150109, "fee_paid_normalized": "0.00600000" } ], @@ -3587,14 +3528,14 @@ "result": [ { "tx_index": 68, - "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", + "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -3609,20 +3550,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730147494, + "block_time": 1730150139, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "ecedf49fefa307a78131f6b1d7f52c17b4ececb2e16f6ace25f1e6735fe7090f", + "tx_hash": "bfaad85954beda99abea4a7010a07447599bbf6f22ea125e30ed294c7f5218f0", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -3637,20 +3578,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730147339, + "block_time": 1730149990, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "4ef076610716e47917b7d9a1703541120e00b089e1da54ae1a615438306de745", + "tx_hash": "05689fcc47dfef00b3da5ab26a1b46ea1887fa933a6f6903acb19faf207eca1f", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -3665,20 +3606,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730147334, + "block_time": 1730149986, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "4a865f981bedcaa6f59c08c2b25f1e47c0c1db264cac059bd89ad1011fd381e0", + "tx_hash": "b9a6fb371b7caf85edb70d0c373d91aad170224779eb8f3effcbeec5ea512deb", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -3693,20 +3634,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730147330, + "block_time": 1730149983, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "a65366c8d04355c3ec10374f3abcb6c2aa5d455b1ff2ca72cee7c67943ff6e12", + "tx_hash": "6e5931b93013418aa0a6e7540e41bec82e1bd61e68f03b4f0488178a69c2f131", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -3721,7 +3662,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730147326, + "block_time": 1730149979, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3735,8 +3676,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 100000000000, @@ -3744,16 +3685,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730147494, - "last_issuance_block_time": 1730147494, + "first_issuance_block_time": 1730150139, + "last_issuance_block_time": 1730150139, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 10000000000, @@ -3761,16 +3702,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730147326, - "last_issuance_block_time": 1730147334, + "first_issuance_block_time": 1730149979, + "last_issuance_block_time": 1730149986, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 100000000000, @@ -3778,16 +3719,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730147287, - "last_issuance_block_time": 1730147287, + "first_issuance_block_time": 1730149941, + "last_issuance_block_time": 1730149941, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 40, @@ -3795,16 +3736,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730147227, - "last_issuance_block_time": 1730147231, + "first_issuance_block_time": 1730149878, + "last_issuance_block_time": 1730149883, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 19, @@ -3812,8 +3753,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730147211, - "last_issuance_block_time": 1730147222, + "first_issuance_block_time": 1730149865, + "last_issuance_block_time": 1730149874, "supply_normalized": "0.00000019" } ], @@ -3826,8 +3767,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 100000000000, @@ -3835,16 +3776,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730147494, - "last_issuance_block_time": 1730147494, + "first_issuance_block_time": 1730150139, + "last_issuance_block_time": 1730150139, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 10000000000, @@ -3852,16 +3793,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730147326, - "last_issuance_block_time": 1730147334, + "first_issuance_block_time": 1730149979, + "last_issuance_block_time": 1730149986, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 100000000000, @@ -3869,16 +3810,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730147287, - "last_issuance_block_time": 1730147287, + "first_issuance_block_time": 1730149941, + "last_issuance_block_time": 1730149941, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 40, @@ -3886,16 +3827,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730147227, - "last_issuance_block_time": 1730147231, + "first_issuance_block_time": 1730149878, + "last_issuance_block_time": 1730149883, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 19, @@ -3903,8 +3844,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730147211, - "last_issuance_block_time": 1730147222, + "first_issuance_block_time": 1730149865, + "last_issuance_block_time": 1730149874, "supply_normalized": "0.00000019" } ], @@ -3917,8 +3858,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 100000000000, @@ -3926,16 +3867,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730147494, - "last_issuance_block_time": 1730147494, + "first_issuance_block_time": 1730150139, + "last_issuance_block_time": 1730150139, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 10000000000, @@ -3943,16 +3884,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730147326, - "last_issuance_block_time": 1730147334, + "first_issuance_block_time": 1730149979, + "last_issuance_block_time": 1730149986, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 100000000000, @@ -3960,16 +3901,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730147287, - "last_issuance_block_time": 1730147287, + "first_issuance_block_time": 1730149941, + "last_issuance_block_time": 1730149941, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 40, @@ -3977,16 +3918,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730147227, - "last_issuance_block_time": 1730147231, + "first_issuance_block_time": 1730149878, + "last_issuance_block_time": 1730149883, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 19, @@ -3994,8 +3935,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730147211, - "last_issuance_block_time": 1730147222, + "first_issuance_block_time": 1730149865, + "last_issuance_block_time": 1730149874, "supply_normalized": "0.00000019" } ], @@ -4006,17 +3947,17 @@ "result": [ { "tx_index": 74, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086", - "block_time": 1730147530, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", + "block_time": 1730150162, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f:1", + "utxos_info": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4052,17 +3993,17 @@ }, { "tx_index": 71, - "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "block_index": 204, - "block_hash": "5d35bb0804bc053ef7d59c9d0c4a9f4bcd4bc52272146001da9b7757c898d039", - "block_time": 1730147517, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "3906807db0d56b9fec78f5982ba29d4512f200a4769bb4153d83c94df666c0a4", + "block_time": 1730150151, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d2621d21756eb8ebb22ce432b26450ae670d208f803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2040000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d630d477df0f6e07f91e8949433310400b60dd35803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e240000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767:0", + "utxos_info": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4070,14 +4011,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4085,7 +4026,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4104,17 +4045,17 @@ }, { "tx_index": 70, - "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", + "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", "block_index": 203, - "block_hash": "0770bd3567046a0c047163accfc399966280bdbd87644d765df50a5819c333f3", - "block_time": 1730147502, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "5b2cb939f6b6a782be5829b4a32d310f3e8b11c136ebed663d064b28e5700f62", + "block_time": 1730150148, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d2621d21756eb8ebb22ce432b26450ae670d208f803970def27ed5459d1126af8f037ccb8fe4aeac4d80e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2088746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d630d477df0f6e07f91e8949433310400b60dd35803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b:0", + "utxos_info": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4122,14 +4063,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4137,7 +4078,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4156,17 +4097,17 @@ }, { "tx_index": 69, - "tx_hash": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f", + "tx_hash": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c", "block_index": 202, - "block_hash": "5b62183f865f9122b0b1823726656c462dab8e5c45823a9c43b72ce9ce1bdbde", - "block_time": 1730147498, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "4def8f3f53efebbf9574a397c76511feff3e10ee36a643847e7619aa265947fa", + "block_time": 1730150144, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d2621d21756eb8ebb22ce432b26450ae670d208f", + "data": "02000000178d82231300000000000003e880d630d477df0f6e07f91e8949433310400b60dd35", "supported": true, - "utxos_info": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f:1", + "utxos_info": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4174,12 +4115,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4190,17 +4131,17 @@ }, { "tx_index": 68, - "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", + "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", "block_index": 201, - "block_hash": "7156384707e1643c99729bcff455e508cc134e75ff200fe29f1138d04e3ffe6b", - "block_time": 1730147494, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "block_hash": "283a8824308fb868afc9759ec62e9714ff889dbf79c0e6a5b9aa0d6f7d4b906a", + "block_time": 1730150139, + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e:1", + "utxos_info": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4231,20 +4172,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", + "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", "block_index": 154, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730147310, + "block_time": 1730149962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4266,9 +4207,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", + "tx_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", "block_index": 184, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4283,7 +4224,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730147353, + "block_time": 1730150014, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4309,9 +4250,9 @@ }, { "tx_index": 51, - "tx_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", "block_index": 207, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4326,7 +4267,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730147530, + "block_time": 1730150162, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4352,9 +4293,9 @@ }, { "tx_index": 57, - "tx_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", + "tx_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", "block_index": 192, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4369,7 +4310,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730147455, + "block_time": 1730150102, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4395,9 +4336,9 @@ }, { "tx_index": 59, - "tx_hash": "8c2d59b10cf446779609dae007a9bc91d0a00c457b17a0b279920ccbc776425e", + "tx_hash": "13047cb4dab1b0ba2151ae8e16379cc2b16fb4bb8f63e8c0f205359d365a62a2", "block_index": 193, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4412,7 +4353,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730147459, + "block_time": 1730150106, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4438,9 +4379,9 @@ }, { "tx_index": 74, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4455,7 +4396,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730147530, + "block_time": 1730150162, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4486,10 +4427,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "0998f235a3feba0746e143f431c1f698ca50ae3f8745598a4671168e9c151cef", + "tx_hash": "93dee74a73fd75a2b609a0b4cd62839d0d254025bf44bcb5513cad7d35bfa6f3", "tx_index": 42, "block_index": 155, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4514,7 +4455,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730147313, + "block_time": 1730149965, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4523,10 +4464,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", + "tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4551,7 +4492,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730147227, + "block_time": 1730149878, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4563,10 +4504,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", + "tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4591,7 +4532,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730147211, + "block_time": 1730149865, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4603,10 +4544,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "ef648a52d64c60ed013aa174ae6a48421d17f923b88d3aba2e05b58ef0c76886", + "tx_hash": "0e2c46ac44f390ff6b06d99469bca85858fa064feb09b8c2ef799039d36dfa3f", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4631,7 +4572,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730147206, + "block_time": 1730149860, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4643,10 +4584,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", + "tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4671,7 +4612,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730147187, + "block_time": 1730149841, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4689,22 +4630,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", + "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147231, + "block_time": 1730149883, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4713,22 +4654,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "a9ec529d035361f0f926d689b0a23cdf4fef412a2be429d5399f71ab7fbd086a", + "tx_hash": "fda34c124d140677eccc10bdff0dc1cac5550cd210cdabf0ec3cac7f5621c72d", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147222, + "block_time": 1730149874, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4737,22 +4678,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "93c5f036c8e324dda6f5e9e84e15f096906d0974ea4003bdf51cd4bd013c3ad4", + "tx_hash": "1a79feb1b1b318e55f4b6836518ac7315c78fc94029d4bfbe2e66f0341f3d69d", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147218, + "block_time": 1730149871, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4761,22 +4702,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "24ba6e5e817679a1c81bd41098b8ea21134e6fd0493e343e7ce171576bae5ef2", + "tx_hash": "52aa1faf5394a028bd06452893acd47a19a81f90b3984c7546cf5c0fa205f190", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147215, + "block_time": 1730149868, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4785,22 +4726,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "c8d21094348438b7c4655120669db0ddae866ac6446b9ca3b607e8b9c96ac128", + "tx_hash": "d1586440adceece4e92b7437fba4cba5a60fe7b2bd73cef159abc829572d7f76", "tx_index": 15, "block_index": 127, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "ef648a52d64c60ed013aa174ae6a48421d17f923b88d3aba2e05b58ef0c76886", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "0e2c46ac44f390ff6b06d99469bca85858fa064feb09b8c2ef799039d36dfa3f", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147194, + "block_time": 1730149849, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4809,22 +4750,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", + "tx_hash": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147180, + "block_time": 1730149834, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4839,22 +4780,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", + "tx_hash": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147180, + "block_time": 1730149834, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4871,8 +4812,8 @@ { "asset": "XCP", "quantity": 1500000000, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "asset_info": { "divisible": true, "asset_longname": null, @@ -4885,12 +4826,12 @@ { "asset": "MYASSETA", "quantity": 1500000000, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -4906,7 +4847,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4918,7 +4859,7 @@ "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "02000000000101ec554f96df34adde2d052d8c8ff141c82bbe4c0e291b407e2db656d0bcad131700000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff0200000000000000002b6a29c707dd529b7abad7f5c6edfa52a167c2b99a13f93fb0e203b60d7e7f271c4d040d8c93648bec77fada83ba052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "02000000000101a16813c6cbda4394caf28ebf52642d8f4c3a0951615e5c3c2714fb2d5edb99c10000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff0200000000000000002b6a29fb22783a08b808d57fec85d10dc4cc7474cc5c11299d8be14b5c6f6c63ec479d7d89ded2d8dbb6129383ba052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4936,23 +4877,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9" + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1" }, "name": "btcpay", - "data": "434e5452505254590b99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "data": "434e5452505254590bbee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82ef9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978921, "btc_fee": 18079, - "rawtransaction": "02000000000101f783ff9ef8362151324d3e3c73fd567bdc7330f40489345ff887d25221866a0f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff03b80b000000000000160014527fc786dce354681ff9800bc9b06a2a44fd524e00000000000000004b6a49b2da7a60d77d3e2ff5da583fe83f15a8a9cc207b59c30ca77d213dc899f6c4a65378180ebf2504f1e34b96a5d845089e833b98161b8225a44c42a42a58827d9e94f03470c733093a41a99f052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "02000000000101b7bdde1323902defae298dc5e6725026dcd9e92e8d6df8a467b1ae2f8f65a98c0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff03b80b00000000000016001453acd20b89492c54642d81b92cdc32862046ce7100000000000000004b6a496c56d1b9cc9c99f2c1186c78fce1461d1a4885cc655bb120d5e2d15f68776717d357c5ebc0617e4cbad496680db286dff338ee270e42da36772480c28e54fcafb6cf980d3ed8395f8aa99f052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", - "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "status": "valid" } } @@ -4961,7 +4902,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "quantity": 1000, "overburn": false }, @@ -4971,27 +4912,27 @@ "btc_out": 1000, "btc_change": 4999985793, "btc_fee": 13207, - "rawtransaction": "020000000001017cc467ffa3846c0908d281028a906a2f987f00285abe9533fe70de6809112ed700000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000" + "rawtransaction": "0200000000010131fa73b5d4effef47223f586d146bcdb01a1b5ca74702206aa2c981f0c1bef380000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "offer_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f" + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "offer_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830" }, "name": "cancel", - "data": "434e54525052545946ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "data": "434e54525052545946affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "02000000000101f21565ec24ac8a6c096fe0d96924dbef615d2d131b10317105784673b582f96000000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff0200000000000000002b6a298bcb8bd253cae71a7e3f78c9ba32e28019c386c1523aa89e7b3c6138f2172a03481507a8669ac7efdb83ba052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "02000000000101986b752aa9bcf253eb6166b125bc4b962fb4be72afcfedfb5bea6db7124013420000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff0200000000000000002b6a29a264c680ff8488221489027a95d43a65eb06c19f524ee1ec0933808007294988a829a932c94f1bf3c983ba052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "offer_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "status": "valid" } } @@ -5000,7 +4941,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -5019,7 +4960,7 @@ "btc_out": 0, "btc_change": 4999986323, "btc_fee": 13677, - "rawtransaction": "02000000000101edca6184e83a2f2a9bb0ac09055f30de12f8f1e8e6099d7d60efe1f13506b06800000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000226a208a5dc160058962707268a118313c98488ef8e198371871ff602001eaf8963b3e93bc052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "020000000001016b1b80af5d849670ff64fd6d4049b93d30ee541dfa6d8a6fdb417b9570aae5db0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000226a20a2c8663360f1bf8191fc65393b59e5780de29514e6b3271b33778308bdb2b89693bc052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -5033,19 +4974,19 @@ } }, "/v2/addresses/
/compose/dispenser": { - "error": "invalid UTXO: 39b475d96fe427bf70a7413c344bbfa88768c4f038da4a0efceb2d0a3b5065bf:0" + "error": "invalid UTXO: 508340a6b50309287c608280e281aeb60e7fdb44401c73cc2d824350a587a82b:0" }, "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -5064,7 +5005,7 @@ "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "020000000001018aaa34296c5eaaaa5af41403de267a2b2d8521c1318fd5952d28e9f92d6c179300000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000236a21e9b0acfa86a694d7f95ef829118248d90aa0eb3df28e46d40ba6e86282c5e54dce58bc052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "0200000000010174b414fd30c96205105a31a703c8fbb63ee940861fff7e19d57d4b7fb76d69730000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000236a21fe12993920573aa7800ba36b3bd9522137afd716c44bfcb0bcc426a6895ac1a21858bc052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5081,10 +5022,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "transfer_destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "lock": false, "reset": false, @@ -5097,7 +5038,7 @@ "btc_out": 546, "btc_change": 4999983723, "btc_fee": 15731, - "rawtransaction": "0200000000010154ad99d547dce324cf6c8c1cad5a34d8fbec5ca1144b1dc1e1d84bc790b3aada00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff032202000000000000160014527fc786dce354681ff9800bc9b06a2a44fd524e0000000000000000236a2110b125f993ac326e3f43a8ef54c0b53167c5af10c3ef537d00ef290d80cfed305c6bb2052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "02000000000101e1a3f1ada3217a1505637717ee8298f57e874e534b68690dcf8495fae60e5aa20000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff03220200000000000016001453acd20b89492c54642d81b92cdc32862046ce710000000000000000236a21844f5e277f678854121c6312b80487336a152fb17918ba74747fdb06c3b8a2e2806bb2052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5122,16 +5063,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", 1 ], [ "MPMASSET", - "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", 2 ] ], @@ -5139,26 +5080,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e54525052545903000280527fc786dce354681ff9800bc9b06a2a44fd524e80d2621d21756eb8ebb22ce432b26450ae670d208f40000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e5452505254590300028053acd20b89492c54642d81b92cdc32862046ce7180d630d477df0f6e07f91e8949433310400b60dd3540000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945404, "btc_fee": 52596, - "rawtransaction": "02000000000104eb16b1dea782b710fe959e2403a3444a73b1b428be97b4f759db556ec294cd6e00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff8bfecbfd4d7c1ac49abe78c4aab75848d36f482911123a35161cd1948d5ad31a00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff44b8185ee04b24bf5457051abf4738e1ab2202b08208d0900d3bb07d3859e35600000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffffb3a91e8473d3bcf38592e933a9a9a1c886b76a2edbd1d705ab37223ec621994f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff03e80300000000000069512103229c1ad740e1fc7fe315b713d61367a44b16f37daa05db4a8a0c3b783897df28210247b946b98e1484ab58f866adaf57143b427f4078cb44b221122d6c84343f3449210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53aee803000000000000695121033d9c1ad740e1fc7fe3c6b71156411863cdee1029c21a22ca81c18b1212d32203210215f7c76bec09a5de36408d1f83b32689262fee1fc6643d61122d696754b7f062210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53aebcf216a804000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000002000002000002000000000000", + "rawtransaction": "02000000000104f774d36dff6d2786ec3b57ebb0c6dc5065f653e1a3ec007e66c21e21d46ffde50000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffffae4dd615d91336a8690b9aafe0e1617c1f4355e4be5d4bac09edb74e9cf4f2ce0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff70a2fb38ffc69b48d06226cc480565f32dbca5e1fef2979a796d755368803f8a0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff90eb00cdf8c1ac8e43f29ea7d3b81dec006bb3f0eedfb730221e77b51b494ff50000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff03e80300000000000069512102f15bddc977261dc0ca449e10c45d3c04ddd4ec9108e620c3285d352902e80a0f21034a588fe557248f340c1a13a5e3cba2211108b8c5b8f23f48d246f28c19a92d4221026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c53aee80300000000000069512103ee5bddc977261dc0ca979e12440e90d6d679a5bd5c820d429175e91b84c84c38210384290e3367f0f8eb0374145cfd42eb622218f8ced82f0a08d246f76f7921e9c721026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c53aebcf216a80400000016001453acd20b89492c54642d81b92cdc32862046ce7102000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5170,7 +5111,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5187,7 +5128,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -5201,7 +5142,7 @@ "btc_out": 0, "btc_change": 4999985208, "btc_fee": 14792, - "rawtransaction": "020000000001013ccaeac64cc74c78aef490bfae465b26ce4d220bd88c53177d880ed6dfea3dd700000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000356a335729e4bf32af8f0e0ce28caf305a31a0812e519e4adc58500482f912e756736022499ff5709b2ca48cd36bcb4cb95e61cb179138b8052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "020000000001018a5431282e296f8f6ec31997a9a19adbe0256760f91162762bd13197339dd29b0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000356a336e82d0e5da1fae99227559bc259661cd39188bfb165d81e7842d2f24bd003797730b4ff853fffad533e50faf2511417376206738b8052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5223,8 +5164,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5240,19 +5181,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d2621d21756eb8ebb22ce432b26450ae670d208f", + "data": "434e54525052545902000000000000000100000000000003e880d630d477df0f6e07f91e8949433310400b60dd35", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985501, "btc_fee": 14499, - "rawtransaction": "02000000000101d2f9655814140cfeae93a2e40eb2285f960de02624abe024150dab6c014da1f300000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000306a2eb969df85bea8ea91ea294ef9f0aaa6469576d27c614e4adbf7deee7540e457ac380a29697a2f5d6b0577e85a2c735db9052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "020000000001018ce1dac28e46b9ffc500532f032c7b6a095ded5eed19562e548949cae92e26e20000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000306a2e751a14448bb75f0b213c510aec235f87d66fe6f5f5838ab19907721972b931a89ce9785511175d1b89d9cbe364525db9052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "memo": null, "quantity_normalized": "0.00001000" } @@ -5262,23 +5203,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480d2621d21756eb8ebb22ce432b26450ae670d208f07ffff", + "data": "434e5452505254590480d630d477df0f6e07f91e8949433310400b60dd3507ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "02000000000101673d5bbca76da706712756c51a521ad02e735ebcd33dde3f61a615cffb602c8700000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000236a21ff6f20411bc7edae051336c0c581ebeac8000a4390289d2ca70960fa50db2a70d158bc052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "020000000001012bf41b5b20cc150647aacd5020b3a1b707d3fb13e5e428d3687f2ce64096877b0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000236a215169fbeea60c9864d21a2671087cf6509cde7a5985eab95d76ca13d34b6cd7008258bc052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "flags": 7, "memo": "ffff" } @@ -5288,8 +5229,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "quantity": 1000 }, "name": "dispense", @@ -5298,7 +5239,7 @@ "btc_out": 1000, "btc_change": 4949812619, "btc_fee": 14381, - "rawtransaction": "02000000000101e636303a873dcef54d7de9aa2af7c6eba3d2db3a0db88c259eeb62884461a52f03000000160014d2621d21756eb8ebb22ce432b26450ae670d208fffffffff03e803000000000000160014e8357d02fbc701ab928c73d7d2cfcd62d7dd2c2000000000000000000c6a0adc4ca86eef93f50841298b25082701000000160014d2621d21756eb8ebb22ce432b26450ae670d208f02000000000000", + "rawtransaction": "02000000000101b5ee039444727c228f35e9c208bf7373e34d240942221db5ee97bf1a306046d003000000160014d630d477df0f6e07f91e8949433310400b60dd35ffffffff03e8030000000000001600143c9e235caa5be4be07a3dfbf730d21c096c653e200000000000000000c6a0ae8fe42d79e54765e9b2d8b25082701000000160014d630d477df0f6e07f91e8949433310400b60dd3502000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5311,7 +5252,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5342,7 +5283,7 @@ "btc_out": 0, "btc_change": 4999985443, "btc_fee": 14557, - "rawtransaction": "020000000001019e8858a0cbb589a8d8d5b69862a7b6a3ac33ff311114fdc36a7fe9b27cd09e6f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000316a2f9f0dae530e4c2d83cc5b76667cb865f3c426c948aa34ddff60fa6e66025c62bab7ddcb6a1237be3e0a37741a99eeef23b9052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "02000000000101f94a34858f6216ab91942f2962dd5a888e4824b0fb03395484d045bed53428d80000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000316a2fa06d07855f57ad2eca0b372207b3d4ce15a16b0d1f95d679727d1933bac64c4e38649fe4b99c73651a71df87c7741623b9052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5377,13 +5318,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -5395,7 +5336,7 @@ "btc_out": 0, "btc_change": 4999987028, "btc_fee": 12972, - "rawtransaction": "0200000000010113279095345a2f2ac96393d18fbf278be94aea081285a8b7626dc89b7d11f23f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff020000000000000000166a14f50858299126a56cacebad8bcc2eb8bde8c35f6254bf052a01000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000000000000", + "rawtransaction": "0200000000010160bf483bfb75fd9aff99462c31a13a8dffe086ce6de938b617206815e38d0af60000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000166a14431570188731b14184fc873f882909c90af214c054bf052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5410,8 +5351,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767:3", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5424,12 +5365,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e5452505254596462637274317132666c7530706b757564327873386c65737139756e76723239667a3036356a7730336136346d7c646230353531373664633534666438393539633761353661663535646636666535376337626337643161633564663363393466363436616334353733623736373a337c5843507c31303030", + "data": "434e5452505254596462637274317132776b64797a756666796b39676570647378756a6568706a73637379646e6e336767767537307c616666623438313266616261303838393433333738643339383838383562333566653137393634626531353337306362323833613038663634393563383833303a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918400, "btc_fee": 78600, - "rawtransaction": "020000000001066b9740003b749ea753f9d0b74a875c83c60667410c961203fa761dc7bdcb008f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffffd7606422e2d0ada7d99ccad4bcdb51dbe0c0d3a4d601253a9742899b5fb1292800000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff5975cc919095d0a390c024e7674d89beb25fe0fd759a73b8247d1a5e4e7e0c1f00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff271e2d4f309e0a86df152fad193229530fa40288f2f4817d5289a3bcf2d221f200000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffffaacfa165e430871e4aac30fc62e6f07950866fa5e90ba26425aeed455236c2eb00000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff389e7f52492ec0939d60faee8742c64336f492ed6bb50d8f983fb6d372d3cbb500000000160014527fc786dce354681ff9800bc9b06a2a44fd524effffffff04e8030000000000006951210222ab349b8563f53461bed1c6278c3ee9156292f56c7a4608a2add91f6754f83a2102573836ca5bed8cddce8b8ec41112fabeede30072f363f52986c057c3d18c4fe2210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53aee8030000000000006951210222ab349b8563f53461ecd7c660cc69fc1f3dcbb93f3d4c48e1a88d522108f2012103042d22c619e0cdcd9f858c8f4047fab0fce0502af131ae61d4c304c2d18a4be5210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53aee8030000000000006951210308ab349b8563f53461b8849362c23ce47f47aefc6d3a1d4dd7c9eb67146c94232103324b47f32e83faaffcb2e8be2124cfd49ad33313c5579855e2a267f6e4bd78b9210241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e53ae406d22fc06000000160014527fc786dce354681ff9800bc9b06a2a44fd524e02000002000002000002000002000002000000000000", + "rawtransaction": "020000000001062ea2715c88439687e9a5ff953de075a8f14e66ef5dd3e11e6e02f4c09d460a060000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff875b3b180194df32dd19fa9503d98c50efaae911f6f667150073d0e293a2d4860000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffffd20d5edc36a6ae19fcb6427a85cc2989aedb154a44df36fcabe59e0a83c7104b0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffffd5a13b826bd404c64e6ac6f7e64f35f1762c1d8250e01d979ddb9b948c84bb1c0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff572ea89ef5b2eb4c6aef192ffebc64a3adb4cf84f192744333f4d1f8ed07bc5b0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffffd994dcbf7384a57c44b7563bab1a21bf09bd5696bc41187bd542221ec1bd6ee20000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff04e803000000000000695121034a53d463f8074cff8f62ebb7222c1c0f6cd9aadbff200c01c5833d621a3cf6dd2102b960e4c6250bc80798cab6b3ee86bea7e2475b6280720a36e80c8af4deaca88921026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c53aee803000000000000695121034a53d463f8074cff8f34efb532391d466697f58cb56d410390c36e634561b34c2102bf20a9d52a5f974ec48db7a5a6d7e3fee1435e26cd765b7ab10cdaa2d3a1fa8821026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c53aee803000000000000695121026053d463f8074cff8f3eb1e760621c0206ed91c3b76a4957a3fa565b7d5986842103dd139cb34f6ea077f2b9d5c097e2d0c9d1203c14f5453a4a896aec96ea94996b21026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c53ae406d22fc0600000016001453acd20b89492c54642d81b92cdc32862046ce7102000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5442,8 +5383,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5456,12 +5397,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964333965653735326233313262373733323931303561363861623335633636376238303330376636613564326232303434396232366438656263316534313863323a307c62637274317132666c7530706b757564327873386c65737139756e76723239667a3036356a7730336136346d7c5843507c31303030", + "data": "434e54525052545964616539623565373039643434363366653765626466343131633439313165313266646539393439373434306636623965366430626432653566663135323935623a307c62637274317132776b64797a756666796b39676570647378756a6568706a73637379646e6e336767767537307c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030275, "btc_fee": 46725, - "rawtransaction": "02000000000103d9d64e30e4cddc4ae711b103673ff2ef778b8b76a0ac6f4837a710f94ff2b80d01000000160014683c2d33034856d0b1db09c7b7e1773ae80add54ffffffff9ab86aed71e4c98fe94801572d8dd97a70c6ab07ec9052ddf5b44bcbbff0dad200000000160014683c2d33034856d0b1db09c7b7e1773ae80add54ffffffff12ac675882dc75787ee844b16a29500ca2d9d580928628d0e631bd8cad66a0df01000000160014683c2d33034856d0b1db09c7b7e1773ae80add54ffffffff04e8030000000000006951210299cdde3a3c495e64c938ac002b937eab26380991760805e8a9a35e27004c13c321021fb8e637e1d21d7b95419c3ccf53d234602cf32dacd2f131e09781b4a0227c272102e724a18b424760c2ae31273f48b5a06c7a2a3bccc4115ff383a3e80b8dbdbd6053aee8030000000000006951210299cdde3a3c495e64c938a75c2c9578fb206b02c3765002a3f8f215620108406e21034fecf265a28c0b38c7448677c70c87707723e776be92a13ab6d985bbf77a3dbc2102e724a18b424760c2ae31273f48b5a06c7a2a3bccc4115ff383a3e80b8dbdbd6053aee80300000000000069512102b3cdde3a3c495e64c96cac5878c224e24c196adc755a02ef9a916716307972f5210229808755d2e77e4da376fe04ff60e203061a9218c8e09303d0a3b58dc2104ad02102e724a18b424760c2ae31273f48b5a06c7a2a3bccc4115ff383a3e80b8dbdbd6053aec3770b2701000000160014683c2d33034856d0b1db09c7b7e1773ae80add5402000002000002000000000000", + "rawtransaction": "02000000000103ba847062b0903b9fccc451378ce19ea4f04d786f938502bed3c9b48eba351337010000001600149e3d73cf180ab4652f14e45d6dd17012e1442b00fffffffffce41e62934b44d48ddc1fc02758f3d1f4898f0fb9bd9d9bfa9258eed64bad5f000000001600149e3d73cf180ab4652f14e45d6dd17012e1442b00ffffffffe725dd965df10a780a6d4fab6722ab9bbe0cc75862621fae38a6c22b5f52a401010000001600149e3d73cf180ab4652f14e45d6dd17012e1442b00ffffffff04e8030000000000006951210394b23fa5321e236b5f9911eea827ac480b5b4160bff8810db7bbdd6b405d64d8210262dfb957d1153681a831349d36375941f8881095bf5281a956844ed8a2dc2b3c2102cb42db2ff4f01f61ce4d4f401f6af5315110c4ff80e640b55fd27915d822287253aee8030000000000006951210394b23fa5321e236b5f9942eea423ff1c09594131e9f68742b3bd987a134830bf21022185ec4d9f5961d6b46b3f9c3722040bb4c44dc4e3128dec57ce528aa8827a6f2102cb42db2ff4f01f61ce4d4f401f6af5315110c4ff80e640b55fd27915d822287253aee80300000000000069512103beb23fa5321e236b5f9a17fde472a95164282878bafc870ed1deea0e2239029e210356ee8834e52c07b0cd0006fb52526078ccb127a18b62e79f34bd2beec6ec49ac2102cb42db2ff4f01f61ce4d4f401f6af5315110c4ff80e640b55fd27915d822287253aec3770b27010000001600149e3d73cf180ab4652f14e45d6dd17012e1442b0002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5477,8 +5418,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 100000000000, @@ -5486,16 +5427,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730147494, - "last_issuance_block_time": 1730147494, + "first_issuance_block_time": 1730150139, + "last_issuance_block_time": 1730150139, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", - "owner": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", + "issuer": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", + "owner": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", "divisible": true, "locked": false, "supply": 100000000000, @@ -5503,16 +5444,16 @@ "first_issuance_block_index": 198, "last_issuance_block_index": 198, "confirmed": true, - "first_issuance_block_time": 1730147479, - "last_issuance_block_time": 1730147479, + "first_issuance_block_time": 1730150124, + "last_issuance_block_time": 1730150124, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 10000000000, @@ -5520,16 +5461,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730147326, - "last_issuance_block_time": 1730147334, + "first_issuance_block_time": 1730149979, + "last_issuance_block_time": 1730149986, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", - "owner": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "issuer": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "owner": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "divisible": true, "locked": false, "supply": 100000000000, @@ -5537,16 +5478,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730147321, - "last_issuance_block_time": 1730147321, + "first_issuance_block_time": 1730149974, + "last_issuance_block_time": 1730149974, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 100000000000, @@ -5554,8 +5495,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730147287, - "last_issuance_block_time": 1730147287, + "first_issuance_block_time": 1730149941, + "last_issuance_block_time": 1730149941, "supply_normalized": "1000.00000000" } ], @@ -5567,8 +5508,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "owner": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false, "supply": 10000000000, @@ -5576,15 +5517,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730147176, - "last_issuance_block_time": 1730147187, + "first_issuance_block_time": 1730149829, + "last_issuance_block_time": 1730149841, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5592,14 +5533,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5607,7 +5548,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -5620,7 +5561,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -5642,9 +5583,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", + "tx_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", "block_index": 184, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5659,7 +5600,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730147353, + "block_time": 1730150014, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5685,9 +5626,9 @@ }, { "tx_index": 51, - "tx_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", "block_index": 207, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5702,7 +5643,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730147530, + "block_time": 1730150162, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5728,9 +5669,9 @@ }, { "tx_index": 57, - "tx_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", + "tx_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", "block_index": 192, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5745,7 +5686,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730147455, + "block_time": 1730150102, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5771,9 +5712,9 @@ }, { "tx_index": 59, - "tx_hash": "8c2d59b10cf446779609dae007a9bc91d0a00c457b17a0b279920ccbc776425e", + "tx_hash": "13047cb4dab1b0ba2151ae8e16379cc2b16fb4bb8f63e8c0f205359d365a62a2", "block_index": 193, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5788,7 +5729,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730147459, + "block_time": 1730150106, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5814,9 +5755,9 @@ }, { "tx_index": 74, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5831,7 +5772,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730147530, + "block_time": 1730150162, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5862,13 +5803,13 @@ "/v2/assets//matches": { "result": [ { - "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "tx0_index": 51, - "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 54, - "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", - "tx1_address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "tx1_address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5882,7 +5823,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730147430, + "block_time": 1730150087, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5902,13 +5843,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", "tx0_index": 51, - "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 52, - "tx1_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", - "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "tx1_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5922,7 +5863,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730147427, + "block_time": 1730150084, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5942,13 +5883,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962_9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", + "id": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97_caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", "tx0_index": 49, - "tx0_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 50, - "tx1_hash": "9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", - "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "tx1_hash": "caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", + "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5962,7 +5903,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730147353, + "block_time": 1730150014, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5989,20 +5930,20 @@ "result": [ { "block_index": 194, - "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", + "event": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147463, + "block_time": 1730150109, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -6010,20 +5951,20 @@ }, { "block_index": 125, - "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "f758697b62ece0df11283b89756ced9214a9f2bc83f7f4e02b74736099dab0d7", + "event": "e85bdf707fe349f0e40e559b6a1f20a10a1e0f329a969174ed358ea1e715df9d", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147187, + "block_time": 1730149841, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -6031,20 +5972,20 @@ }, { "block_index": 124, - "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "830a7b9e1f16656de3d506078bbeb7daa4cac5f7a80eb58cd6d4e749dea4b48c", + "event": "9ab485c03158b0379a31a0ed1f790c058cddbccea9db255dd3cfcb37da360985", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147183, + "block_time": 1730149837, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -6052,20 +5993,20 @@ }, { "block_index": 124, - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", + "event": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147183, + "block_time": 1730149837, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -6077,16 +6018,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "830a7b9e1f16656de3d506078bbeb7daa4cac5f7a80eb58cd6d4e749dea4b48c", + "event": "9ab485c03158b0379a31a0ed1f790c058cddbccea9db255dd3cfcb37da360985", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147183, + "block_time": 1730149837, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -6104,12 +6045,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "utxo": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "utxo_address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "utxo": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "utxo_address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -6121,16 +6062,16 @@ }, { "block_index": 207, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "event": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147530, + "block_time": 1730150162, "asset_info": { "divisible": true, "asset_longname": null, @@ -6142,16 +6083,16 @@ }, { "block_index": 206, - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "event": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147525, + "block_time": 1730150158, "asset_info": { "divisible": true, "asset_longname": null, @@ -6163,16 +6104,16 @@ }, { "block_index": 205, - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "4f72d5bee6053f9591d332772cf67ec1874d67118be7049fac7da1ed5b6f83b8", + "event": "5cc312fce3a8f8432aea553285ab698a3d10185eafdb52df5723ee3ed378d751", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147521, + "block_time": 1730150154, "asset_info": { "divisible": true, "asset_longname": null, @@ -6184,16 +6125,16 @@ }, { "block_index": 204, - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "event": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147517, + "block_time": 1730150151, "asset_info": { "divisible": true, "asset_longname": null, @@ -6216,14 +6157,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "f758697b62ece0df11283b89756ced9214a9f2bc83f7f4e02b74736099dab0d7", + "tx_hash": "e85bdf707fe349f0e40e559b6a1f20a10a1e0f329a969174ed358ea1e715df9d", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -6238,20 +6179,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730147187, + "block_time": 1730149841, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "830a7b9e1f16656de3d506078bbeb7daa4cac5f7a80eb58cd6d4e749dea4b48c", + "tx_hash": "9ab485c03158b0379a31a0ed1f790c058cddbccea9db255dd3cfcb37da360985", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -6266,20 +6207,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730147183, + "block_time": 1730149837, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", + "tx_hash": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -6294,20 +6235,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730147180, + "block_time": 1730149834, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", + "tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -6322,7 +6263,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730147176, + "block_time": 1730149829, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6334,10 +6275,10 @@ "result": [ { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6345,7 +6286,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -6358,10 +6299,10 @@ }, { "tx_index": 73, - "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "block_index": 206, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6369,7 +6310,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730147525, + "block_time": 1730150158, "asset_info": { "divisible": true, "asset_longname": null, @@ -6382,10 +6323,10 @@ }, { "tx_index": 72, - "tx_hash": "4f72d5bee6053f9591d332772cf67ec1874d67118be7049fac7da1ed5b6f83b8", + "tx_hash": "5cc312fce3a8f8432aea553285ab698a3d10185eafdb52df5723ee3ed378d751", "block_index": 205, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6393,7 +6334,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730147521, + "block_time": 1730150154, "asset_info": { "divisible": true, "asset_longname": null, @@ -6406,10 +6347,10 @@ }, { "tx_index": 71, - "tx_hash": "db055176dc54fd8959c7a56af55df6fe57c7bc7d1ac5df3c94f646ac4573b767", + "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", "block_index": 204, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6417,7 +6358,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730147517, + "block_time": 1730150151, "asset_info": { "divisible": true, "asset_longname": null, @@ -6430,10 +6371,10 @@ }, { "tx_index": 70, - "tx_hash": "9625dcd321929652fa8f6603dd46a15b3cbbcdce33529de1df73dfd900c6370b", + "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", "block_index": 203, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6441,7 +6382,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730147502, + "block_time": 1730150148, "asset_info": { "divisible": true, "asset_longname": null, @@ -6460,9 +6401,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6471,7 +6412,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6481,7 +6422,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -6497,9 +6438,9 @@ }, { "tx_index": 29, - "tx_hash": "0f8b14713e0204ae9ff12c34e2165f2d60b09ca423e678e8a5330a4016d691d1", + "tx_hash": "4473f2dbb7eb09b4240bbb4d13cf34b75bb23352b2c27da502c37866a024f217", "block_index": 142, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6508,7 +6449,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "origin": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6518,7 +6459,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147253, + "block_time": 1730149918, "asset_info": { "divisible": true, "asset_longname": null, @@ -6534,9 +6475,9 @@ }, { "tx_index": 30, - "tx_hash": "aa2eb896e9aab9ff1080957160ee3e8e9ccdfe2e0d1487c2aea504a2fbd46ff9", + "tx_hash": "3075db3fd894fb4982759d08c57ccf5915c726f7f2c2de2eb1cb9b695ac565b3", "block_index": 150, - "source": "mg2iDq9hHHgarJckVLMgpwt5YE7WjvUVPs", + "source": "mxVik5RWM3aheqn4VPBhE4NkDjFECW4vt5", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6544,10 +6485,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "c1af00f61ee9d962dec73cc4efbdaaefc68742f334d37368fddf8dfefe137210", - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "last_status_tx_hash": "6d03e19b70659ea140a7f92d319e95dd4815b2ece8393b26b1c9a0d7ba77f279", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 0, - "last_status_tx_source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "last_status_tx_source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6555,7 +6496,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147296, + "block_time": 1730149949, "asset_info": { "divisible": true, "asset_longname": null, @@ -6571,18 +6512,18 @@ }, { "tx_index": 33, - "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "last_status_tx_hash": null, - "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6592,7 +6533,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -6613,9 +6554,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6624,7 +6565,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6634,7 +6575,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -6662,7 +6603,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -6670,7 +6611,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6679,7 +6620,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -6687,7 +6628,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6696,7 +6637,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -6704,7 +6645,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6713,7 +6654,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -6728,27 +6669,27 @@ { "tx_index": 75, "dispense_index": 0, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "last_status_tx_hash": null, - "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6763,7 +6704,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -6777,27 +6718,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "d2daf0bfcb4bb4f5dd5290ec07abc6707ad98d2d570148e98fc9e471ed6ab89a", + "tx_hash": "5fad4bd6ee5892fa9b9dbdb90f8f89f4d1f35827c01fdc8dd4444b93621ee4fc", "block_index": 147, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "destination": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "destination": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "last_status_tx_hash": null, - "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6812,7 +6753,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730147283, + "block_time": 1730149937, "asset_info": { "divisible": true, "asset_longname": null, @@ -6826,19 +6767,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", + "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6846,7 +6787,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6861,7 +6802,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -6875,19 +6816,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", + "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", "block_index": 140, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6895,7 +6836,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6910,7 +6851,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147244, + "block_time": 1730149900, "asset_info": { "divisible": true, "asset_longname": null, @@ -6933,10 +6874,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", + "tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6961,7 +6902,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730147187, + "block_time": 1730149841, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6979,22 +6920,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "f758697b62ece0df11283b89756ced9214a9f2bc83f7f4e02b74736099dab0d7", + "tx_hash": "e85bdf707fe349f0e40e559b6a1f20a10a1e0f329a969174ed358ea1e715df9d", "tx_index": 13, "block_index": 125, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", - "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147187, + "block_time": 1730149841, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -7003,22 +6944,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "830a7b9e1f16656de3d506078bbeb7daa4cac5f7a80eb58cd6d4e749dea4b48c", + "tx_hash": "9ab485c03158b0379a31a0ed1f790c058cddbccea9db255dd3cfcb37da360985", "tx_index": 12, "block_index": 124, - "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", - "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", + "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147183, + "block_time": 1730149837, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -7027,22 +6968,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", + "tx_hash": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147180, + "block_time": 1730149834, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -7057,22 +6998,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "d8250416b78f23074bfd9aa6fc63aecc52035db84551913555ea70eb9177705c", + "tx_hash": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147180, + "block_time": 1730149834, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -7088,9 +7029,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", + "tx_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", "block_index": 184, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7105,7 +7046,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730147353, + "block_time": 1730150014, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7131,9 +7072,9 @@ }, { "tx_index": 52, - "tx_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "tx_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", "block_index": 187, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7148,7 +7089,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730147427, + "block_time": 1730150084, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7174,9 +7115,9 @@ }, { "tx_index": 54, - "tx_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "tx_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "block_index": 188, - "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7191,7 +7132,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730147430, + "block_time": 1730150087, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7217,9 +7158,9 @@ }, { "tx_index": 57, - "tx_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", + "tx_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", "block_index": 192, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7234,7 +7175,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730147455, + "block_time": 1730150102, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7260,9 +7201,9 @@ }, { "tx_index": 59, - "tx_hash": "8c2d59b10cf446779609dae007a9bc91d0a00c457b17a0b279920ccbc776425e", + "tx_hash": "13047cb4dab1b0ba2151ae8e16379cc2b16fb4bb8f63e8c0f205359d365a62a2", "block_index": 193, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7277,7 +7218,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730147459, + "block_time": 1730150106, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7308,9 +7249,9 @@ "/v2/orders/": { "result": { "tx_index": 74, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7325,7 +7266,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730147530, + "block_time": 1730150162, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7353,13 +7294,13 @@ "/v2/orders//matches": { "result": [ { - "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "tx0_index": 51, - "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 54, - "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", - "tx1_address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "tx1_address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7373,7 +7314,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730147430, + "block_time": 1730150087, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7393,13 +7334,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", "tx0_index": 51, - "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 52, - "tx1_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", - "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "tx1_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7413,7 +7354,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730147427, + "block_time": 1730150084, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7440,15 +7381,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", + "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", "block_index": 187, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "btc_amount": 2000, - "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", "status": "valid", "confirmed": true, - "block_time": 1730147427, + "block_time": 1730150084, "btc_amount_normalized": "0.00002000" } ], @@ -7459,9 +7400,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "tx_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", "block_index": 187, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7479,7 +7420,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730147427, + "block_time": 1730150084, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7505,9 +7446,9 @@ }, { "tx_index": 54, - "tx_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "tx_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "block_index": 188, - "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7525,7 +7466,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730147430, + "block_time": 1730150087, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7551,9 +7492,9 @@ }, { "tx_index": 49, - "tx_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", + "tx_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", "block_index": 184, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7571,7 +7512,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730147353, + "block_time": 1730150014, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7597,9 +7538,9 @@ }, { "tx_index": 51, - "tx_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", "block_index": 207, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7617,7 +7558,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730147530, + "block_time": 1730150162, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7643,9 +7584,9 @@ }, { "tx_index": 57, - "tx_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", + "tx_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", "block_index": 192, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7663,7 +7604,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730147455, + "block_time": 1730150102, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7694,13 +7635,13 @@ "/v2/orders///matches": { "result": [ { - "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "tx0_index": 51, - "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 54, - "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", - "tx1_address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "tx1_address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7717,7 +7658,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730147430, + "block_time": 1730150087, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7737,13 +7678,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", "tx0_index": 51, - "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 52, - "tx1_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", - "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "tx1_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7760,7 +7701,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730147427, + "block_time": 1730150084, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7780,13 +7721,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962_9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", + "id": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97_caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", "tx0_index": 49, - "tx0_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 50, - "tx1_hash": "9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", - "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "tx1_hash": "caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", + "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7803,7 +7744,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730147353, + "block_time": 1730150014, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7829,13 +7770,13 @@ "/v2/order_matches": { "result": [ { - "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "tx0_index": 51, - "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 54, - "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", - "tx1_address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "tx1_address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7849,7 +7790,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730147430, + "block_time": 1730150087, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7869,13 +7810,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", "tx0_index": 51, - "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 52, - "tx1_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", - "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "tx1_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7889,7 +7830,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730147427, + "block_time": 1730150084, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7909,13 +7850,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962_9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", + "id": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97_caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", "tx0_index": 49, - "tx0_hash": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx1_index": 50, - "tx1_hash": "9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", - "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "tx1_hash": "caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", + "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7929,7 +7870,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730147353, + "block_time": 1730150014, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7974,66 +7915,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "9e48aa492c822fb8f10573455eaf92d7238d1c56139fd15c3731cd53d0c10e6e", + "tx_hash": "1d67669f030d7a8d4afa14aaefef4fe7d507c15946907c1ec3b5688d4f587ce5", "block_index": 121, - "source": "bcrt1qutqyvw6qfn824wrr8kc5u5lhtyml7s9fg92uds", + "source": "bcrt1qvpsk2579x0my98dh6s9fxhlmk9u454p63anff9", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730147172, + "block_time": 1730149826, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "422452cf31c8190bad76ee05114c8fef9cfc2bff2289189668e02bd227432259", + "tx_hash": "a292ad6d93325e6d1548ace7936f98d323f34deb8b7c87d779aa11c52d286639", "block_index": 120, - "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730147169, + "block_time": 1730149823, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "83350ea2ef8988a3e3c47e9bb475d84937d37345db027a863e145ec516e24496", + "tx_hash": "2703d2682ac050e52bf9041850ca3ef9cc6ce768e820a79f27d7641ee6ca55b3", "block_index": 119, - "source": "bcrt1qh2m2jullqmwfxs3vllx9krdjz6qgz0r4x3jc8s", + "source": "bcrt1quy9exauh6h8xraqsj4qexjw7xn47yevhezvy27", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730147165, + "block_time": 1730149818, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "f2ce999766ff3d70a5dd5bcc7a744b6f9b64861ee7a2abf190bc84f85562267a", + "tx_hash": "fad67a3a3ab51ed384adef0aaaa2ceb87808d61441538179c49ece39620c16fb", "block_index": 118, - "source": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", + "source": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730147161, + "block_time": 1730149815, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "52dda604707387f581bee24b3be851cf8da91a4e256837de0021558ac7fc8970", + "tx_hash": "d5167d517bee36d60dc07daf8226611a10a2550ba7049bbbed02570cea1c454c", "block_index": 117, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730147158, + "block_time": 1730149812, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -8045,9 +7986,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8056,7 +7997,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8066,7 +8007,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -8082,9 +8023,9 @@ }, { "tx_index": 29, - "tx_hash": "0f8b14713e0204ae9ff12c34e2165f2d60b09ca423e678e8a5330a4016d691d1", + "tx_hash": "4473f2dbb7eb09b4240bbb4d13cf34b75bb23352b2c27da502c37866a024f217", "block_index": 142, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8093,7 +8034,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "origin": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8103,7 +8044,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147253, + "block_time": 1730149918, "asset_info": { "divisible": true, "asset_longname": null, @@ -8119,9 +8060,9 @@ }, { "tx_index": 30, - "tx_hash": "aa2eb896e9aab9ff1080957160ee3e8e9ccdfe2e0d1487c2aea504a2fbd46ff9", + "tx_hash": "3075db3fd894fb4982759d08c57ccf5915c726f7f2c2de2eb1cb9b695ac565b3", "block_index": 150, - "source": "mg2iDq9hHHgarJckVLMgpwt5YE7WjvUVPs", + "source": "mxVik5RWM3aheqn4VPBhE4NkDjFECW4vt5", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8129,10 +8070,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "c1af00f61ee9d962dec73cc4efbdaaefc68742f334d37368fddf8dfefe137210", - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "last_status_tx_hash": "6d03e19b70659ea140a7f92d319e95dd4815b2ece8393b26b1c9a0d7ba77f279", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 0, - "last_status_tx_source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "last_status_tx_source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -8140,7 +8081,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147296, + "block_time": 1730149949, "asset_info": { "divisible": true, "asset_longname": null, @@ -8156,9 +8097,9 @@ }, { "tx_index": 62, - "tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", + "tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", "block_index": 197, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8167,7 +8108,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8177,11 +8118,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147475, + "block_time": 1730150120, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -8193,18 +8134,18 @@ }, { "tx_index": 33, - "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "last_status_tx_hash": null, - "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8214,7 +8155,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -8235,9 +8176,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8246,7 +8187,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8256,7 +8197,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -8276,19 +8217,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", + "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8296,7 +8237,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8311,7 +8252,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -8325,19 +8266,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", + "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", "block_index": 140, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8345,7 +8286,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8360,7 +8301,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147244, + "block_time": 1730149900, "asset_info": { "divisible": true, "asset_longname": null, @@ -8379,20 +8320,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", + "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", "block_index": 154, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730147310, + "block_time": 1730149962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -8413,20 +8354,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", + "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", "block_index": 154, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730147310, + "block_time": 1730149962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -8449,12 +8390,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", + "event": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", "tx_index": 41, - "utxo": "f1a36cd2b5c4271fcf32b8178c8a21d44379539553ab6b6dc0a131b992ef4b8d:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "utxo": "2febd503221c1f67a8a6bc91b81c87828e7803982b872fdb5655d68b75d16b04:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "confirmed": true, - "block_time": 1730147310, + "block_time": 1730149962, "asset_info": { "divisible": true, "asset_longname": null, @@ -8466,16 +8407,16 @@ }, { "block_index": 154, - "address": "bcrt1qcz42hsauvvj7zvqys6awauwvtlxm66sq2gnk5v", + "address": "bcrt1qg89hz5l72ck62vsg34dpc2fvtfgmuhna0e0t4c", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", + "event": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730147310, + "block_time": 1730149962, "asset_info": { "divisible": true, "asset_longname": null, @@ -8496,27 +8437,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", - "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", + "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", + "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", "transaction_count": 1, - "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", - "block_time": 1730147539 + "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", + "block_time": 1730150176 }, "tx_hash": null, "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 674, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75 }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 673, @@ -8525,14 +8466,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -8543,9 +8484,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 672, @@ -8554,9 +8495,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "status": 0, - "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "asset_info": { "divisible": true, "asset_longname": null, @@ -8566,24 +8507,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -8593,9 +8534,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 670, @@ -8607,15 +8548,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", - "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", + "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", + "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", "transaction_count": 1, - "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", - "block_time": 1730147539 + "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", + "block_time": 1730150176 }, "tx_hash": null, "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } }, "/v2/events/counts": { @@ -8650,16 +8591,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -8669,9 +8610,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 669, @@ -8681,12 +8622,12 @@ "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 1500000000, "tx_index": 75, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "block_time": 1730147539, + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -8696,9 +8637,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 666, @@ -8708,39 +8649,39 @@ "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 1500000000, "tx_index": 75, - "utxo": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", - "utxo_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "block_time": 1730147539, + "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_time": 1730150176, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 }, { "event_index": 656, "event": "CREDIT", "params": { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "block_index": 207, "calling_function": "cancel order", - "event": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "event": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730147530, + "block_time": 1730150162, "asset_info": { "divisible": true, "asset_longname": null, @@ -8750,24 +8691,24 @@ }, "quantity_normalized": "0.00005000" }, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_time": 1730147530 + "block_time": 1730150162 }, { "event_index": 645, "event": "CREDIT", "params": { - "address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "block_index": 206, "calling_function": "mpma send", - "event": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "event": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "quantity": 10, "tx_index": 73, "utxo": null, "utxo_address": null, - "block_time": 1730147525, + "block_time": 1730150158, "asset_info": { "divisible": true, "asset_longname": null, @@ -8777,9 +8718,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "block_index": 206, - "block_time": 1730147525 + "block_time": 1730150158 } ], "next_cursor": 644, @@ -8796,27 +8737,27 @@ { "tx_index": 75, "dispense_index": 0, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "last_status_tx_hash": null, - "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8831,7 +8772,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -8845,19 +8786,19 @@ { "tx_index": 63, "dispense_index": 0, - "tx_hash": "3eaa0359313df169f4e9a098ef8e0ab8cdd5939ab338dca7fa670dbbfb3c0111", + "tx_hash": "541f0fb85b7dbc11dc47a5535cee583b4066f143b1409c77dd9d39d0d60f6af8", "block_index": 197, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", + "dispenser_tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8865,7 +8806,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8880,11 +8821,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147475, + "block_time": 1730150120, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -8894,27 +8835,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "d2daf0bfcb4bb4f5dd5290ec07abc6707ad98d2d570148e98fc9e471ed6ab89a", + "tx_hash": "5fad4bd6ee5892fa9b9dbdb90f8f89f4d1f35827c01fdc8dd4444b93621ee4fc", "block_index": 147, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "destination": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "destination": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "last_status_tx_hash": null, - "origin": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8929,7 +8870,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730147283, + "block_time": 1730149937, "asset_info": { "divisible": true, "asset_longname": null, @@ -8943,19 +8884,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "a12979e3934c37428cf201e73bbbf0352b70fe2d8ae19a495fbe1dd4973bfc0b", + "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8963,7 +8904,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8978,7 +8919,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147248, + "block_time": 1730149913, "asset_info": { "divisible": true, "asset_longname": null, @@ -8992,19 +8933,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "0cbd73344e0d26d177dea55aa4323ed26960985aaafae790913a76b6f049c1de", + "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", "block_index": 140, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "ce2798dd713b19cdbb980939c0f21725524aa89991cc14a67b0c504aea80ed00", + "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9012,7 +8953,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9027,7 +8968,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730147244, + "block_time": 1730149900, "asset_info": { "divisible": true, "asset_longname": null, @@ -9046,10 +8987,10 @@ "result": [ { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -9057,7 +8998,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -9070,10 +9011,10 @@ }, { "tx_index": 75, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -9081,11 +9022,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -9094,10 +9035,10 @@ }, { "tx_index": 73, - "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "block_index": 206, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9105,7 +9046,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730147525, + "block_time": 1730150158, "asset_info": { "divisible": true, "asset_longname": null, @@ -9118,10 +9059,10 @@ }, { "tx_index": 73, - "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "block_index": 206, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9129,11 +9070,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730147525, + "block_time": 1730150158, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -9142,10 +9083,10 @@ }, { "tx_index": 73, - "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "block_index": 206, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9153,11 +9094,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730147525, + "block_time": 1730150158, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -9172,14 +9113,14 @@ "result": [ { "tx_index": 68, - "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", + "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -9194,20 +9135,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730147494, + "block_time": 1730150139, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 64, - "tx_hash": "0a9d770a1093b62fffeae30fc71fdcfbe41e571d6df0b5586d3e4e3368f6b254", + "tx_hash": "b5544f95147a8700f9db7a99f2713173f6cf13457b75605298197c154da0fcda", "msg_index": 0, "block_index": 198, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", - "issuer": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", + "source": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", + "issuer": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", "transfer": false, "callable": false, "call_date": 0, @@ -9222,20 +9163,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730147479, + "block_time": 1730150124, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "ecedf49fefa307a78131f6b1d7f52c17b4ececb2e16f6ace25f1e6735fe7090f", + "tx_hash": "bfaad85954beda99abea4a7010a07447599bbf6f22ea125e30ed294c7f5218f0", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -9250,20 +9191,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730147339, + "block_time": 1730149990, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "4ef076610716e47917b7d9a1703541120e00b089e1da54ae1a615438306de745", + "tx_hash": "05689fcc47dfef00b3da5ab26a1b46ea1887fa933a6f6903acb19faf207eca1f", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -9278,20 +9219,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730147334, + "block_time": 1730149986, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "4a865f981bedcaa6f59c08c2b25f1e47c0c1db264cac059bd89ad1011fd381e0", + "tx_hash": "b9a6fb371b7caf85edb70d0c373d91aad170224779eb8f3effcbeec5ea512deb", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -9306,7 +9247,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730147330, + "block_time": 1730149983, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9317,14 +9258,14 @@ "/v2/issuances/": { "result": { "tx_index": 68, - "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", + "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "transfer": false, "callable": false, "call_date": 0, @@ -9339,7 +9280,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730147494, + "block_time": 1730150139, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9348,16 +9289,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", + "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", "block_index": 194, - "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730147463, + "block_time": 1730150109, "fee_paid_normalized": "0.00600000" } ], @@ -9368,16 +9309,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", + "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", "block_index": 194, - "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730147463, + "block_time": 1730150109, "fee_paid_normalized": "0.00600000" } ], @@ -9388,9 +9329,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e", + "tx_hash": "e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc", "block_index": 138, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9398,14 +9339,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730147237, + "block_time": 1730149891, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "18aaf369ee7b22607393e152af0efd92979dee2ef001c12f68449f3dd6a3c100", + "tx_hash": "6bb6a779b50b7a5f5e7f2eeb16d14bf3280a3bb411704fe10c8e4937e68590ac", "block_index": 137, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9413,7 +9354,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730147234, + "block_time": 1730149887, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9423,9 +9364,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e", + "tx_hash": "e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc", "block_index": 138, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9433,17 +9374,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730147237, + "block_time": 1730149891, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "0998f235a3feba0746e143f431c1f698ca50ae3f8745598a4671168e9c151cef", + "tx_hash": "93dee74a73fd75a2b609a0b4cd62839d0d254025bf44bcb5513cad7d35bfa6f3", "tx_index": 42, "block_index": 155, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9468,7 +9409,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730147313, + "block_time": 1730149965, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9477,10 +9418,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", + "tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9505,7 +9446,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730147227, + "block_time": 1730149878, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9517,10 +9458,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", + "tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9545,7 +9486,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730147211, + "block_time": 1730149865, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9557,10 +9498,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "ef648a52d64c60ed013aa174ae6a48421d17f923b88d3aba2e05b58ef0c76886", + "tx_hash": "0e2c46ac44f390ff6b06d99469bca85858fa064feb09b8c2ef799039d36dfa3f", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9585,7 +9526,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730147206, + "block_time": 1730149860, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9597,10 +9538,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "b3ab533f18ea491cf1bc90ab54ef445be6ebc5ed1d478a5f91313f78fbd0af49", + "tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9625,7 +9566,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730147187, + "block_time": 1730149841, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9643,22 +9584,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", + "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147231, + "block_time": 1730149883, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -9667,22 +9608,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "a9ec529d035361f0f926d689b0a23cdf4fef412a2be429d5399f71ab7fbd086a", + "tx_hash": "fda34c124d140677eccc10bdff0dc1cac5550cd210cdabf0ec3cac7f5621c72d", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147222, + "block_time": 1730149874, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -9691,22 +9632,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "93c5f036c8e324dda6f5e9e84e15f096906d0974ea4003bdf51cd4bd013c3ad4", + "tx_hash": "1a79feb1b1b318e55f4b6836518ac7315c78fc94029d4bfbe2e66f0341f3d69d", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147218, + "block_time": 1730149871, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -9715,22 +9656,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "24ba6e5e817679a1c81bd41098b8ea21134e6fd0493e343e7ce171576bae5ef2", + "tx_hash": "52aa1faf5394a028bd06452893acd47a19a81f90b3984c7546cf5c0fa205f190", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "25391a6d37621e1a21b0b5b96348ec22392d180fe362b42d9495c578aca913e2", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147215, + "block_time": 1730149868, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -9739,22 +9680,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "ddcb643e460d09cded92379e8a56186db44c87c5c1fac5fb1e41c45b4be96ee7", + "tx_hash": "0d3ec97ca627c8afdc74e7cd74d98e23e70e50fb3f4556145985a0937ee00c5b", "tx_index": 17, "block_index": 129, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", - "fairminter_tx_hash": "ef648a52d64c60ed013aa174ae6a48421d17f923b88d3aba2e05b58ef0c76886", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "fairminter_tx_hash": "0e2c46ac44f390ff6b06d99469bca85858fa064feb09b8c2ef799039d36dfa3f", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147202, + "block_time": 1730149856, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -9768,22 +9709,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", + "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "fairminter_tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "fairminter_tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730147231, + "block_time": 1730149883, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -9795,22 +9736,22 @@ "/v2/bitcoin/addresses/utxos": { "result": [ { - "vout": 1, + "vout": 0, "height": 200, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "c98bca33812483eb341164f4c5a4ba9d07609a460ff2889e15c58332db2b7878", - "address": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf" + "amount": 5.46e-05, + "txid": "508340a6b50309287c608280e281aeb60e7fdb44401c73cc2d824350a587a82b", + "address": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa" }, { - "vout": 0, + "vout": 1, "height": 200, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "39b475d96fe427bf70a7413c344bbfa88768c4f038da4a0efceb2d0a3b5065bf", - "address": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf" + "amount": 49.499345, + "txid": "9b6c9a7bb596e969abc4b473d1fe8cfb354de8ab6eeb5085ae582ed48ab6e97e", + "address": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa" }, { "vout": 2, @@ -9818,8 +9759,8 @@ "value": 100000, "confirmations": 52, "amount": 0.001, - "txid": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd", - "address": "bcrt1qh2m2jullqmwfxs3vllx9krdjz6qgz0r4x3jc8s" + "txid": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849", + "address": "bcrt1quy9exauh6h8xraqsj4qexjw7xn47yevhezvy27" } ], "next_cursor": null, @@ -9828,28 +9769,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "1e694ec5568f83f06a53f19617cb3373a81673e566a3f4674943004b4241310b" + "tx_hash": "ac629e61e6754dc91053dab34f5c7923f53a25f08505c48e02020b88fcbf160c" }, { - "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68" + "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813" }, { - "tx_hash": "830a7b9e1f16656de3d506078bbeb7daa4cac5f7a80eb58cd6d4e749dea4b48c" + "tx_hash": "9ab485c03158b0379a31a0ed1f790c058cddbccea9db255dd3cfcb37da360985" }, { - "tx_hash": "48a65ca47e1f55ab2c324ea59ab0c61e1948101ffb108e7a0b1861245bfba996" + "tx_hash": "166c36ba6e40975fd9175e2c75c3429ffbabdb6d40d994cf45739dcd7cd3718f" }, { - "tx_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9" + "tx_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1" }, { - "tx_hash": "0e342a2ee7897e26da5b3b27ef89ed24cb2f5db944eb6471b2b3b214318205e4" + "tx_hash": "1a13cc5410faf54cf3e15d2f36ebe7d2162194c040bbcb754a460a587bb183df" }, { - "tx_hash": "c4c02b36eb4f5d00ec94e34a9caeeb533405c89dfe49d307bb4085c54b8a35e6" + "tx_hash": "2b8d25beb3e954c2626269fe981cad7457e2816015fa2ffb47fc40dab3aab8ec" }, { - "tx_hash": "c460c8c1cea374657e76abf6b2e42aa139e55eeab89569949f94ce705bdc60f4" + "tx_hash": "d94e197f2a619d264cc847eb0c6d0cc74b543b39ee3e674e770d01b6491332f0" } ], "next_cursor": null, @@ -9857,37 +9798,37 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 4, - "tx_hash": "258b682c0b3b5c300a74faa54c3b3c75e72556d56bbf097eebb51d521068de57" + "block_index": 10, + "tx_hash": "7eb3eacdd595345e0fe6958c9a1175ee02db099b906474714fae3e96901ca847" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ { - "vout": 1, + "vout": 0, "height": 200, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "c98bca33812483eb341164f4c5a4ba9d07609a460ff2889e15c58332db2b7878" + "amount": 5.46e-05, + "txid": "508340a6b50309287c608280e281aeb60e7fdb44401c73cc2d824350a587a82b" }, { - "vout": 0, + "vout": 1, "height": 200, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "39b475d96fe427bf70a7413c344bbfa88768c4f038da4a0efceb2d0a3b5065bf" + "amount": 49.499345, + "txid": "9b6c9a7bb596e969abc4b473d1fe8cfb354de8ab6eeb5085ae582ed48ab6e97e" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "0241445d6dd788731520f07cabf7be67c7890e9f0cc8963375e6eccc208026547e" + "result": "026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c" }, "/v2/bitcoin/transactions/": { - "result": "02000000000101dd6036f00dd0c18b8a639d86de226d3296f7c720ec11b17defc3204e8b01d01e0100000000ffffffff03e803000000000000160014683c2d33034856d0b1db09c7b7e1773ae80add5400000000000000000c6a0a11eda9ba1cdb99830cfaeb14092701000000160014bf4792b14b11b425a171e4605d662e7cf9ed8d63024730440220242fd2fafb6e456eeb2416629f59e8c033bd124a870f3cec20c7784517f511be02203ce32ad5e5f27bbdccda125b876ff10b8d6a69fb4ee4882eba632d663a46554b012102a59bfe4c5aff502eec07b4831b733657f409185a43056c6a5a250557f9e3b45d00000000" + "result": "0200000000010149289a40c78c66916c239ac7f908b0d59ef63456994b1e9510d8717257f0bf460100000000ffffffff03e8030000000000001600149e3d73cf180ab4652f14e45d6dd17012e1442b0000000000000000000c6a0a06f7bbe2b2ce3b3aeeebeb1409270100000016001465c904bf5dd078f1db7ff75e9d02179c176ab0900247304402201dd21b409a496da4d49a01840c4e3f9d1bdef1d8184b29b20924ff78f921b5a102203046c25e5926256e32950b3f56702d092ce66300479cdcd5b6fc02d37760fa7601210394905cd47735fcf8303d48ee74e9528871221d877e69b6ae5e376e64158d451000000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58701 @@ -9910,27 +9851,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "tx_index": 76 }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "memo": null, "quantity": 10000, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "status": "valid", - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "tx_index": 76, "asset_info": { "divisible": true, @@ -9941,22 +9882,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "CREDIT", "params": { - "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -9966,22 +9907,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "XCP", "block_index": 208, - "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -9991,30 +9932,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730147542.563512, + "block_time": 1730150180.8792815, "btc_amount": 0, - "data": "0200000000000000010000000000002710803970def27ed5459d1126af8f037ccb8fe4aeac4d", + "data": "0200000000000000010000000000002710803eb72a4136323ae914b5e511d43a96fe66f85c55", "destination": "", "fee": 10000, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "tx_index": 76, - "utxos_info": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4:1", + "utxos_info": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "memo": null, "asset_info": { "divisible": true, @@ -10028,7 +9969,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 } ], "next_cursor": null, @@ -10037,19 +9978,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "CREDIT", "params": { - "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -10059,7 +10000,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 } ], "next_cursor": null, @@ -10068,27 +10009,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "tx_index": 76 }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "memo": null, "quantity": 10000, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "status": "valid", - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "tx_index": 76, "asset_info": { "divisible": true, @@ -10099,22 +10040,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "CREDIT", "params": { - "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -10124,22 +10065,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "asset": "XCP", "block_index": 208, - "event": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -10149,30 +10090,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 }, { - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730147542.563512, + "block_time": 1730150180.8792815, "btc_amount": 0, - "data": "0200000000000000010000000000002710803970def27ed5459d1126af8f037ccb8fe4aeac4d", + "data": "0200000000000000010000000000002710803eb72a4136323ae914b5e511d43a96fe66f85c55", "destination": "", "fee": 10000, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", - "tx_hash": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", "tx_index": 76, - "utxos_info": "46d569237491a53e768d975e6012851a65afa70a2fbfb5aa22c151aacb75a8c4:1", + "utxos_info": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "memo": null, "asset_info": { "divisible": true, @@ -10186,7 +10127,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730147542.563512 + "timestamp": 1730150180.8792815 } ], "next_cursor": null, @@ -10208,15 +10149,15 @@ "event_index": 662, "event": "NEW_BLOCK", "params": { - "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", + "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", "block_index": 208, - "block_time": 1730147539, + "block_time": 1730150176, "difficulty": 545259519, - "previous_block_hash": "73549472bc3c108964933faa126e5c80913777a424979207a208c9f3ca2ea086" + "previous_block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a" }, "tx_hash": null, "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 653, @@ -10228,17 +10169,17 @@ "event_index": 663, "event": "NEW_TRANSACTION", "params": { - "block_hash": "4d26585baa87ce107861b755c6f37121b93804434210befd5f9ac67a63751263", + "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", "block_index": 208, - "block_time": 1730147539, + "block_time": 1730150176, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "fee": 0, - "source": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "utxos_info": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1 39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10248,9 +10189,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 654, @@ -10264,16 +10205,16 @@ "params": { "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "out_index": 0, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "block_time": 1730147539, + "block_time": 1730150176, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 558, @@ -10286,15 +10227,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "782f4b28f3b28eeaf627af237534cd84e1f404b7e01c9d131a434aee8b141539", - "messages_hash": "d29a6c8c3871a184ec1540c44210cbf74e1586f2dd83b54963ce717981967222", + "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", + "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", "transaction_count": 1, - "txlist_hash": "a07d262de01f99375f945dacea302aa239460e1600244d9f312357c99950c8e2", - "block_time": 1730147539 + "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", + "block_time": 1730150176 }, "tx_hash": null, "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 661, @@ -10307,12 +10248,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75 }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 660, @@ -10328,12 +10269,12 @@ "address": null, "asset": "XCP", "block_index": 208, - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 1500000000, "tx_index": 75, - "utxo": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", - "utxo_address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", - "block_time": 1730147539, + "utxo": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "utxo_address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -10343,9 +10284,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 665, @@ -10357,16 +10298,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -10376,9 +10317,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 669, @@ -10392,26 +10333,26 @@ "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "memo": null, "quantity": 1000, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "status": "valid", - "tx_hash": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f", + "tx_hash": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c", "tx_index": 69, - "block_time": 1730147498, + "block_time": 1730150144, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "3ec5bebe0219e4bc1fc7b2fe37f59a9699f0048b791ab9b612b09263d604c80f", + "tx_hash": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c", "block_index": 202, - "block_time": 1730147498 + "block_time": 1730150144 } ], "next_cursor": 498, @@ -10425,15 +10366,15 @@ "params": { "asset": "XCP", "block_index": 206, - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "status": "valid", - "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "tx_index": 73, - "block_time": 1730147525, + "block_time": 1730150158, "asset_info": { "divisible": true, "asset_longname": null, @@ -10443,9 +10384,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2fa561448862eb9e258cb80d3adbd2a3ebc6f72aaae97d4df5ce3d873a3036e6", + "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", "block_index": 206, - "block_time": 1730147525 + "block_time": 1730150158 } ], "next_cursor": 649, @@ -10468,20 +10409,20 @@ "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "status": "valid", - "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", + "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", "tx_index": 60, - "block_time": 1730147463, + "block_time": 1730150109, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "eb650f630c8bc7baa80b3c8c799cc8256e9bc5b94ee191a8b3bf980bcce76e68", + "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", "block_index": 194, - "block_time": 1730147463 + "block_time": 1730150109 } ], "next_cursor": null, @@ -10498,15 +10439,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "status": "valid", - "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", + "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", "tx_index": 41, - "block_time": 1730147310, + "block_time": 1730149962, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -10520,9 +10461,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "f16251e8c3f0dc803a2ce81b3c530121fbe22d7b67888c9c26abe2a7a0c6d895", + "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", "block_index": 154, - "block_time": 1730147310 + "block_time": 1730149962 } ], "next_cursor": null, @@ -10543,11 +10484,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 201, - "block_time": 1730147494 + "block_time": 1730150139 }, - "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", + "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", "block_index": 201, - "block_time": 1730147494 + "block_time": 1730150139 } ], "next_cursor": 567, @@ -10570,22 +10511,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "status": "valid", "transfer": false, - "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", + "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", "tx_index": 68, - "block_time": 1730147494, + "block_time": 1730150139, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "b41bd6c947e994569cf91375e4c3fa284ef56128f942e6e5eff4bc4d9ebb670e", + "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", "block_index": 201, - "block_time": 1730147494 + "block_time": 1730150139 } ], "next_cursor": 568, @@ -10600,12 +10541,12 @@ "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1qaq6h6qhmcuq6hy5vw0ta9n7dvtta6tpqc5gukm", + "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", "status": "valid", "tag": "64657374726f79", - "tx_hash": "5709751e42222eb3fe342e7c1bdb4cfc6f20f4a9eec48c8dd200a08f1b4838bb", + "tx_hash": "c00a1d1e74c94dc85120712a15a6b62760a12590f92814b3ab2725b9b992038c", "tx_index": 61, - "block_time": 1730147466, + "block_time": 1730150114, "asset_info": { "divisible": true, "asset_longname": null, @@ -10615,9 +10556,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "5709751e42222eb3fe342e7c1bdb4cfc6f20f4a9eec48c8dd200a08f1b4838bb", + "tx_hash": "c00a1d1e74c94dc85120712a15a6b62760a12590f92814b3ab2725b9b992038c", "block_index": 195, - "block_time": 1730147466 + "block_time": 1730150114 } ], "next_cursor": 157, @@ -10642,11 +10583,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "status": "open", - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "tx_index": 74, - "block_time": 1730147530, + "block_time": 1730150162, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10670,9 +10611,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_time": 1730147530 + "block_time": 1730150162 } ], "next_cursor": 529, @@ -10690,20 +10631,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", + "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", "tx0_index": 51, - "tx1_address": "bcrt1q89cdaun764ze6yfx478sxlxt3lj2atzdptg3l0", + "tx1_address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "tx1_index": 54, - "block_time": 1730147430, + "block_time": 1730150087, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10722,9 +10663,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "777c25c1e0bbdbfe6873256b16aaf577ee2af975f2415d283a3f3a49a56bd1a9", + "tx_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", "block_index": 188, - "block_time": 1730147430 + "block_time": 1730150087 } ], "next_cursor": 475, @@ -10737,11 +10678,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2" + "tx_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e" }, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_time": 1730147530 + "block_time": 1730150162 } ], "next_cursor": 521, @@ -10754,11 +10695,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f" + "tx_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0" }, - "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", + "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", "block_index": 187, - "block_time": 1730147427 + "block_time": 1730150084 } ], "next_cursor": null, @@ -10770,13 +10711,13 @@ "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", - "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", + "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", "status": "completed" }, - "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", + "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", "block_index": 187, - "block_time": 1730147427 + "block_time": 1730150084 } ], "next_cursor": 454, @@ -10790,18 +10731,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "order_match_id": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2_48c51b4d7fe130f51264b6548ae85d5d0b9a164af06223cfd5269b7f544c116f", - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "status": "valid", - "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", + "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", "tx_index": 53, - "block_time": 1730147427, + "block_time": 1730150084, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "7e0a9415932f3896e7a5ec3cb2433b2409d1886e37e5e9bc324b0ab6c2a1272e", + "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", "block_index": 187, - "block_time": 1730147427 + "block_time": 1730150084 } ], "next_cursor": null, @@ -10814,16 +10755,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "db5c1801e7575339273486c296c8848fa327b7d60870d733096dd5aba27dfe0f", - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "offer_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "status": "valid", - "tx_hash": "62c09c5f1959d825532f5594282ad39694424a743802d560f520b42aab6c4ee3", + "tx_hash": "273b62eaf8de41c504f5b4619412ccadacc70cff6b889cb2396189018c05d81c", "tx_index": 58, - "block_time": 1730147455 + "block_time": 1730150102 }, - "tx_hash": "62c09c5f1959d825532f5594282ad39694424a743802d560f520b42aab6c4ee3", + "tx_hash": "273b62eaf8de41c504f5b4619412ccadacc70cff6b889cb2396189018c05d81c", "block_index": 192, - "block_time": 1730147455 + "block_time": 1730150102 } ], "next_cursor": null, @@ -10836,13 +10777,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 207, - "order_hash": "99e5b34ce26aff6b545658bf2d421aeb526d6b611ff346c74dfd2bc7fca47da2", - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "block_time": 1730147530 + "order_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_time": 1730150162 }, - "tx_hash": "ee541c576ab5b38449301bfe7d0aebdca91dd6cff1fa099f0d2c100e93c61c4f", + "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", "block_index": 207, - "block_time": 1730147530 + "block_time": 1730150162 } ], "next_cursor": 462, @@ -10855,14 +10796,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "1e11f78d0a7f8b533e1628e625c858ce564c3e1509cdfc407c0ea9e2c9fb8962_9f074686aa4e2af74ab084a6fda9ed2439bc9edc0b44a6f36356dad8197eedf9", - "tx0_address": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "tx1_address": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", - "block_time": 1730147353 + "order_match_id": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97_caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", + "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "block_time": 1730150014 }, "tx_hash": null, "block_index": 184, - "block_time": 1730147353 + "block_time": 1730150014 } ], "next_cursor": null, @@ -10881,17 +10822,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "satoshirate": 1, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "status": 0, - "tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", + "tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", "tx_index": 62, - "block_time": 1730147470, + "block_time": 1730150117, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -10900,9 +10841,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "d5562487a4542b0253b3e235059820ccf1ad0170f9870097b7dc21ecabd98bf1", + "tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", "block_index": 196, - "block_time": 1730147470 + "block_time": 1730150117 } ], "next_cursor": 272, @@ -10917,9 +10858,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "status": 0, - "tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", + "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", "asset_info": { "divisible": true, "asset_longname": null, @@ -10929,9 +10870,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 560, @@ -10945,13 +10886,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mg2iDq9hHHgarJckVLMgpwt5YE7WjvUVPs", + "destination": "mxVik5RWM3aheqn4VPBhE4NkDjFECW4vt5", "dispense_quantity": 10, - "dispenser_tx_hash": "aa2eb896e9aab9ff1080957160ee3e8e9ccdfe2e0d1487c2aea504a2fbd46ff9", - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", - "tx_hash": "50b70420fcd4c675beb859a7e474226f70f8b78df85e5fb5b74d596b4d4947d2", + "dispenser_tx_hash": "3075db3fd894fb4982759d08c57ccf5915c726f7f2c2de2eb1cb9b695ac565b3", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx_hash": "656b01275a930a61d0c415f3f560f4dbfb0448295939aea387a818440b8467d5", "tx_index": 31, - "block_time": 1730147261, + "block_time": 1730149925, "asset_info": { "divisible": true, "asset_longname": null, @@ -10961,9 +10902,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "50b70420fcd4c675beb859a7e474226f70f8b78df85e5fb5b74d596b4d4947d2", + "tx_hash": "656b01275a930a61d0c415f3f560f4dbfb0448295939aea387a818440b8467d5", "block_index": 144, - "block_time": 1730147261 + "block_time": 1730149925 } ], "next_cursor": null, @@ -10978,14 +10919,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qhare9v2tzx6ztgt3u3s96e3w0nu7mrtrax26xq", + "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "0db8f24ff910a737486faca0768b8b77eff23f6703b111e74adccde4304ed6d9", - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -10996,9 +10937,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 561, @@ -11013,19 +10954,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qdq7z6vcrfptdpvwmp8rm0cth8t5q4h25nq2ped", + "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e", + "tx_hash": "e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc", "tx_index": 25, "value": 66600.0, - "block_time": 1730147237, + "block_time": 1730149891, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "524b67cbdc2f650053c8e117defa29e7ed2ae2c09ddaf7186aff0d416d41643e", + "tx_hash": "e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc", "block_index": 138, - "block_time": 1730147237 + "block_time": 1730149891 } ], "next_cursor": 213, @@ -11056,12 +10997,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "start_block": 0, "status": "open", - "tx_hash": "0998f235a3feba0746e143f431c1f698ca50ae3f8745598a4671168e9c151cef", + "tx_hash": "93dee74a73fd75a2b609a0b4cd62839d0d254025bf44bcb5513cad7d35bfa6f3", "tx_index": 42, - "block_time": 1730147313, + "block_time": 1730149965, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11069,9 +11010,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "0998f235a3feba0746e143f431c1f698ca50ae3f8745598a4671168e9c151cef", + "tx_hash": "93dee74a73fd75a2b609a0b4cd62839d0d254025bf44bcb5513cad7d35bfa6f3", "block_index": 155, - "block_time": 1730147313 + "block_time": 1730149965 } ], "next_cursor": 196, @@ -11084,11 +11025,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "ef648a52d64c60ed013aa174ae6a48421d17f923b88d3aba2e05b58ef0c76886" + "tx_hash": "0e2c46ac44f390ff6b06d99469bca85858fa064feb09b8c2ef799039d36dfa3f" }, "tx_hash": null, "block_index": 130, - "block_time": 1730147206 + "block_time": 1730149860 } ], "next_cursor": 110, @@ -11104,17 +11045,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "f1dda1a3d07a1d2456d7d7026bec77cf74978c9b95c12e796b59dff58a92b479", + "fairminter_tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", "paid_quantity": 34, - "source": "bcrt1q6f3p6gt4d6uwhv3vusetyezs4ens6gy0jxmmue", + "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", "status": "valid", - "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", + "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", "tx_index": 23, - "block_time": 1730147231, + "block_time": 1730149883, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, @@ -11122,9 +11063,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "3e9caa4795412cffc73bdec7b1b1bfca891fb9dc6242877c9435bd7ef8b5bdf3", + "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", "block_index": 136, - "block_time": 1730147231 + "block_time": 1730149883 } ], "next_cursor": 190, @@ -11138,28 +11079,28 @@ "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "1950deb5128ae4637f94cfc62169527e92eed21f5d5327948f13c8199d4d8aeb:0", + "destination": "7ca7c8421c7f6b4f2a716ce81cec47f1f83d35e354651030b94b06e3bbec4711:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", + "source": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", "status": "valid", - "tx_hash": "1950deb5128ae4637f94cfc62169527e92eed21f5d5327948f13c8199d4d8aeb", + "tx_hash": "7ca7c8421c7f6b4f2a716ce81cec47f1f83d35e354651030b94b06e3bbec4711", "tx_index": 65, - "block_time": 1730147482, + "block_time": 1730150128, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qe4aclhkjg0g6qjumajywnkmtkln527l0nkalxf", + "issuer": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1950deb5128ae4637f94cfc62169527e92eed21f5d5327948f13c8199d4d8aeb", + "tx_hash": "7ca7c8421c7f6b4f2a716ce81cec47f1f83d35e354651030b94b06e3bbec4711", "block_index": 199, - "block_time": 1730147482 + "block_time": 1730150128 } ], "next_cursor": 319, @@ -11173,28 +11114,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qcz42hsauvvj7zvqys6awauwvtlxm66sq2gnk5v", + "destination": "bcrt1qg89hz5l72ck62vsg34dpc2fvtfgmuhna0e0t4c", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "0e342a2ee7897e26da5b3b27ef89ed24cb2f5db944eb6471b2b3b214318205e4:0", + "source": "d94e197f2a619d264cc847eb0c6d0cc74b543b39ee3e674e770d01b6491332f0:0", "status": "valid", - "tx_hash": "b9aeb481d6d93a3eee3edaee0438c4e3a7efc7f5f40d59eaa8606c125a6b2d9f", + "tx_hash": "1f020eae3e44998e380ea6141659b829120b8ba595664630b4ae8d51e6eb3ff2", "tx_index": 38, - "block_time": 1730147299, + "block_time": 1730149952, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2flu0pkuud2xs8lesq9unvr29fz065jw03a64m", + "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "b9aeb481d6d93a3eee3edaee0438c4e3a7efc7f5f40d59eaa8606c125a6b2d9f", + "tx_hash": "1f020eae3e44998e380ea6141659b829120b8ba595664630b4ae8d51e6eb3ff2", "block_index": 151, - "block_time": 1730147299 + "block_time": 1730149952 } ], "next_cursor": null, @@ -11208,14 +11149,14 @@ "params": { "asset": "XCP", "block_index": 208, - "destination": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2:0", + "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", "msg_index": 1, "quantity": 1500000000, - "source": "1ed0018b4e20c3ef7db111ec20c7f796326d22de869d638a8bc1d00df03660dd:1", + "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", "status": "valid", - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "tx_index": 75, - "block_time": 1730147539, + "block_time": 1730150176, "asset_info": { "divisible": true, "asset_longname": null, @@ -11225,9 +11166,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "39ee752b312b77329105a68ab35c667b80307f6a5d2b20449b26d8ebc1e418c2", + "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", "block_index": 208, - "block_time": 1730147539 + "block_time": 1730150176 } ], "next_cursor": 667, @@ -11242,17 +11183,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qutqyvw6qfn824wrr8kc5u5lhtyml7s9fg92uds", + "source": "bcrt1qvpsk2579x0my98dh6s9fxhlmk9u454p63anff9", "status": "valid", - "tx_hash": "9e48aa492c822fb8f10573455eaf92d7238d1c56139fd15c3731cd53d0c10e6e", + "tx_hash": "1d67669f030d7a8d4afa14aaefef4fe7d507c15946907c1ec3b5688d4f587ce5", "tx_index": 9, - "block_time": 1730147172, + "block_time": 1730149826, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "9e48aa492c822fb8f10573455eaf92d7238d1c56139fd15c3731cd53d0c10e6e", + "tx_hash": "1d67669f030d7a8d4afa14aaefef4fe7d507c15946907c1ec3b5688d4f587ce5", "block_index": 121, - "block_time": 1730147172 + "block_time": 1730149826 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/genapidoc.py b/counterparty-core/counterpartycore/test/regtest/genapidoc.py index 1c5e16b34c..5ff5c7de1f 100644 --- a/counterparty-core/counterpartycore/test/regtest/genapidoc.py +++ b/counterparty-core/counterpartycore/test/regtest/genapidoc.py @@ -153,6 +153,9 @@ def get_example_output(path, args): def include_in_dredd(group, path): if "/bet" in path: return False + # TODO: REMOVE + if "/compose/dispenser" in path: + return False return True diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py index ad7b7559aa..527146a90d 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py @@ -35,7 +35,7 @@ "dispenser": "$ADDRESS_6", "quantity": 1000, "unspents_set": "ATOMICSWAP_2_TX_HASH:1", - "use_utxo_with_balances": True, + "use_utxos_with_balances": True, "exact_fee": 1, }, "controls": [ diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index 865a14bea4..f3de3a22ec 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -222,21 +222,21 @@ def run_item(node, item, context): except ComposeError as e: if "expected_error" in item: try: + expected_result = item["expected_error"] if isinstance(item["expected_error"], list): assert (str(item["expected_error"]),) == e.args else: - expected_result = item["expected_error"] - print("Context:", context) for name, value in context.items(): if name.endswith("_INDEX"): expected_result = expected_result.replace(f'"${name}"', value) else: expected_result = expected_result.replace(f"${name}", value) - assert expected_result == e.args + print(expected_result, str(e)) + assert expected_result == str(e) print(f"{item['title']}: " + colored("Success", "green")) except AssertionError: print(colored(f"Failed: {item['title']}", "red")) - print(f"Expected: {item['expected_error']}") + print(f"Expected: {expected_result}") print(f"Got: {str(e)}") # raise e else: diff --git a/dredd.yml b/dredd.yml index e657201046..44afc63e85 100644 --- a/dredd.yml +++ b/dredd.yml @@ -76,7 +76,6 @@ only: - Compose > Compose Burn > Compose Burn - Compose > Compose Cancel > Compose Cancel - Compose > Compose Destroy > Compose Destroy -- Compose > Compose Dispenser > Compose Dispenser - Compose > Compose Dividend > Compose Dividend - Compose > Compose Issuance > Compose Issuance - Compose > Compose MPMA > Compose MPMA diff --git a/release-notes/release-notes-v10.6.1.md b/release-notes/release-notes-v10.6.1.md index 16b57e47a4..518173a7cc 100644 --- a/release-notes/release-notes-v10.6.1.md +++ b/release-notes/release-notes-v10.6.1.md @@ -1,4 +1,4 @@ -# Release Notes - Counterparty Core v10.6.1 (2024-10-??) +# Release Notes - Counterparty Core v10.6.1 (2024-10-28) # Upgrading @@ -23,7 +23,7 @@ - Added `memos` and `memos_are_hex` parameters to the MPMA compose API. When using MPMA sends, one memo must be provided for each destination if these parameters are used. - Add `/v2/utxos//balances` route - By default, exclude UTXOs containing balances when composing transactions -- Add `use_utxo_with_balances` and `exclude_utxo_with_balances` parameter to the compose API +- Add `use_utxos_with_balances` and `exclude_utxos_with_balances` parameter to the compose API ## CLI From 9a20919ac5fe7f80b05e76802cc9701e1e7e6d1b Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 28 Oct 2024 21:22:15 +0000 Subject: [PATCH 19/23] Bump version --- apiary.apib | 2 +- counterparty-core/counterpartycore/lib/config.py | 2 +- .../counterpartycore/test/regtest/apidoc/blueprint-template.md | 2 +- counterparty-core/requirements.txt | 2 +- counterparty-rs/Cargo.lock | 2 +- counterparty-rs/Cargo.toml | 2 +- counterparty-wallet/requirements.txt | 2 +- docker-compose.yml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/apiary.apib b/apiary.apib index 3d896bd12c..724acf0f65 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1448,7 +1448,7 @@ Returns server information and the list of documented routes in JSON format. "result": { "server_ready": true, "network": "mainnet", - "version": "10.6.0", + "version": "10.6.1", "backend_height": 850214, "counterparty_height": 850214, "documentation": "https://counterpartycore.docs.apiary.io/", diff --git a/counterparty-core/counterpartycore/lib/config.py b/counterparty-core/counterpartycore/lib/config.py index b06f51defa..78d226c12e 100644 --- a/counterparty-core/counterpartycore/lib/config.py +++ b/counterparty-core/counterpartycore/lib/config.py @@ -5,7 +5,7 @@ # Semantic Version -__version__ = "10.6.0" # for hatch +__version__ = "10.6.1" # for hatch VERSION_STRING = __version__ version = VERSION_STRING.split("-")[0].split(".") VERSION_MAJOR = int(version[0]) diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/blueprint-template.md b/counterparty-core/counterpartycore/test/regtest/apidoc/blueprint-template.md index 78cbb22bf6..b02a1b55c4 100644 --- a/counterparty-core/counterpartycore/test/regtest/apidoc/blueprint-template.md +++ b/counterparty-core/counterpartycore/test/regtest/apidoc/blueprint-template.md @@ -158,7 +158,7 @@ Returns server information and the list of documented routes in JSON format. "result": { "server_ready": true, "network": "mainnet", - "version": "10.6.0", + "version": "10.6.1", "backend_height": 850214, "counterparty_height": 850214, "documentation": "https://counterpartycore.docs.apiary.io/", diff --git a/counterparty-core/requirements.txt b/counterparty-core/requirements.txt index b91da91c01..6c54807c31 100644 --- a/counterparty-core/requirements.txt +++ b/counterparty-core/requirements.txt @@ -34,4 +34,4 @@ JSON-log-formatter==1.0 yoyo-migrations==8.2.0 gunicorn==23.0.0 waitress==3.0.0 -counterparty-rs==10.6.0 \ No newline at end of file +counterparty-rs==10.6.1 \ No newline at end of file diff --git a/counterparty-rs/Cargo.lock b/counterparty-rs/Cargo.lock index d9a1b149c8..da4d967e1a 100644 --- a/counterparty-rs/Cargo.lock +++ b/counterparty-rs/Cargo.lock @@ -382,7 +382,7 @@ checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" [[package]] name = "counterparty-rs" -version = "10.6.0" +version = "10.6.1" dependencies = [ "bip32", "bitcoin 0.29.2", diff --git a/counterparty-rs/Cargo.toml b/counterparty-rs/Cargo.toml index 161e0a4536..2c88e8462b 100644 --- a/counterparty-rs/Cargo.toml +++ b/counterparty-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "counterparty-rs" -version = "10.6.0" +version = "10.6.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/counterparty-wallet/requirements.txt b/counterparty-wallet/requirements.txt index 7421a94899..0fc4ad0d31 100644 --- a/counterparty-wallet/requirements.txt +++ b/counterparty-wallet/requirements.txt @@ -5,4 +5,4 @@ colorlog==6.8.0 python-dateutil==2.8.2 requests==2.32.0 termcolor==2.4.0 -counterparty-core==10.6.0 +counterparty-core==10.6.1 diff --git a/docker-compose.yml b/docker-compose.yml index dabad76ae2..8813345c8b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -15,7 +15,7 @@ x-addrindexrs-common: &addrindexrs-common restart: unless-stopped x-counterparty-common: &counterparty-common - image: counterparty/counterparty:v10.6.0 + image: counterparty/counterparty:v10.6.1 stop_grace_period: 1m volumes: - data:/root/.bitcoin From 2bdb6b98f97a908da1edd7d3d2dd26dc8ae57cdd Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 28 Oct 2024 21:32:49 +0000 Subject: [PATCH 20/23] Don't raise an error if inputs_set is provided --- .../lib/transaction_helper/transaction_inputs.py | 2 +- counterparty-core/counterpartycore/test/regtest/genapidoc.py | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py index 06e70d2c59..6d9b0cacbc 100644 --- a/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py +++ b/counterparty-core/counterpartycore/lib/transaction_helper/transaction_inputs.py @@ -254,7 +254,7 @@ def construct_coin_selection( for utxo in unspent: str_input = f"{utxo['txid']}:{utxo['vout']}" if len(ledger.get_utxo_balances(db, str_input)) > 0: - if not exclude_utxos_with_balances: + if not exclude_utxos_with_balances and inputs_set: raise exceptions.ComposeError(f"invalid UTXO: {str_input}") else: filtered_unspent.append(utxo) diff --git a/counterparty-core/counterpartycore/test/regtest/genapidoc.py b/counterparty-core/counterpartycore/test/regtest/genapidoc.py index 5ff5c7de1f..1c5e16b34c 100644 --- a/counterparty-core/counterpartycore/test/regtest/genapidoc.py +++ b/counterparty-core/counterpartycore/test/regtest/genapidoc.py @@ -153,9 +153,6 @@ def get_example_output(path, args): def include_in_dredd(group, path): if "/bet" in path: return False - # TODO: REMOVE - if "/compose/dispenser" in path: - return False return True From 019f57c1bcfa6315ace4a01ab69213603b05a861 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Mon, 28 Oct 2024 17:36:46 -0400 Subject: [PATCH 21/23] Tweak Release Notes for v10.6.1 --- release-notes/release-notes-v10.6.1.md | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/release-notes/release-notes-v10.6.1.md b/release-notes/release-notes-v10.6.1.md index 518173a7cc..1eabfd4054 100644 --- a/release-notes/release-notes-v10.6.1.md +++ b/release-notes/release-notes-v10.6.1.md @@ -1,29 +1,33 @@ # Release Notes - Counterparty Core v10.6.1 (2024-10-28) +This is a minor release to address a few small bugs in the API v2, especially for MPMA, and to fill out API support for the management of assets attached to UTXOs. + # Upgrading +This upgrade is not a protocol change and no automatic reparse is necessary. + + # ChangeLog ## Protocol Changes ## Bugfixes -- Fix heavy healthz check -- In `mpma.compose()`, raise a `ComposeError` if `memo` is not a string or `memo_is_hex` is not a boolean -- Update API v2 process to use `config.API_LOG` for log file -- When composing an Attach transaction without a destination address, create a dust output to the source address +- Fix heavy `healthz` check +- Raise a `ComposeError` in `mpma.compose()` if `memo` is not a string or if `memo_is_hex` is not a boolean +- Send API v2 log messages to the `config.API_LOG` logfile +- Create a dust output when attaching an asset to a UTXO without a destination address ## Codebase - ## API -- Added `memos` and `memos_are_hex` parameters to the MPMA compose API. When using MPMA sends, one memo must be provided for each destination if these parameters are used. -- Add `/v2/utxos//balances` route -- By default, exclude UTXOs containing balances when composing transactions -- Add `use_utxos_with_balances` and `exclude_utxos_with_balances` parameter to the compose API +- Add `memos` and `memos_are_hex` parameters to the MPMA compose API. When using MPMA sends, one memo must be provided for each destination if these parameters are used. +- Add the `/v2/utxos//balances` route +- Exclude UTXOs containing balances by default when composing transactions +- Add `use_utxos_with_balances` and `exclude_utxos_with_balances` parameters to the compose API ## CLI From 470aa0a57a2ab79c956bd85202332909c41e02c9 Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Mon, 28 Oct 2024 17:37:08 -0400 Subject: [PATCH 22/23] Tweak Release Notes for v10.6.1 --- release-notes/release-notes-v10.6.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-notes/release-notes-v10.6.1.md b/release-notes/release-notes-v10.6.1.md index 1eabfd4054..7626dd72a1 100644 --- a/release-notes/release-notes-v10.6.1.md +++ b/release-notes/release-notes-v10.6.1.md @@ -1,6 +1,6 @@ # Release Notes - Counterparty Core v10.6.1 (2024-10-28) -This is a minor release to address a few small bugs in the API v2, especially for MPMA, and to fill out API support for the management of assets attached to UTXOs. +This is a minor release to address a few small bugs in the v2 API, especially for MPMA, and to fill out API support for the management of assets attached to UTXOs. # Upgrading From 462d618ede34bbc533059cbaac76359f3ba38945 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Mon, 28 Oct 2024 21:59:02 +0000 Subject: [PATCH 23/23] Don't raise an error if inputs_set is provided; Fix regtest and dredd --- apiary.apib | 3753 +++++++++-------- .../test/regtest/apidoc/apicache.json | 3413 +++++++-------- .../scenarios/scenario_last_mempool.py | 4 +- dredd.yml | 1 + 4 files changed, 3629 insertions(+), 3542 deletions(-) diff --git a/apiary.apib b/apiary.apib index 724acf0f65..6c9130d03d 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-10-28 21:16:33.336971. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-10-28 21:58:03.817904. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -181,15 +181,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 662, "event": "NEW_BLOCK", "params": { - "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", + "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", "block_index": 208, - "block_time": 1730150176, + "block_time": 1730152668, "difficulty": 545259519, - "previous_block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a" + "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae" }, "tx_hash": null, "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 653, @@ -206,17 +206,17 @@ Here is a list of events classified by theme and for each an example response: "event_index": 663, "event": "NEW_TRANSACTION", "params": { - "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", + "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", "block_index": 208, - "block_time": 1730150176, + "block_time": 1730152668, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "fee": 0, - "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -226,9 +226,9 @@ Here is a list of events classified by theme and for each an example response: }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 654, @@ -247,16 +247,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "out_index": 0, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "block_time": 1730150176, + "block_time": 1730152668, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 558, @@ -274,15 +274,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", - "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", + "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", + "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", "transaction_count": 1, - "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", - "block_time": 1730150176 + "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", + "block_time": 1730152668 }, "tx_hash": null, "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 661, @@ -300,12 +300,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75 }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 660, @@ -328,12 +328,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 208, - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 1500000000, "tx_index": 75, - "utxo": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "utxo_address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", - "block_time": 1730150176, + "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -343,9 +343,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 665, @@ -362,16 +362,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,9 +381,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 669, @@ -402,26 +402,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "memo": null, "quantity": 1000, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "status": "valid", - "tx_hash": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c", + "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", "tx_index": 69, - "block_time": 1730150144, + "block_time": 1730152624, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c", + "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", "block_index": 202, - "block_time": 1730150144 + "block_time": 1730152624 } ], "next_cursor": 498, @@ -440,15 +440,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 206, - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "status": "valid", - "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "tx_index": 73, - "block_time": 1730150158, + "block_time": 1730152650, "asset_info": { "divisible": true, "asset_longname": null, @@ -458,9 +458,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "block_index": 206, - "block_time": 1730150158 + "block_time": 1730152650 } ], "next_cursor": 649, @@ -498,20 +498,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "status": "valid", - "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", + "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", "tx_index": 60, - "block_time": 1730150109, + "block_time": 1730152588, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", + "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", "block_index": 194, - "block_time": 1730150109 + "block_time": 1730152588 } ], "next_cursor": null, @@ -533,15 +533,15 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "status": "valid", - "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", + "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", "tx_index": 41, - "block_time": 1730149962, + "block_time": 1730152419, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -555,9 +555,9 @@ Here is a list of events classified by theme and for each an example response: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", + "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", "block_index": 154, - "block_time": 1730149962 + "block_time": 1730152419 } ], "next_cursor": null, @@ -590,11 +590,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "MPMASSET", "block_index": 201, - "block_time": 1730150139 + "block_time": 1730152620 }, - "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", + "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", "block_index": 201, - "block_time": 1730150139 + "block_time": 1730152620 } ], "next_cursor": 567, @@ -622,22 +622,22 @@ Here is a list of events classified by theme and for each an example response: "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "status": "valid", "transfer": false, - "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", + "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", "tx_index": 68, - "block_time": 1730150139, + "block_time": 1730152620, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", + "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", "block_index": 201, - "block_time": 1730150139 + "block_time": 1730152620 } ], "next_cursor": 568, @@ -657,12 +657,12 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "status": "valid", "tag": "64657374726f79", - "tx_hash": "c00a1d1e74c94dc85120712a15a6b62760a12590f92814b3ab2725b9b992038c", + "tx_hash": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282", "tx_index": 61, - "block_time": 1730150114, + "block_time": 1730152592, "asset_info": { "divisible": true, "asset_longname": null, @@ -672,9 +672,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000001" }, - "tx_hash": "c00a1d1e74c94dc85120712a15a6b62760a12590f92814b3ab2725b9b992038c", + "tx_hash": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282", "block_index": 195, - "block_time": 1730150114 + "block_time": 1730152592 } ], "next_cursor": 157, @@ -706,11 +706,11 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "status": "open", - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "tx_index": 74, - "block_time": 1730150162, + "block_time": 1730152654, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -734,9 +734,9 @@ Here is a list of events classified by theme and for each an example response: "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_time": 1730150162 + "block_time": 1730152654 } ], "next_cursor": 529, @@ -759,20 +759,20 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", "tx0_index": 51, - "tx1_address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "tx1_index": 54, - "block_time": 1730150087, + "block_time": 1730152544, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -791,9 +791,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "block_index": 188, - "block_time": 1730150087 + "block_time": 1730152544 } ], "next_cursor": 475, @@ -811,11 +811,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e" + "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144" }, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_time": 1730150162 + "block_time": 1730152654 } ], "next_cursor": 521, @@ -833,11 +833,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0" + "tx_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59" }, - "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", + "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", "block_index": 187, - "block_time": 1730150084 + "block_time": 1730152540 } ], "next_cursor": null, @@ -854,13 +854,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", - "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", "status": "completed" }, - "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", + "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", "block_index": 187, - "block_time": 1730150084 + "block_time": 1730152540 } ], "next_cursor": 454, @@ -879,18 +879,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "status": "valid", - "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", + "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", "tx_index": 53, - "block_time": 1730150084, + "block_time": 1730152540, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", + "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", "block_index": 187, - "block_time": 1730150084 + "block_time": 1730152540 } ], "next_cursor": null, @@ -908,16 +908,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "offer_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "status": "valid", - "tx_hash": "273b62eaf8de41c504f5b4619412ccadacc70cff6b889cb2396189018c05d81c", + "tx_hash": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7", "tx_index": 58, - "block_time": 1730150102 + "block_time": 1730152570 }, - "tx_hash": "273b62eaf8de41c504f5b4619412ccadacc70cff6b889cb2396189018c05d81c", + "tx_hash": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7", "block_index": 192, - "block_time": 1730150102 + "block_time": 1730152570 } ], "next_cursor": null, @@ -935,13 +935,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 207, - "order_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "block_time": 1730150162 + "order_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_time": 1730152654 }, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_time": 1730150162 + "block_time": 1730152654 } ], "next_cursor": 462, @@ -959,14 +959,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97_caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "block_time": 1730150014 + "order_match_id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "block_time": 1730152467 }, "tx_hash": null, "block_index": 184, - "block_time": 1730150014 + "block_time": 1730152467 } ], "next_cursor": null, @@ -992,17 +992,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "satoshirate": 1, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "status": 0, - "tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", + "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", "tx_index": 62, - "block_time": 1730150117, + "block_time": 1730152595, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -1011,9 +1011,9 @@ Here is a list of events classified by theme and for each an example response: "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", + "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", "block_index": 196, - "block_time": 1730150117 + "block_time": 1730152595 } ], "next_cursor": 272, @@ -1033,9 +1033,9 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "status": 0, - "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "asset_info": { "divisible": true, "asset_longname": null, @@ -1045,9 +1045,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 560, @@ -1066,13 +1066,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 144, - "destination": "mxVik5RWM3aheqn4VPBhE4NkDjFECW4vt5", + "destination": "msW5ha2RLW5GPidCb4bcBfLpepfjUcMUQU", "dispense_quantity": 10, - "dispenser_tx_hash": "3075db3fd894fb4982759d08c57ccf5915c726f7f2c2de2eb1cb9b695ac565b3", - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "tx_hash": "656b01275a930a61d0c415f3f560f4dbfb0448295939aea387a818440b8467d5", + "dispenser_tx_hash": "79936cc3125e5007430b2d0bf21f27fde011aa3b3cbe455ef38d4e924e0efb2c", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_hash": "c80fe863f3a38f0c594cc61d791ca06e52b16f9078039de69a47424eba880aea", "tx_index": 31, - "block_time": 1730149925, + "block_time": 1730152380, "asset_info": { "divisible": true, "asset_longname": null, @@ -1082,9 +1082,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "656b01275a930a61d0c415f3f560f4dbfb0448295939aea387a818440b8467d5", + "tx_hash": "c80fe863f3a38f0c594cc61d791ca06e52b16f9078039de69a47424eba880aea", "block_index": 144, - "block_time": 1730149925 + "block_time": 1730152380 } ], "next_cursor": null, @@ -1104,14 +1104,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -1122,9 +1122,9 @@ Here is a list of events classified by theme and for each an example response: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 561, @@ -1146,19 +1146,19 @@ Here is a list of events classified by theme and for each an example response: "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc", + "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", "tx_index": 25, "value": 66600.0, - "block_time": 1730149891, + "block_time": 1730152360, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc", + "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", "block_index": 138, - "block_time": 1730149891 + "block_time": 1730152360 } ], "next_cursor": 213, @@ -1196,12 +1196,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "start_block": 0, "status": "open", - "tx_hash": "93dee74a73fd75a2b609a0b4cd62839d0d254025bf44bcb5513cad7d35bfa6f3", + "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", "tx_index": 42, - "block_time": 1730149965, + "block_time": 1730152422, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1209,9 +1209,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "93dee74a73fd75a2b609a0b4cd62839d0d254025bf44bcb5513cad7d35bfa6f3", + "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", "block_index": 155, - "block_time": 1730149965 + "block_time": 1730152422 } ], "next_cursor": 196, @@ -1229,11 +1229,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "0e2c46ac44f390ff6b06d99469bca85858fa064feb09b8c2ef799039d36dfa3f" + "tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0" }, "tx_hash": null, "block_index": 130, - "block_time": 1730149860 + "block_time": 1730152319 } ], "next_cursor": 110, @@ -1254,17 +1254,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", + "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", "paid_quantity": 34, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "status": "valid", - "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", + "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", "tx_index": 23, - "block_time": 1730149883, + "block_time": 1730152352, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -1272,9 +1272,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", + "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", "block_index": 136, - "block_time": 1730149883 + "block_time": 1730152352 } ], "next_cursor": 190, @@ -1295,28 +1295,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "7ca7c8421c7f6b4f2a716ce81cec47f1f83d35e354651030b94b06e3bbec4711:0", + "destination": "207fdf628890c2cdfacd39769716d0a739ebe45cff3b74a01d319a60a717ff5b:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", + "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", "status": "valid", - "tx_hash": "7ca7c8421c7f6b4f2a716ce81cec47f1f83d35e354651030b94b06e3bbec4711", + "tx_hash": "207fdf628890c2cdfacd39769716d0a739ebe45cff3b74a01d319a60a717ff5b", "tx_index": 65, - "block_time": 1730150128, + "block_time": 1730152606, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", + "issuer": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "7ca7c8421c7f6b4f2a716ce81cec47f1f83d35e354651030b94b06e3bbec4711", + "tx_hash": "207fdf628890c2cdfacd39769716d0a739ebe45cff3b74a01d319a60a717ff5b", "block_index": 199, - "block_time": 1730150128 + "block_time": 1730152606 } ], "next_cursor": 319, @@ -1335,28 +1335,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qg89hz5l72ck62vsg34dpc2fvtfgmuhna0e0t4c", + "destination": "bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "d94e197f2a619d264cc847eb0c6d0cc74b543b39ee3e674e770d01b6491332f0:0", + "source": "1470f4b572e577839544315fa7c74ff2ffcf96c223ad7652b4f6846af2f30a45:0", "status": "valid", - "tx_hash": "1f020eae3e44998e380ea6141659b829120b8ba595664630b4ae8d51e6eb3ff2", + "tx_hash": "275ebb242af669ad747ac00fb26a598f640937588b85799a1d47bb4a881e4c86", "tx_index": 38, - "block_time": 1730149952, + "block_time": 1730152407, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1f020eae3e44998e380ea6141659b829120b8ba595664630b4ae8d51e6eb3ff2", + "tx_hash": "275ebb242af669ad747ac00fb26a598f640937588b85799a1d47bb4a881e4c86", "block_index": 151, - "block_time": 1730149952 + "block_time": 1730152407 } ], "next_cursor": null, @@ -1375,14 +1375,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 208, - "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "msg_index": 1, "quantity": 1500000000, - "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", "status": "valid", - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -1392,9 +1392,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 667, @@ -1416,17 +1416,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qvpsk2579x0my98dh6s9fxhlmk9u454p63anff9", + "source": "bcrt1qy99t2ccel0rgwsv77j7t730c4v3xwu0q4z02rr", "status": "valid", - "tx_hash": "1d67669f030d7a8d4afa14aaefef4fe7d507c15946907c1ec3b5688d4f587ce5", + "tx_hash": "faec55ede76eee50988cf0d4f1bb25d8fe1f5c75dd94ddc9427d732ef5b65344", "tx_index": 9, - "block_time": 1730149826, + "block_time": 1730152285, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "1d67669f030d7a8d4afa14aaefef4fe7d507c15946907c1ec3b5688d4f587ce5", + "tx_hash": "faec55ede76eee50988cf0d4f1bb25d8fe1f5c75dd94ddc9427d732ef5b65344", "block_index": 121, - "block_time": 1730149826 + "block_time": 1730152285 } ], "next_cursor": 65, @@ -1483,61 +1483,61 @@ Returns the list of the last ten blocks "result": [ { "block_index": 208, - "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", - "block_time": 1730150176, - "previous_block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", + "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", + "block_time": 1730152668, + "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", "difficulty": 545259519, - "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", - "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", - "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", + "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", + "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", + "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", - "block_time": 1730150162, - "previous_block_hash": "24fcd9eac7b7cd3657adfe8bc22e3952cde382c08c9782ffc7e354dfaf750fcf", + "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", + "block_time": 1730152654, + "previous_block_hash": "0ed698e4a096ff2ce31cd2413b0123c47570e5e6248dcade5b66711e081b9b1f", "difficulty": 545259519, - "ledger_hash": "e32feb5e459aef10ade923772074376074ed225d60b46c6980af3924f5acd3ef", - "txlist_hash": "07761e73b55838e899f773a3d385248e67c8639db8646ea97db76fb277ab2930", - "messages_hash": "9c239fb45f7eadba952f1e433220d5d025f3ed4a96536c564f49f4b05ff2ad4f", + "ledger_hash": "82b7aa0986153801d34b4a42f07b47c84e24685d8696f9422a2d92fad2a337b5", + "txlist_hash": "ba6fc33695ae4f6266c33514cb0cbee9d38105f78ba7594be4a4cee634d08674", + "messages_hash": "af54cefd796959cf5d8343303d9c7be0b765b1b89b693c6b5a9ab7374afb9606", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "24fcd9eac7b7cd3657adfe8bc22e3952cde382c08c9782ffc7e354dfaf750fcf", - "block_time": 1730150158, - "previous_block_hash": "290c68bb409d42e9ed62dc8223e72f61f221b4e03db77c76fe49931edea5538a", + "block_hash": "0ed698e4a096ff2ce31cd2413b0123c47570e5e6248dcade5b66711e081b9b1f", + "block_time": 1730152650, + "previous_block_hash": "6417fd8e9a6ad9919e85713fc130ea3db498e628f3e95be84cf24e648410b349", "difficulty": 545259519, - "ledger_hash": "cdce55ebc4b38e82b4cd4095b9153f4a29fc07ff2b8bcfb6b6f6cd13277ccc42", - "txlist_hash": "00e4944db20400bcd459987846344303b626e6a91a9767f1474eb9111787e71e", - "messages_hash": "fb41f289331b1456895f7d5b051b5a17741fc1bb9308036094d6e752a1edd358", + "ledger_hash": "be00302ec692c6beb809ed6c76f726d178093e916290e232554035f57146b6f2", + "txlist_hash": "365902f962fea5f28dff03b680c5a8b9ca5fd1a33058de5de7ec14aeb225ed25", + "messages_hash": "0dc8852d7d7ecdd56b9c63c616455bc1c116fc865b45cb4b3cec60586168ca3a", "transaction_count": 1, "confirmed": true }, { "block_index": 205, - "block_hash": "290c68bb409d42e9ed62dc8223e72f61f221b4e03db77c76fe49931edea5538a", - "block_time": 1730150154, - "previous_block_hash": "3906807db0d56b9fec78f5982ba29d4512f200a4769bb4153d83c94df666c0a4", + "block_hash": "6417fd8e9a6ad9919e85713fc130ea3db498e628f3e95be84cf24e648410b349", + "block_time": 1730152636, + "previous_block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", "difficulty": 545259519, - "ledger_hash": "fb6fa100bcf1dab2deace12dd3f350e79c2f5d805a7608209d29d7308ff65edc", - "txlist_hash": "475920684f1ab856770d9d807d17ef1b1e547555e7787b0e8a6f112fae00c432", - "messages_hash": "80907e25a0ead5ab76e1b793b9a17683be58f0da5739d6b553205fb8f915fc42", + "ledger_hash": "c1b7edc78b076d79b3a5e4c72424a09d7ffe14fe75b38a4debc9d23fd9f5398d", + "txlist_hash": "4eeeef0e7bd3dd22665ee35f6e47962d68777493d6d40d4ee79327499645e336", + "messages_hash": "c37fc64064bacb9a17a6bdf16fc6c67d169079ff509f690e442a561396f85182", "transaction_count": 1, "confirmed": true }, { "block_index": 204, - "block_hash": "3906807db0d56b9fec78f5982ba29d4512f200a4769bb4153d83c94df666c0a4", - "block_time": 1730150151, - "previous_block_hash": "5b2cb939f6b6a782be5829b4a32d310f3e8b11c136ebed663d064b28e5700f62", + "block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", + "block_time": 1730152632, + "previous_block_hash": "722ff4f47c82493fc6b30fa306d6a1be83cf3d3e17d6efb4e1bcf1ab0f1fa3c3", "difficulty": 545259519, - "ledger_hash": "b173405fba1bf44bf2a8c11c6b526256ea13b3750afce6a0d8b4b7369b3ac2ed", - "txlist_hash": "0286081e03a112d9e0153e5fe9d8043526f209fef2239e647a256edf72c72157", - "messages_hash": "51ad30cb166cc647352835bd87f313ecb0c1f4d9058ab7740ea45a60dd26ceb2", + "ledger_hash": "724180ad76ff4c429d83777f69e676fb618e8bad0ff4f7e17e21edf0fc0eebf0", + "txlist_hash": "03f7a32a202bc5cc53417126d5f8a83d7f582f25e64c67cc15e08eb9953cfb98", + "messages_hash": "351bb1b903e1bfe9b921d195c89083d3a5b5eef4fa22f16ded1b900b4dc7f6c4", "transaction_count": 1, "confirmed": true } @@ -1574,13 +1574,13 @@ Return the information of a block { "result": { "block_index": 208, - "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", - "block_time": 1730150176, - "previous_block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", + "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", + "block_time": 1730152668, + "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", "difficulty": 545259519, - "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", - "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", - "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", + "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", + "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", + "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", "transaction_count": 1, "confirmed": true } @@ -1592,7 +1592,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be` (str, required) - The index of the block to return + + block_hash: `41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1` (str, required) - The index of the block to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -1604,13 +1604,13 @@ Return the information of a block { "result": { "block_index": 208, - "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", - "block_time": 1730150176, - "previous_block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", + "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", + "block_time": 1730152668, + "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", "difficulty": 545259519, - "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", - "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", - "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", + "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", + "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", + "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", "transaction_count": 1, "confirmed": true } @@ -1641,17 +1641,17 @@ Returns the transactions of a block "result": [ { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", - "block_time": 1730150176, - "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", - "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", + "block_time": 1730152668, + "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1697,11 +1697,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", - "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", + "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", + "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", "transaction_count": 1, - "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", - "block_time": 1730150176 + "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", + "block_time": 1730152668 }, "tx_hash": null }, @@ -1710,10 +1710,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75 }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" }, { "event_index": 673, @@ -1722,14 +1722,14 @@ Returns the events of a block "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -1740,7 +1740,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" }, { "event_index": 672, @@ -1749,9 +1749,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "status": 0, - "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "asset_info": { "divisible": true, "asset_longname": null, @@ -1761,22 +1761,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -1786,7 +1786,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" } ], "next_cursor": 670, @@ -1869,16 +1869,16 @@ Returns the events of a block filtered by event "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -1888,7 +1888,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" }, { "event_index": 669, @@ -1898,12 +1898,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 1500000000, "tx_index": 75, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "block_time": 1730150176, + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -1913,7 +1913,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" }, { "event_index": 666, @@ -1923,22 +1923,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 1500000000, "tx_index": 75, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "block_time": 1730150176, + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_time": 1730152668, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" } ], "next_cursor": null, @@ -2001,16 +2001,16 @@ Returns the credits of a block "result": [ { "block_index": 208, - "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -2026,12 +2026,12 @@ Returns the credits of a block "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -2047,16 +2047,16 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -2116,12 +2116,12 @@ Returns the debits of a block "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "utxo": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "utxo_address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -2137,16 +2137,16 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "utxo": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "utxo_address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -2182,10 +2182,10 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "object_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", "block_index": 207, "confirmed": true, - "block_time": 1730150162 + "block_time": 1730152654 } ], "next_cursor": null, @@ -2217,13 +2217,13 @@ Returns the cancels of a block "result": [ { "tx_index": 58, - "tx_hash": "273b62eaf8de41c504f5b4619412ccadacc70cff6b889cb2396189018c05d81c", + "tx_hash": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7", "block_index": 192, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "offer_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "offer_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", "status": "valid", "confirmed": true, - "block_time": 1730150102 + "block_time": 1730152570 } ], "next_cursor": null, @@ -2255,15 +2255,15 @@ Returns the destructions of a block "result": [ { "tx_index": 61, - "tx_hash": "c00a1d1e74c94dc85120712a15a6b62760a12590f92814b3ab2725b9b992038c", + "tx_hash": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282", "block_index": 195, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730150114, + "block_time": 1730152592, "asset_info": { "divisible": true, "asset_longname": null, @@ -2316,14 +2316,14 @@ Returns the issuances of a block "result": [ { "tx_index": 68, - "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", + "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -2338,7 +2338,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730150139, + "block_time": 1730152620, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -2372,10 +2372,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -2383,7 +2383,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -2396,10 +2396,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -2407,11 +2407,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -2449,27 +2449,27 @@ Returns the dispenses of a block { "tx_index": 75, "dispense_index": 0, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "last_status_tx_hash": null, - "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2484,7 +2484,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -2525,16 +2525,16 @@ Returns the sweeps of a block "result": [ { "tx_index": 60, - "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", + "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", "block_index": 194, - "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730150109, + "block_time": 1730152588, "fee_paid_normalized": "0.00600000" } ], @@ -2573,10 +2573,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "93dee74a73fd75a2b609a0b4cd62839d0d254025bf44bcb5513cad7d35bfa6f3", + "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", "tx_index": 42, "block_index": 155, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -2601,7 +2601,7 @@ Returns the fairminters by its block index "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730149965, + "block_time": 1730152422, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2638,22 +2638,22 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", + "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149883, + "block_time": 1730152352, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -2692,17 +2692,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc", + "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", "block_index": 138, - "block_hash": "249ff5e72fd3ae655fcc4b831cc6c022daa07ef5bfe3d55eb5e6e2bb8dd29900", - "block_time": 1730149891, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_hash": "53cb12386a68a0eb2d712688e0a922b31c36cca2e8337ea04f21b73843540e08", + "block_time": 1730152360, + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": "e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc:1", + "utxos_info": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4:1", "confirmed": true, "unpacked_data": { "message_type": "broadcast", @@ -2727,25 +2727,25 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 53, - "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", + "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", "block_index": 187, - "block_hash": "632ab7977d856811c10db988ab168fff051d66e29ac6b0b2ab8084e8cf11ab9a", - "block_time": 1730150084, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "5044c36de08b93fffc6876d3f7129b682a3aed38618d51b8a3a755666c378a72", + "block_time": 1730152540, + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "btc_amount": 2000, "fee": 10000, - "data": "0bbee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "data": "0b0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", "supported": true, - "utxos_info": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f:0", + "utxos_info": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29:0", "confirmed": true, "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "tx1_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", - "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", "status": "valid" } }, @@ -2760,23 +2760,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 58, - "tx_hash": "273b62eaf8de41c504f5b4619412ccadacc70cff6b889cb2396189018c05d81c", + "tx_hash": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7", "block_index": 192, - "block_hash": "35224ea196fd61790c7843c3da614571b729bb5080a7773d7d845a26019fd3c0", - "block_time": 1730150102, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "7cdd71a5dc05b5bbe83295e9dd2b0c687e13e6d2964c7861b87dad729343aac4", + "block_time": 1730152570, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "460674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", + "data": "465c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", "supported": true, - "utxos_info": "273b62eaf8de41c504f5b4619412ccadacc70cff6b889cb2396189018c05d81c:1", + "utxos_info": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7:1", "confirmed": true, "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", + "offer_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", "status": "valid" } }, @@ -2791,17 +2791,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 61, - "tx_hash": "c00a1d1e74c94dc85120712a15a6b62760a12590f92814b3ab2725b9b992038c", + "tx_hash": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282", "block_index": 195, - "block_hash": "726d6ec3139d5517fa4118fe593e9ffdd12823f7deeb7867e22f4fb4bf08565c", - "block_time": 1730150114, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "block_hash": "3f462ac5ddea322e484ed6d05aecc7c1920781323352104cfe685930eb32c4ee", + "block_time": 1730152592, + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "destination": null, "btc_amount": 0, "fee": 10000, "data": "6e0000000000000001000000000000000164657374726f79", "supported": true, - "utxos_info": "c00a1d1e74c94dc85120712a15a6b62760a12590f92814b3ab2725b9b992038c:1", + "utxos_info": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282:1", "confirmed": true, "unpacked_data": { "message_type": "destroy", @@ -2831,17 +2831,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 62, - "tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", + "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", "block_index": 196, - "block_hash": "49109ffa9d0512d963711a675911d34adbede2be33e8e0514c627f05283c7a68", - "block_time": 1730150117, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "5838e566e95890cb4624db9ee9ccaac5bdd5e02a1bd554532c8d360540c25acc", + "block_time": 1730152595, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9:1", + "utxos_info": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648:1", "confirmed": true, "unpacked_data": { "message_type": "dispenser", @@ -2858,7 +2858,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -2877,17 +2877,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", - "block_time": 1730150176, - "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", - "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", + "block_time": 1730152668, + "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -2907,17 +2907,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 41, - "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", + "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", "block_index": 154, - "block_hash": "01df8fa5f08231e8d8c6e95051e60df9e91a57e2b35ca9d8d55d5945dd9b2c8d", - "block_time": 1730149962, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "6efbde2429b5135643b2c45667e5daa038a188e1d611f50c96a0af39a2ac9d8a", + "block_time": 1730152419, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a:1", + "utxos_info": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab:1", "confirmed": true, "unpacked_data": { "message_type": "dividend", @@ -2930,7 +2930,7 @@ Here is sample API output for each of these transactions: "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -2955,17 +2955,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 68, - "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", + "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", "block_index": 201, - "block_hash": "283a8824308fb868afc9759ec62e9714ff889dbf79c0e6a5b9aa0d6f7d4b906a", - "block_time": 1730150139, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "7aefd1926dfc5229ca8b4f5f928c519809b6544393fcc22c1be0ed4e0823a910", + "block_time": 1730152620, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305:1", + "utxos_info": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -2997,17 +2997,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 74, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", - "block_time": 1730150162, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", + "block_time": 1730152654, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", + "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3050,17 +3050,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 69, - "tx_hash": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c", + "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", "block_index": 202, - "block_hash": "4def8f3f53efebbf9574a397c76511feff3e10ee36a643847e7619aa265947fa", - "block_time": 1730150144, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "79b4c1c873594bc980c6c6d4733edf015c77175fae846e37158cbc393a56609d", + "block_time": 1730152624, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d630d477df0f6e07f91e8949433310400b60dd35", + "data": "02000000178d82231300000000000003e8805511f1f6819b94a0094d338694640cbee5b8969d", "supported": true, - "utxos_info": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c:1", + "utxos_info": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -3068,12 +3068,12 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -3091,17 +3091,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 73, - "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "block_index": 206, - "block_hash": "24fcd9eac7b7cd3657adfe8bc22e3952cde382c08c9782ffc7e354dfaf750fcf", - "block_time": 1730150158, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "block_hash": "0ed698e4a096ff2ce31cd2413b0123c47570e5e6248dcade5b66711e081b9b1f", + "block_time": 1730152650, + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038053acd20b89492c54642d81b92cdc32862046ce71803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807967f0a0bd9d33804ecfac05d869b2782a3467a180a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5:0", + "utxos_info": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -3109,14 +3109,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -3124,7 +3124,7 @@ Here is sample API output for each of these transactions: }, { "asset": "XCP", - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -3150,23 +3150,23 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 60, - "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", + "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", "block_index": 194, - "block_hash": "41964b97ac2247a64d871b722409b1b1bd1a62c527bf2c85ebf0319ea1e957b7", - "block_time": 1730150109, - "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "block_hash": "62df80f065f42d63baeec0fc56cfa085a830945ca932cdeb4cd048b4e81e37f7", + "block_time": 1730152588, + "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04803c9e235caa5be4be07a3dfbf730d21c096c653e2017377656570206d7920617373657473", + "data": "04802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b4017377656570206d7920617373657473", "supported": true, - "utxos_info": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813:1", + "utxos_info": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35:1", "confirmed": true, "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "flags": 1, "memo": "sweep my assets" } @@ -3199,17 +3199,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", - "block_time": 1730150176, - "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", - "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", + "block_time": 1730152668, + "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3222,17 +3222,17 @@ Returns the list of the last ten transactions }, { "tx_index": 74, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", - "block_time": 1730150162, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", + "block_time": 1730152654, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", + "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3277,7 +3277,7 @@ Returns the list of the last ten transactions Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000101cf949dffd0450d4a69dae4636f4c94c35011e7f9338efea635db0220d592bc1e0000000000ffffffff020000000000000000356a333e0104f9de1867866062b67557048fb8a623a572b848d6d77f4483e791b32ad96759cb346a9a9f40f4e3c413395fa062f31badf0ca052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102473044022018455d972c6b439a6641f0e5633be8f382872c4893416b692b38f8a5ea15461402206fc58766cb40cc9d552def555bfb27de92737607eb0814ff2a6f8e34094717e60121026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c00000000` (str, required) - Raw transaction in hex format + + rawtransaction: `020000000001011d619aab321211396b23bb1b23b64c2f834d03416457d82cec83697f6cd6a38a0000000000ffffffff020000000000000000356a3327c367fc2cfb37dc6531af27af803c5260f6ebef6c5928e491c8932f7f76d52faa764936b4a720e062b566e4536ccd0ffed168f0ca052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1024730440220637c88748ba11d0a32a201ae071961d394e46e5b6d196154324e6027a48ba65502201f7e7ed2867dd9516e75b43cc4e4033e3735ae5a01641fbe10a92d55d2316fde012103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50000000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -3290,7 +3290,7 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, @@ -3301,7 +3301,7 @@ Returns Counterparty information from a raw transaction in hex format. "coinbase": false, "vin": [ { - "hash": "cf949dffd0450d4a69dae4636f4c94c35011e7f9338efea635db0220d592bc1e", + "hash": "1d619aab321211396b23bb1b23b64c2f834d03416457d82cec83697f6cd6a38a", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -3311,20 +3311,20 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 0, - "script_pub_key": "6a333e0104f9de1867866062b67557048fb8a623a572b848d6d77f4483e791b32ad96759cb346a9a9f40f4e3c413395fa062f31bad" + "script_pub_key": "6a3327c367fc2cfb37dc6531af27af803c5260f6ebef6c5928e491c8932f7f76d52faa764936b4a720e062b566e4536ccd0ffed168" }, { "value": 4999990000, - "script_pub_key": "001453acd20b89492c54642d81b92cdc32862046ce71" + "script_pub_key": "00147967f0a0bd9d33804ecfac05d869b2782a3467a1" } ], "vtxinwit": [ - "3044022018455d972c6b439a6641f0e5633be8f382872c4893416b692b38f8a5ea15461402206fc58766cb40cc9d552def555bfb27de92737607eb0814ff2a6f8e34094717e601", - "026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c" + "30440220637c88748ba11d0a32a201ae071961d394e46e5b6d196154324e6027a48ba65502201f7e7ed2867dd9516e75b43cc4e4033e3735ae5a01641fbe10a92d55d2316fde01", + "03be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d500" ], "lock_time": 0, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", - "tx_id": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830" + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", + "tx_id": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b" }, "unpacked_data": { "message_type": "order", @@ -3366,7 +3366,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca` (str, required) - Transaction hash + + tx_hash: `176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43` (str, required) - Transaction hash + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3377,18 +3377,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710803eb72a4136323ae914b5e511d43a96fe66f85c55", + "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "046bd1758bd65556db2f872b9803788e82871cb891bca6a8671f1c2203d5eb2f", + "hash": "138349f715f3b77257e2c4ad6a7dd21e86edaa83fc46bc3d9e966c702eb2831d", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -3398,20 +3398,20 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e159b491df4e1cc63cbd344287282ce43eb42ae4cf95a12d94d973b973c3b5b18f479d9d00c735c4837d0af87be5b" + "script_pub_key": "6a2eff33b1f7f8e902221f13c27b12b7d32e190f805c939dcf9ab4de5baf7143247463d682a89b00ffe16d91d8dc9d1f" }, { "value": 4999970000, - "script_pub_key": "00143c9e235caa5be4be07a3dfbf730d21c096c653e2" + "script_pub_key": "00142f97d5f43cfda62fa2b92fe2d2b1dcd874e475b4" } ], "vtxinwit": [ - "3044022052ad54091732d8d818d82ec24649155fe2f4fdb6a6a7a2aded7fb7bea407e4b002202fa49a77a5158f5687a5a2600001f4fabf5303d46a9a0809dca4e2240f17862801", - "03c1a7c33ad91c7f9e3c3aec9546acbb11cc8e02feaff182e7e827840daa063254" + "3044022036beb3fb4d3dd6bd98282613490c124c3a14f85ae1b1f004c2f44bd429f4a588022051a6de46a46e50e2ae2b08532f731486c334ac19db5ba804a53f0921fb2e890701", + "023e3d46364a1fab486d12778805a80a614ea43362116ec89285ecd3f2893be2b9" ], "lock_time": 0, - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", - "tx_id": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca" + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_id": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43" }, "unpacked_data": { "message_type": "enhanced_send", @@ -3419,7 +3419,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "memo": null, "asset_info": { "divisible": true, @@ -3480,17 +3480,17 @@ Returns a transaction by its index. { "result": { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", - "block_time": 1730150176, - "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", - "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", + "block_time": 1730152668, + "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3509,7 +3509,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b` (str, required) - The hash of the transaction + + tx_hash: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7` (str, required) - The hash of the transaction + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -3521,17 +3521,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", - "block_time": 1730150176, - "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", - "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", + "block_time": 1730152668, + "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -3574,12 +3574,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75 }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 673, @@ -3588,14 +3588,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -3606,9 +3606,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 672, @@ -3617,9 +3617,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "status": 0, - "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "asset_info": { "divisible": true, "asset_longname": null, @@ -3629,24 +3629,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -3656,9 +3656,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 670, @@ -3666,14 +3666,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 208, - "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "msg_index": 1, "quantity": 1500000000, - "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", "status": "valid", - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -3683,9 +3683,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 669, @@ -3698,7 +3698,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b` (str, required) - The hash of the transaction to return + + tx_hash: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `675` (str, optional) - The last event index to return @@ -3722,12 +3722,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75 }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 673, @@ -3736,14 +3736,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -3754,9 +3754,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 672, @@ -3765,9 +3765,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "status": 0, - "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "asset_info": { "divisible": true, "asset_longname": null, @@ -3777,24 +3777,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -3804,9 +3804,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 670, @@ -3814,14 +3814,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 208, - "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "msg_index": 1, "quantity": 1500000000, - "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", "status": "valid", - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -3831,9 +3831,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 669, @@ -3846,7 +3846,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b` (str, required) - The hash of the transaction to return + + tx_hash: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7` (str, required) - The hash of the transaction to return + cursor (str, optional) - The last index of the debits to return + Default: `None` + limit: `5` (int, optional) - The maximum number of debits to return @@ -3865,10 +3865,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -3876,7 +3876,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -3889,10 +3889,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -3900,11 +3900,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -3922,7 +3922,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b` (str, required) - The hash of the transaction to return + + tx_hash: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7` (str, required) - The hash of the transaction to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -3942,27 +3942,27 @@ Returns the dispenses of a block { "tx_index": 75, "dispense_index": 0, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "last_status_tx_hash": null, - "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3977,7 +3977,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -4021,16 +4021,16 @@ Returns the events of a transaction "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -4040,9 +4040,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 669, @@ -4052,12 +4052,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 1500000000, "tx_index": 75, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "block_time": 1730150176, + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -4067,9 +4067,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 666, @@ -4079,24 +4079,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 1500000000, "tx_index": 75, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "block_time": 1730150176, + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_time": 1730152668, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": null, @@ -4109,7 +4109,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b` (str, required) - The hash of the transaction to return + + tx_hash: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `675` (str, optional) - The last event index to return + Default: `None` @@ -4131,16 +4131,16 @@ Returns the events of a transaction "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -4150,9 +4150,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 669, @@ -4162,12 +4162,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 1500000000, "tx_index": 75, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "block_time": 1730150176, + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -4177,9 +4177,9 @@ Returns the events of a transaction }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 666, @@ -4189,24 +4189,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 1500000000, "tx_index": 75, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "block_time": 1730150176, + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_time": 1730152668, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": null, @@ -4221,7 +4221,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70,bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s,bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - Comma separated list of addresses + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -4245,7 +4245,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4255,7 +4255,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4266,7 +4266,7 @@ Returns the balances of several addresses "total": 99999998960, "addresses": [ { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -4276,7 +4276,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4287,7 +4287,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4297,7 +4297,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4308,7 +4308,7 @@ Returns the balances of several addresses "total": 960, "addresses": [ { - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "utxo": null, "utxo_address": null, "quantity": 960, @@ -4318,7 +4318,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4329,7 +4329,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4339,7 +4339,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4350,7 +4350,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4360,7 +4360,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4377,7 +4377,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70,bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s,bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - Comma separated list of addresses to return + cursor: `75` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -4396,17 +4396,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 74, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", - "block_time": 1730150162, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", + "block_time": 1730152654, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", + "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -4442,17 +4442,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 73, - "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "block_index": 206, - "block_hash": "24fcd9eac7b7cd3657adfe8bc22e3952cde382c08c9782ffc7e354dfaf750fcf", - "block_time": 1730150158, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "block_hash": "0ed698e4a096ff2ce31cd2413b0123c47570e5e6248dcade5b66711e081b9b1f", + "block_time": 1730152650, + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038053acd20b89492c54642d81b92cdc32862046ce71803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807967f0a0bd9d33804ecfac05d869b2782a3467a180a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5:0", + "utxos_info": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4460,14 +4460,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4475,7 +4475,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4494,17 +4494,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 72, - "tx_hash": "5cc312fce3a8f8432aea553285ab698a3d10185eafdb52df5723ee3ed378d751", + "tx_hash": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", "block_index": 205, - "block_hash": "290c68bb409d42e9ed62dc8223e72f61f221b4e03db77c76fe49931edea5538a", - "block_time": 1730150154, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "block_hash": "6417fd8e9a6ad9919e85713fc130ea3db498e628f3e95be84cf24e648410b349", + "block_time": 1730152636, + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038053acd20b89492c54642d81b92cdc32862046ce71803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e2c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003807967f0a0bd9d33804ecfac05d869b2782a3467a180a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b4c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "5cc312fce3a8f8432aea553285ab698a3d10185eafdb52df5723ee3ed378d751:0", + "utxos_info": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4512,14 +4512,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4527,7 +4527,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -4546,17 +4546,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 71, - "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "block_index": 204, - "block_hash": "3906807db0d56b9fec78f5982ba29d4512f200a4769bb4153d83c94df666c0a4", - "block_time": 1730150151, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", + "block_time": 1730152632, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d630d477df0f6e07f91e8949433310400b60dd35803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e240000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4:0", + "utxos_info": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4564,14 +4564,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4579,7 +4579,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4598,17 +4598,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 70, - "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", + "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", "block_index": 203, - "block_hash": "5b2cb939f6b6a782be5829b4a32d310f3e8b11c136ebed663d064b28e5700f62", - "block_time": 1730150148, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "722ff4f47c82493fc6b30fa306d6a1be83cf3d3e17d6efb4e1bcf1ab0f1fa3c3", + "block_time": 1730152628, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d630d477df0f6e07f91e8949433310400b60dd35803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109:0", + "utxos_info": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4616,14 +4616,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4631,7 +4631,7 @@ Returns the transactions of a list of addresses }, { "asset": "XCP", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4659,7 +4659,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70,bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s,bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `675` (str, optional) - The last event index to return @@ -4695,11 +4695,11 @@ Returns the events of a list of addresses "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "status": "open", - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "tx_index": 74, - "block_time": 1730150162, + "block_time": 1730152654, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4723,24 +4723,24 @@ Returns the events of a list of addresses "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_time": 1730150162 + "block_time": 1730152654 }, { "event_index": 658, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "block_index": 207, - "event": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "event": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "quantity": 1000, "tx_index": 74, "utxo": null, "utxo_address": null, - "block_time": 1730150162, + "block_time": 1730152654, "asset_info": { "divisible": true, "asset_longname": null, @@ -4750,37 +4750,37 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_time": 1730150162 + "block_time": 1730152654 }, { "event_index": 657, "event": "ORDER_EXPIRATION", "params": { "block_index": 207, - "order_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "block_time": 1730150162 + "order_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_time": 1730152654 }, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_time": 1730150162 + "block_time": 1730152654 }, { "event_index": 656, "event": "CREDIT", "params": { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "block_index": 207, "calling_function": "cancel order", - "event": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "event": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730150162, + "block_time": 1730152654, "asset_info": { "divisible": true, "asset_longname": null, @@ -4790,25 +4790,25 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00005000" }, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_time": 1730150162 + "block_time": 1730152654 }, { "event_index": 654, "event": "NEW_TRANSACTION", "params": { - "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", + "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", "block_index": 207, - "block_time": 1730150162, + "block_time": 1730152654, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "tx_index": 74, - "utxos_info": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", + "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -4840,9 +4840,9 @@ Returns the events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_time": 1730150162 + "block_time": 1730152654 } ], "next_cursor": 650, @@ -4855,7 +4855,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk,bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2,bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2` (str, required) - Comma separated list of addresses to return + cursor (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return @@ -4871,17 +4871,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "memo": null, "quantity": 10000, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "status": "valid", - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "tx_index": 76, "asset_info": { "divisible": true, @@ -4892,22 +4892,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "CREDIT", "params": { - "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -4917,22 +4917,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "XCP", "block_index": 208, - "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -4942,30 +4942,30 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730150180.8792815, + "block_time": 1730152671.386915, "btc_amount": 0, - "data": "0200000000000000010000000000002710803eb72a4136323ae914b5e511d43a96fe66f85c55", + "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", "destination": "", "fee": 10000, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "tx_index": 76, - "utxos_info": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca:1", + "utxos_info": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "memo": null, "asset_info": { "divisible": true, @@ -4979,7 +4979,7 @@ Returns the mempool events of a list of addresses }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 } ], "next_cursor": null, @@ -4992,7 +4992,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -5012,7 +5012,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -5020,14 +5020,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -5035,14 +5035,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -5050,14 +5050,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -5072,7 +5072,7 @@ Returns the balances of an address "quantity_normalized": "826.49941000" }, { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -5080,7 +5080,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -5097,7 +5097,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -5110,7 +5110,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -5135,7 +5135,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5185,16 +5185,16 @@ Returns the credits of an address "result": [ { "block_index": 207, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "event": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150162, + "block_time": 1730152654, "asset_info": { "divisible": true, "asset_longname": null, @@ -5206,16 +5206,16 @@ Returns the credits of an address }, { "block_index": 206, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "event": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150158, + "block_time": 1730152650, "asset_info": { "divisible": true, "asset_longname": null, @@ -5227,16 +5227,16 @@ Returns the credits of an address }, { "block_index": 205, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "5cc312fce3a8f8432aea553285ab698a3d10185eafdb52df5723ee3ed378d751", + "event": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150154, + "block_time": 1730152636, "asset_info": { "divisible": true, "asset_longname": null, @@ -5248,20 +5248,20 @@ Returns the credits of an address }, { "block_index": 201, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", + "event": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", "tx_index": 68, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150139, + "block_time": 1730152620, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -5269,16 +5269,16 @@ Returns the credits of an address }, { "block_index": 192, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", + "event": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150102, + "block_time": 1730152570, "asset_info": { "divisible": true, "asset_longname": null, @@ -5299,7 +5299,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -5338,16 +5338,16 @@ Returns the debits of an address "result": [ { "block_index": 207, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "event": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150162, + "block_time": 1730152654, "asset_info": { "divisible": true, "asset_longname": null, @@ -5359,16 +5359,16 @@ Returns the debits of an address }, { "block_index": 204, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "event": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150151, + "block_time": 1730152632, "asset_info": { "divisible": true, "asset_longname": null, @@ -5380,20 +5380,20 @@ Returns the debits of an address }, { "block_index": 204, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "event": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150151, + "block_time": 1730152632, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -5401,16 +5401,16 @@ Returns the debits of an address }, { "block_index": 203, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", + "event": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150148, + "block_time": 1730152628, "asset_info": { "divisible": true, "asset_longname": null, @@ -5422,20 +5422,20 @@ Returns the debits of an address }, { "block_index": 203, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", + "event": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150148, + "block_time": 1730152628, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -5452,7 +5452,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address of the feed + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -5487,7 +5487,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + cursor (str, optional) - The last index of the broadcasts to return + Default: `None` + limit: `5` (int, optional) - The maximum number of broadcasts to return @@ -5506,9 +5506,9 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "6bb6a779b50b7a5f5e7f2eeb16d14bf3280a3bb411704fe10c8e4937e68590ac", + "tx_hash": "278eb0af25f68b3a6653ba0f2df33f974ff0da6c7104e66879b1e7398e7c5c0a", "block_index": 137, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -5516,7 +5516,7 @@ Returns the broadcasts of a source "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730149887, + "block_time": 1730152356, "fee_fraction_int_normalized": "0.00000000" } ], @@ -5530,7 +5530,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + cursor (str, optional) - The last index of the burns to return + Default: `None` + limit: `5` (int, optional) - The maximum number of burns to return @@ -5549,14 +5549,14 @@ Returns the burns of an address "result": [ { "tx_index": 0, - "tx_hash": "8ff0c2680710490b1c7c0269f3397e605b43865d2c911da53d7fa1a8ef46f050", + "tx_hash": "43020304a8d69e758c8cfe4f200d3db11286a5b782bdf8270be5b1ce40029012", "block_index": 112, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730149793, + "block_time": 1730152253, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -5571,7 +5571,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + cursor (str, optional) - The last index of the sends to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sends to return @@ -5590,10 +5590,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 71, - "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "block_index": 204, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5601,7 +5601,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730150151, + "block_time": 1730152632, "asset_info": { "divisible": true, "asset_longname": null, @@ -5614,10 +5614,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 71, - "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "block_index": 204, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5625,11 +5625,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730150151, + "block_time": 1730152632, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -5638,10 +5638,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 71, - "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "block_index": 204, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5649,11 +5649,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730150151, + "block_time": 1730152632, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -5662,10 +5662,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 70, - "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", + "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", "block_index": 203, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "quantity": 10, "status": "valid", @@ -5673,7 +5673,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730150148, + "block_time": 1730152628, "asset_info": { "divisible": true, "asset_longname": null, @@ -5686,10 +5686,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 70, - "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", + "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", "block_index": 203, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5697,11 +5697,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730150148, + "block_time": 1730152628, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -5719,7 +5719,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qg89hz5l72ck62vsg34dpc2fvtfgmuhna0e0t4c` (str, required) - The address to return + + address: `bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034` (str, required) - The address to return + cursor (str, optional) - The last index of the sends to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sends to return @@ -5738,10 +5738,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "1f020eae3e44998e380ea6141659b829120b8ba595664630b4ae8d51e6eb3ff2", + "tx_hash": "275ebb242af669ad747ac00fb26a598f640937588b85799a1d47bb4a881e4c86", "block_index": 151, - "source": "d94e197f2a619d264cc847eb0c6d0cc74b543b39ee3e674e770d01b6491332f0:0", - "destination": "bcrt1qg89hz5l72ck62vsg34dpc2fvtfgmuhna0e0t4c", + "source": "1470f4b572e577839544315fa7c74ff2ffcf96c223ad7652b4f6846af2f30a45:0", + "destination": "bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -5749,11 +5749,11 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730149952, + "block_time": 1730152407, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -5771,7 +5771,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5791,10 +5791,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "result": [ { "tx_index": 71, - "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "block_index": 204, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5802,11 +5802,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730150151, + "block_time": 1730152632, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -5815,10 +5815,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 71, - "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "block_index": 204, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5826,11 +5826,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730150151, + "block_time": 1730152632, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -5839,10 +5839,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 70, - "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", + "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", "block_index": 203, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5850,11 +5850,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730150148, + "block_time": 1730152628, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -5863,10 +5863,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 70, - "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", + "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", "block_index": 203, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -5874,11 +5874,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730150148, + "block_time": 1730152628, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -5887,10 +5887,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset }, { "tx_index": 69, - "tx_hash": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c", + "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", "block_index": 202, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -5898,11 +5898,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730150144, + "block_time": 1730152624, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -5920,7 +5920,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qg89hz5l72ck62vsg34dpc2fvtfgmuhna0e0t4c` (str, required) - The address to return + + address: `bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034` (str, required) - The address to return + asset: `MPMASSET` (str, required) - The asset to return + cursor (str, optional) - The last index of the sends to return + Default: `None` @@ -5948,7 +5948,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -5977,9 +5977,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -5988,7 +5988,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5998,7 +5998,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -6014,9 +6014,9 @@ Returns the dispensers of an address }, { "tx_index": 62, - "tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", + "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", "block_index": 197, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6025,7 +6025,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6035,11 +6035,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730150120, + "block_time": 1730152599, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -6060,7 +6060,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -6073,9 +6073,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6084,7 +6084,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6094,7 +6094,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -6116,7 +6116,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -6136,19 +6136,19 @@ Returns the dispenses of a source { "tx_index": 63, "dispense_index": 0, - "tx_hash": "541f0fb85b7dbc11dc47a5535cee583b4066f143b1409c77dd9d39d0d60f6af8", + "tx_hash": "106579c58f047e17b477ed29537a950c9bd5764e11e554aecd245d2b34c593bb", "block_index": 197, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", + "dispenser_tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6156,7 +6156,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6171,11 +6171,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730150120, + "block_time": 1730152599, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -6185,19 +6185,19 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", + "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6205,7 +6205,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6220,7 +6220,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -6234,19 +6234,19 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", + "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", "block_index": 140, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6254,7 +6254,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6269,7 +6269,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149900, + "block_time": 1730152367, "asset_info": { "divisible": true, "asset_longname": null, @@ -6291,7 +6291,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - The address to return + + address: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -6311,19 +6311,19 @@ Returns the dispenses of a destination { "tx_index": 63, "dispense_index": 0, - "tx_hash": "541f0fb85b7dbc11dc47a5535cee583b4066f143b1409c77dd9d39d0d60f6af8", + "tx_hash": "106579c58f047e17b477ed29537a950c9bd5764e11e554aecd245d2b34c593bb", "block_index": 197, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", + "dispenser_tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6331,7 +6331,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6346,11 +6346,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730150120, + "block_time": 1730152599, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -6360,19 +6360,19 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", + "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6380,7 +6380,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6395,7 +6395,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -6409,19 +6409,19 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", + "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", "block_index": 140, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6429,7 +6429,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6444,7 +6444,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149900, + "block_time": 1730152367, "asset_info": { "divisible": true, "asset_longname": null, @@ -6466,7 +6466,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` @@ -6487,19 +6487,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", + "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6507,7 +6507,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6522,7 +6522,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -6536,19 +6536,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", + "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", "block_index": 140, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6556,7 +6556,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6571,7 +6571,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149900, + "block_time": 1730152367, "asset_info": { "divisible": true, "asset_longname": null, @@ -6593,7 +6593,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - The address to return + + address: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` @@ -6614,19 +6614,19 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", + "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6634,7 +6634,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6649,7 +6649,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -6663,19 +6663,19 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", + "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", "block_index": 140, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6683,7 +6683,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6698,7 +6698,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149900, + "block_time": 1730152367, "asset_info": { "divisible": true, "asset_longname": null, @@ -6720,7 +6720,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk` (str, required) - The address to return + + address: `bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2` (str, required) - The address to return + cursor (str, optional) - The last index of the sweeps to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sweeps to return @@ -6739,16 +6739,16 @@ Returns the sweeps of an address "result": [ { "tx_index": 60, - "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", + "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", "block_index": 194, - "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730150109, + "block_time": 1730152588, "fee_paid_normalized": "0.00600000" } ], @@ -6762,7 +6762,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -6794,14 +6794,14 @@ Returns the issuances of an address "result": [ { "tx_index": 68, - "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", + "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -6816,20 +6816,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730150139, + "block_time": 1730152620, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "bfaad85954beda99abea4a7010a07447599bbf6f22ea125e30ed294c7f5218f0", + "tx_hash": "9e318339eedce8001504b264f6284e226cd64f7682b8d8516c334f650d696d1a", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -6844,20 +6844,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730149990, + "block_time": 1730152454, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "05689fcc47dfef00b3da5ab26a1b46ea1887fa933a6f6903acb19faf207eca1f", + "tx_hash": "45cb917d16df66648e5f28c6c2bd440fe45d164add86d0e42b41da39eb7f0556", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -6872,20 +6872,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730149986, + "block_time": 1730152441, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "b9a6fb371b7caf85edb70d0c373d91aad170224779eb8f3effcbeec5ea512deb", + "tx_hash": "ac506b92d017443f43af978440e014edeebaeb005ef74872f0a538268c655b9e", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -6900,20 +6900,20 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730149983, + "block_time": 1730152437, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "6e5931b93013418aa0a6e7540e41bec82e1bd61e68f03b4f0488178a69c2f131", + "tx_hash": "9083ecad51d2ce0aeb1ab41b80c7db2a58cda52c3031dfb8b79d2bb2689cf70a", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -6928,7 +6928,7 @@ Returns the issuances of an address "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730149979, + "block_time": 1730152434, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -6943,7 +6943,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The issuer or owner to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -6966,8 +6966,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 100000000000, @@ -6975,16 +6975,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730150139, - "last_issuance_block_time": 1730150139, + "first_issuance_block_time": 1730152620, + "last_issuance_block_time": 1730152620, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 10000000000, @@ -6992,16 +6992,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730149979, - "last_issuance_block_time": 1730149986, + "first_issuance_block_time": 1730152434, + "last_issuance_block_time": 1730152441, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 100000000000, @@ -7009,16 +7009,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730149941, - "last_issuance_block_time": 1730149941, + "first_issuance_block_time": 1730152396, + "last_issuance_block_time": 1730152396, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 40, @@ -7026,16 +7026,16 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730149878, - "last_issuance_block_time": 1730149883, + "first_issuance_block_time": 1730152348, + "last_issuance_block_time": 1730152352, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 19, @@ -7043,8 +7043,8 @@ Returns the valid assets issued or owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730149865, - "last_issuance_block_time": 1730149874, + "first_issuance_block_time": 1730152322, + "last_issuance_block_time": 1730152344, "supply_normalized": "0.00000019" } ], @@ -7058,7 +7058,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The issuer to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The issuer to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7081,8 +7081,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 100000000000, @@ -7090,16 +7090,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730150139, - "last_issuance_block_time": 1730150139, + "first_issuance_block_time": 1730152620, + "last_issuance_block_time": 1730152620, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 10000000000, @@ -7107,16 +7107,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730149979, - "last_issuance_block_time": 1730149986, + "first_issuance_block_time": 1730152434, + "last_issuance_block_time": 1730152441, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 100000000000, @@ -7124,16 +7124,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730149941, - "last_issuance_block_time": 1730149941, + "first_issuance_block_time": 1730152396, + "last_issuance_block_time": 1730152396, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 40, @@ -7141,16 +7141,16 @@ Returns the valid assets issued by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730149878, - "last_issuance_block_time": 1730149883, + "first_issuance_block_time": 1730152348, + "last_issuance_block_time": 1730152352, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 19, @@ -7158,8 +7158,8 @@ Returns the valid assets issued by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730149865, - "last_issuance_block_time": 1730149874, + "first_issuance_block_time": 1730152322, + "last_issuance_block_time": 1730152344, "supply_normalized": "0.00000019" } ], @@ -7173,7 +7173,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The owner to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -7196,8 +7196,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 100000000000, @@ -7205,16 +7205,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730150139, - "last_issuance_block_time": 1730150139, + "first_issuance_block_time": 1730152620, + "last_issuance_block_time": 1730152620, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 10000000000, @@ -7222,16 +7222,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730149979, - "last_issuance_block_time": 1730149986, + "first_issuance_block_time": 1730152434, + "last_issuance_block_time": 1730152441, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 100000000000, @@ -7239,16 +7239,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730149941, - "last_issuance_block_time": 1730149941, + "first_issuance_block_time": 1730152396, + "last_issuance_block_time": 1730152396, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 40, @@ -7256,16 +7256,16 @@ Returns the valid assets owned by an address "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730149878, - "last_issuance_block_time": 1730149883, + "first_issuance_block_time": 1730152348, + "last_issuance_block_time": 1730152352, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 19, @@ -7273,8 +7273,8 @@ Returns the valid assets owned by an address "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730149865, - "last_issuance_block_time": 1730149874, + "first_issuance_block_time": 1730152322, + "last_issuance_block_time": 1730152344, "supply_normalized": "0.00000019" } ], @@ -7288,7 +7288,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + cursor: `75` (str, optional) - The last transaction index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of transactions to return @@ -7307,17 +7307,17 @@ Returns the transactions of an address "result": [ { "tx_index": 74, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", - "block_time": 1730150162, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", + "block_time": 1730152654, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", + "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -7353,17 +7353,17 @@ Returns the transactions of an address }, { "tx_index": 71, - "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "block_index": 204, - "block_hash": "3906807db0d56b9fec78f5982ba29d4512f200a4769bb4153d83c94df666c0a4", - "block_time": 1730150151, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", + "block_time": 1730152632, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d630d477df0f6e07f91e8949433310400b60dd35803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e240000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4:0", + "utxos_info": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7371,14 +7371,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -7386,7 +7386,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -7405,17 +7405,17 @@ Returns the transactions of an address }, { "tx_index": 70, - "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", + "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", "block_index": 203, - "block_hash": "5b2cb939f6b6a782be5829b4a32d310f3e8b11c136ebed663d064b28e5700f62", - "block_time": 1730150148, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "722ff4f47c82493fc6b30fa306d6a1be83cf3d3e17d6efb4e1bcf1ab0f1fa3c3", + "block_time": 1730152628, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d630d477df0f6e07f91e8949433310400b60dd35803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109:0", + "utxos_info": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -7423,14 +7423,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -7438,7 +7438,7 @@ Returns the transactions of an address }, { "asset": "XCP", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -7457,17 +7457,17 @@ Returns the transactions of an address }, { "tx_index": 69, - "tx_hash": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c", + "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", "block_index": 202, - "block_hash": "4def8f3f53efebbf9574a397c76511feff3e10ee36a643847e7619aa265947fa", - "block_time": 1730150144, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "79b4c1c873594bc980c6c6d4733edf015c77175fae846e37158cbc393a56609d", + "block_time": 1730152624, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d630d477df0f6e07f91e8949433310400b60dd35", + "data": "02000000178d82231300000000000003e8805511f1f6819b94a0094d338694640cbee5b8969d", "supported": true, - "utxos_info": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c:1", + "utxos_info": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -7475,12 +7475,12 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -7491,17 +7491,17 @@ Returns the transactions of an address }, { "tx_index": 68, - "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", + "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", "block_index": 201, - "block_hash": "283a8824308fb868afc9759ec62e9714ff889dbf79c0e6a5b9aa0d6f7d4b906a", - "block_time": 1730150139, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "7aefd1926dfc5229ca8b4f5f928c519809b6544393fcc22c1be0ed4e0823a910", + "block_time": 1730152620, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305:1", + "utxos_info": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -7535,7 +7535,7 @@ Returns the transactions of an address Returns the dividends distributed by an address + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + cursor (str, optional) - The last index of the assets to return + Default: `None` + limit: `5` (int, optional) - The maximum number of assets to return @@ -7554,20 +7554,20 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 41, - "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", + "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", "block_index": 154, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730149962, + "block_time": 1730152419, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -7592,7 +7592,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -7621,9 +7621,9 @@ Returns the orders of an address "result": [ { "tx_index": 49, - "tx_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", + "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", "block_index": 184, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7638,7 +7638,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730150014, + "block_time": 1730152467, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7664,9 +7664,9 @@ Returns the orders of an address }, { "tx_index": 51, - "tx_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", "block_index": 207, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7681,7 +7681,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730150162, + "block_time": 1730152654, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7707,9 +7707,9 @@ Returns the orders of an address }, { "tx_index": 57, - "tx_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", + "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", "block_index": 192, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7724,7 +7724,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730150102, + "block_time": 1730152570, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7750,9 +7750,9 @@ Returns the orders of an address }, { "tx_index": 59, - "tx_hash": "13047cb4dab1b0ba2151ae8e16379cc2b16fb4bb8f63e8c0f205359d365a62a2", + "tx_hash": "b5909bb972e8db050ad13378b2bb33e60dcf58c0e358ef41f60556c84f4beb1f", "block_index": 193, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7767,7 +7767,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730150106, + "block_time": 1730152583, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7793,9 +7793,9 @@ Returns the orders of an address }, { "tx_index": 74, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7810,7 +7810,7 @@ Returns the orders of an address "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730150162, + "block_time": 1730152654, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7845,7 +7845,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The source of the fairminter to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -7870,10 +7870,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "93dee74a73fd75a2b609a0b4cd62839d0d254025bf44bcb5513cad7d35bfa6f3", + "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", "tx_index": 42, "block_index": 155, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -7898,7 +7898,7 @@ Returns the fairminter by its source "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730149965, + "block_time": 1730152422, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7907,10 +7907,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", + "tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -7935,7 +7935,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730149878, + "block_time": 1730152348, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7947,10 +7947,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", + "tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -7975,7 +7975,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730149865, + "block_time": 1730152322, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -7987,10 +7987,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "0e2c46ac44f390ff6b06d99469bca85858fa064feb09b8c2ef799039d36dfa3f", + "tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -8015,7 +8015,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730149860, + "block_time": 1730152319, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8027,10 +8027,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", + "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -8055,7 +8055,7 @@ Returns the fairminter by its source "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730149841, + "block_time": 1730152299, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -8077,7 +8077,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - The address of the mints to return + + address: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -8095,22 +8095,22 @@ Returns the mints by address { "result": [ { - "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", + "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149883, + "block_time": 1730152352, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -8119,22 +8119,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "fda34c124d140677eccc10bdff0dc1cac5550cd210cdabf0ec3cac7f5621c72d", + "tx_hash": "ff6f27751d9a86791bebbfbdf6c94db117df2b3f2193fb80951f246a234aec33", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149874, + "block_time": 1730152344, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -8143,22 +8143,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "1a79feb1b1b318e55f4b6836518ac7315c78fc94029d4bfbe2e66f0341f3d69d", + "tx_hash": "d8a0233a8d8e6e63a86f2762bdcd19f395771e948e9d9fd91e4131cf9b4b466c", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149871, + "block_time": 1730152329, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -8167,22 +8167,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "52aa1faf5394a028bd06452893acd47a19a81f90b3984c7546cf5c0fa205f190", + "tx_hash": "9cbbbc1ba5c0c6a6a4766e5b10e4e35fe2772e4e9a4ac36a36fe0e0239c134f8", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149868, + "block_time": 1730152326, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -8191,22 +8191,22 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "d1586440adceece4e92b7437fba4cba5a60fe7b2bd73cef159abc829572d7f76", + "tx_hash": "cd779281665ec54a0657c909a5a5888c98253660c075af8adf487672735a1d69", "tx_index": 15, "block_index": 127, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "0e2c46ac44f390ff6b06d99469bca85858fa064feb09b8c2ef799039d36dfa3f", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149849, + "block_time": 1730152307, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -8215,22 +8215,22 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", + "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149834, + "block_time": 1730152293, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -8249,7 +8249,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - The address of the mints to return + + address: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address of the mints to return + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -8268,22 +8268,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", + "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149834, + "block_time": 1730152293, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -8304,7 +8304,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0` (str, required) - The utxo to return + + utxo: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -8324,8 +8324,8 @@ Returns the balances of an utxo { "asset": "XCP", "quantity": 1500000000, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "asset_info": { "divisible": true, "asset_longname": null, @@ -8338,12 +8338,12 @@ Returns the balances of an utxo { "asset": "MYASSETA", "quantity": 1500000000, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -8383,8 +8383,8 @@ By default the default value of the `encoding` parameter detailed above is `auto Composes a transaction to issue a bet against a feed. + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will make the bet - + feed_address: `bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will make the bet + + feed_address: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address that hosts the feed to be bet on + bet_type: `2` (int, required) - Bet 0 for Bullish CFD (deprecated), 1 for Bearish CFD (deprecated), 2 for Equal, 3 for NotEqual + deadline: `3000000000` (int, required) - The time at which the bet should be decided/settled, in Unix time (seconds since epoch) + wager_quantity: `1000` (int, required) - The quantities of XCP to wager (in satoshis, hence integer) @@ -8456,7 +8456,7 @@ Composes a transaction to issue a bet against a feed. Composes a transaction to broadcast textual and numerical information to the network. + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + timestamp: `4003903985` (int, required) - The timestamp of the broadcast, in Unix time + value: `100` (float, required) - Numerical value of the broadcast + fee_fraction: `0.05` (float, required) - How much of every bet on this feed should go to its operator; a fraction of 1, (i.e. 0.05 is five percent) @@ -8516,7 +8516,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -8528,7 +8528,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "02000000000101a16813c6cbda4394caf28ebf52642d8f4c3a0951615e5c3c2714fb2d5edb99c10000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff0200000000000000002b6a29fb22783a08b808d57fec85d10dc4cc7474cc5c11299d8be14b5c6f6c63ec479d7d89ded2d8dbb6129383ba052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "020000000001016bbdac07a76d292a49995d8bf8de89da525d9b32d2ab29a52feb98c105f20576000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff0200000000000000002b6a29b93f99a28b4bb16aef7b085834e88cc7ffc295c6ea9bc30651365677485eea265eb32240ea4dc2f70483ba052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -8550,8 +8550,8 @@ Composes a transaction to broadcast textual and numerical information to the net Composes a transaction to pay for a BTC order match. + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be sending the payment - + order_match_id: `bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1` (str, required) - The ID of the order match to pay for + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be sending the payment + + order_match_id: `0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8` (str, required) - The ID of the order match to pay for + encoding (str, optional) - The encoding method to use + Default: `auto` + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis) @@ -8607,23 +8607,23 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1" + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8" }, "name": "btcpay", - "data": "434e5452505254590bbee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82ef9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "data": "434e5452505254590b0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca436714468448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978921, "btc_fee": 18079, - "rawtransaction": "02000000000101b7bdde1323902defae298dc5e6725026dcd9e92e8d6df8a467b1ae2f8f65a98c0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff03b80b00000000000016001453acd20b89492c54642d81b92cdc32862046ce7100000000000000004b6a496c56d1b9cc9c99f2c1186c78fce1461d1a4885cc655bb120d5e2d15f68776717d357c5ebc0617e4cbad496680db286dff338ee270e42da36772480c28e54fcafb6cf980d3ed8395f8aa99f052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "020000000001013ba8474dba78d5b2a7418f254db65d0f667eb6846cf0a2d1a37fec518310b597000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff03b80b0000000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a100000000000000004b6a4975cbfbf03e30e31bb5e20d495fb01c2653599b2a09b993f3207ec6a8201d7607d5182a30e2d2fa8df227d622eecd6eb3b30958a79f37fd67972e55d5fc313b9c11b791efbb1facff6ca99f052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", - "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "status": "valid" } } @@ -8636,7 +8636,7 @@ Composes a transaction to pay for a BTC order match. Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, possible between blocks 278310 and 283810; on testnet it is still available). + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address with the BTC to burn + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address with the BTC to burn + quantity: `1000` (int, required) - The quantities of BTC to burn (in satoshis, hence integer) (1 BTC maximum burn per address) + overburn (bool, optional) - Whether to allow the burn to exceed 1 BTC for the address + Default: `False` @@ -8695,7 +8695,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "quantity": 1000, "overburn": false }, @@ -8705,7 +8705,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999985793, "btc_fee": 13207, - "rawtransaction": "0200000000010131fa73b5d4effef47223f586d146bcdb01a1b5ca74702206aa2c981f0c1bef380000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000" + "rawtransaction": "02000000000101b2eea65ffc130ffefef3cddf867d62b6a3a3d85413826b0f9a9bec147e2af13f000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000" } } ``` @@ -8715,8 +8715,8 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss Composes a transaction to cancel an open order or bet. + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b` (str, required) - The hash of the order/bet to be cancelled + encoding (str, optional) - The encoding method to use + Default: `auto` + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis) @@ -8772,21 +8772,21 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "offer_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830" + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "offer_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b" }, "name": "cancel", - "data": "434e54525052545946affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "data": "434e5452505254594694d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "02000000000101986b752aa9bcf253eb6166b125bc4b962fb4be72afcfedfb5bea6db7124013420000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff0200000000000000002b6a29a264c680ff8488221489027a95d43a65eb06c19f524ee1ec0933808007294988a829a932c94f1bf3c983ba052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "020000000001017607181c41ad743b880f28175184e2c04167fd1d94fd25a7209c9ea321fb3887000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff0200000000000000002b6a29303ebad3021b4d6138b5db967d05db545eedba6d0c675259c45a095f6fd75b9424d81427e4e3aaa10e83ba052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "offer_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "status": "valid" } } @@ -8799,7 +8799,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be sending the asset to be destroyed + asset: `XCP` (str, required) - The asset to be destroyed + quantity: `1000` (int, required) - The quantity of the asset to be destroyed (in satoshis, hence integer) + tag: `"bugs!"` (str, required) - A tag for the destruction @@ -8858,7 +8858,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -8877,7 +8877,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 4999986323, "btc_fee": 13677, - "rawtransaction": "020000000001016b1b80af5d849670ff64fd6d4049b93d30ee541dfa6d8a6fdb417b9570aae5db0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000226a20a2c8663360f1bf8191fc65393b59e5780de29514e6b3271b33778308bdb2b89693bc052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "02000000000101187d4666a3e0d464a2bfa34950f8e7420dc6a833e8186850829a30dbb5ddc164000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000226a2094d7a3f3bbcd35ff65faa7e260b5ef6c46b4bb390ea97ca5c8ec89f01b2ffc9493bc052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -8897,7 +8897,7 @@ Composes a transaction to destroy a quantity of an asset. Composes a transaction to opens or closes a dispenser for a given asset at a given rate of main chain asset (BTC). Escrowed quantity on open must be equal or greater than give_quantity. It is suggested that you escrow multiples of give_quantity to ease dispenser operation. + Parameters - + address: `bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + asset: `XCP` (str, required) - The asset or subasset to dispense + give_quantity: `1000` (int, required) - The quantity of the asset to dispense (in satoshis, hence integer) + escrow_quantity: `1000` (int, required) - The quantity of the asset to reserve for this dispenser (in satoshis, hence integer) @@ -8960,7 +8960,50 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv ``` { - "error": "invalid UTXO: 508340a6b50309287c608280e281aeb60e7fdb44401c73cc2d824350a587a82b:0" + "result": { + "params": { + "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "asset": "XCP", + "give_quantity": 1000, + "escrow_quantity": 1000, + "mainchainrate": 100, + "status": 0, + "open_address": null, + "oracle_address": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "escrow_quantity_normalized": "0.00001000" + }, + "name": "dispenser", + "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", + "btc_in": 4949934500, + "btc_out": 0, + "btc_change": 4949920236, + "btc_fee": 14264, + "rawtransaction": "02000000000101d1c09a210e2f9eb576d8d0c26d620bd0524b583f80fab9276b3596b96e02afae01000000160014da3f874dd1752afc2255c5a8d149ba44da1c5a7effffffff0200000000000000002c6a2a727cb1709e366477fd16c83cc5d4d3816740f1707e9354508ff03c7fc05a03221c9533b31becd82add28ecc9092701000000160014da3f874dd1752afc2255c5a8d149ba44da1c5a7e02000000000000", + "unpacked_data": { + "message_type": "dispenser", + "message_type_id": 12, + "message_data": { + "asset": "XCP", + "give_quantity": 1000, + "escrow_quantity": 1000, + "mainchainrate": 100, + "dispenser_status": 0, + "action_address": null, + "oracle_address": null, + "status": "valid", + "give_quantity_normalized": "0.00001000", + "escrow_quantity_normalized": "0.00001000" + } + } + } } ``` @@ -8969,7 +9012,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv Composes a transaction to issue a dividend to holders of a given asset. + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + quantity_per_unit: `1` (int, required) - The amount of dividend_asset rewarded (in satoshis, hence integer) + asset: `FAIRMINTA` (str, required) - The asset or subasset that the dividends are being rewarded on + dividend_asset: `XCP` (str, required) - The asset or subasset that the dividends are paid in @@ -9028,14 +9071,14 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -9054,7 +9097,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "0200000000010174b414fd30c96205105a31a703c8fbb63ee940861fff7e19d57d4b7fb76d69730000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000236a21fe12993920573aa7800ba36b3bd9522137afd716c44bfcb0bcc426a6895ac1a21858bc052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "02000000000101bccddcc7c292c9f93bd0a857d43e2f251b8660b79784967209514551c8d90556000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000236a2116d6d2bf8ee338938cd8bb42921a91b70dcb91491707280fba52b2d7971bd7428158bc052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -9075,10 +9118,10 @@ Composes a transaction to issue a dividend to holders of a given asset. Composes a transaction to Issue a new asset, issue more of an existing asset, lock an asset, reset existing supply, or transfer the ownership of an asset. + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be issuing or transfering the asset + asset: `XCPTEST` (str, required) - The assets to issue or transfer. This can also be a subasset longname for new subasset issuances + quantity: `1000` (int, required) - The quantity of the asset to issue (set to 0 if transferring an asset) (in satoshis, hence integer) - + transfer_destination: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, optional) - The address to receive the asset + Default: `None` + divisible (bool, optional) - Whether this asset is divisible or not (if a transfer, this value must match the value specified when the asset was originally issued) + Default: `True` @@ -9143,10 +9186,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "transfer_destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "lock": false, "reset": false, @@ -9159,7 +9202,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999983723, "btc_fee": 15731, - "rawtransaction": "02000000000101e1a3f1ada3217a1505637717ee8298f57e874e534b68690dcf8495fae60e5aa20000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff03220200000000000016001453acd20b89492c54642d81b92cdc32862046ce710000000000000000236a21844f5e277f678854121c6312b80487336a152fb17918ba74747fdb06c3b8a2e2806bb2052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "02000000000101139de7476f55fdf21e92052391719656f33b7347ea131643e6b1453a536795c7000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff0322020000000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a10000000000000000236a21ceeba0a4b3fe260c096002670704f57eedf714525e8020461d52d24f2d7fbe50646bb2052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -9188,9 +9231,9 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo Composes a transaction to send multiple payments to multiple addresses. + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,MPMASSET` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70,bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s,bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -9255,16 +9298,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", 1 ], [ "MPMASSET", - "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", 2 ] ], @@ -9272,26 +9315,26 @@ Composes a transaction to send multiple payments to multiple addresses. "memo_is_hex": false }, "name": "mpma", - "data": "434e5452505254590300028053acd20b89492c54642d81b92cdc32862046ce7180d630d477df0f6e07f91e8949433310400b60dd3540000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002807967f0a0bd9d33804ecfac05d869b2782a3467a1805511f1f6819b94a0094d338694640cbee5b8969d40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945404, "btc_fee": 52596, - "rawtransaction": "02000000000104f774d36dff6d2786ec3b57ebb0c6dc5065f653e1a3ec007e66c21e21d46ffde50000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffffae4dd615d91336a8690b9aafe0e1617c1f4355e4be5d4bac09edb74e9cf4f2ce0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff70a2fb38ffc69b48d06226cc480565f32dbca5e1fef2979a796d755368803f8a0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff90eb00cdf8c1ac8e43f29ea7d3b81dec006bb3f0eedfb730221e77b51b494ff50000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff03e80300000000000069512102f15bddc977261dc0ca449e10c45d3c04ddd4ec9108e620c3285d352902e80a0f21034a588fe557248f340c1a13a5e3cba2211108b8c5b8f23f48d246f28c19a92d4221026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c53aee80300000000000069512103ee5bddc977261dc0ca979e12440e90d6d679a5bd5c820d429175e91b84c84c38210384290e3367f0f8eb0374145cfd42eb622218f8ced82f0a08d246f76f7921e9c721026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c53aebcf216a80400000016001453acd20b89492c54642d81b92cdc32862046ce7102000002000002000002000000000000", + "rawtransaction": "020000000001049e5f6c01f025eb801bd2f83123f1fbe1bc26d82731c5e989f8827fd1c96545ca000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1fffffffff1945c0490ae4bbe569a4e9478ec268003a1461dd53616cbc78fa81d421f8ee6000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1fffffffffa6f704e1baaf5c6952e2ea6c20f6981d6dc033886747b9cf110bf2877cd5b1a000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffffe4f980087f32a896e9ad9c82620f463004e29fc7dfad97e2a3ee49ab2d75c415000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff03e80300000000000069512102f405a8ba5cf6a2b810a6c3550b257049f2d6e1b083639fb7cdf85a7788a4b72d210255bb00ed856a417842a099b3da1b48400df47e096af35ec60cb900f2caafc54d2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aee80300000000000069512102eb05a8ba5cf6a2b81075c3578b5c17b9524f7c83032d501bc82433c5f08e835c2103321a81b8949bb7f9d93439ba9728ced469f8c0ecd265c3860cb90511aa2701df2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aebcf216a8040000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "quantity": 1, "memo": null, "memo_is_hex": null @@ -9307,7 +9350,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + give_asset: `XCP` (str, required) - The asset that will be given in the trade + give_quantity: `1000` (int, required) - The quantity of the asset that will be given (in satoshis, hence integer) + get_asset: `FAIRMINTA` (str, required) - The asset that will be received in the trade @@ -9369,7 +9412,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -9386,7 +9429,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -9400,7 +9443,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 4999985208, "btc_fee": 14792, - "rawtransaction": "020000000001018a5431282e296f8f6ec31997a9a19adbe0256760f91162762bd13197339dd29b0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000356a336e82d0e5da1fae99227559bc259661cd39188bfb165d81e7842d2f24bd003797730b4ff853fffad533e50faf2511417376206738b8052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "02000000000101ab499e5a3d8196519c12febc23e233920eb19d00e35c78dca0789e44b26cdac2000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000356a33bece1d3d171adcd7284dfef1ab9a46411240de9c5909b634b7850938f967c24dbdbf6ce5d336636d946de16548c2ee67eca42a38b8052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -9426,8 +9469,8 @@ Composes a transaction to place an order on the distributed exchange. Composes a transaction to send a quantity of an asset to another address. + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - The address that will be receiving the asset + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address that will be receiving the asset + asset: `XCP` (str, required) - The asset or subasset to send + quantity: `1000` (int, required) - The quantity of the asset to send (in satoshis, hence integer) + memo (str, optional) - The Memo associated with this transaction @@ -9491,8 +9534,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "quantity": 1000, "memo": null, @@ -9508,19 +9551,19 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d630d477df0f6e07f91e8949433310400b60dd35", + "data": "434e54525052545902000000000000000100000000000003e8805511f1f6819b94a0094d338694640cbee5b8969d", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985501, "btc_fee": 14499, - "rawtransaction": "020000000001018ce1dac28e46b9ffc500532f032c7b6a095ded5eed19562e548949cae92e26e20000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000306a2e751a14448bb75f0b213c510aec235f87d66fe6f5f5838ab19907721972b931a89ce9785511175d1b89d9cbe364525db9052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "02000000000101b2623bad63243f7a0e974d94b0c223add9b0b80a5e255266b92ba264c7a45311000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000306a2ea21d7eb608cf78cca691ce6c36f4842f50d439486b60d2e6b88abcceecd2cedf427af27fa2b7385ff2398e091e045db9052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "memo": null, "quantity_normalized": "0.00001000" } @@ -9534,8 +9577,8 @@ Composes a transaction to send a quantity of an asset to another address. Composes a transaction to Sends all assets and/or transfer ownerships to a destination address. + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be sending - + destination: `bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be sending + + destination: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address to receive the assets and/or ownerships + flags: `7` (int, required) - An OR mask of flags indicating how the sweep should be processed. Possible flags are: - FLAG_BALANCES: (integer) 1, specifies that all balances should be transferred. - FLAG_OWNERSHIP: (integer) 2, specifies that all ownerships should be transferred. - FLAG_BINARY_MEMO: (integer) 4, specifies that the memo is in binary/hex form. + memo: `FFFF` (str, required) - The Memo associated with this transaction in hex format + encoding (str, optional) - The encoding method to use @@ -9593,23 +9636,23 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480d630d477df0f6e07f91e8949433310400b60dd3507ffff", + "data": "434e54525052545904805511f1f6819b94a0094d338694640cbee5b8969d07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "020000000001012bf41b5b20cc150647aacd5020b3a1b707d3fb13e5e428d3687f2ce64096877b0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000236a215169fbeea60c9864d21a2671087cf6509cde7a5985eab95d76ca13d34b6cd7008258bc052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "02000000000101cf72977222916e5cfff737c5d75904919a603da30c94d8ca213d849c9728dd9b000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000236a2190fbdb1d8fa53db0eb2a8fc10d632c18bddc537f624460499580413ae7e1bfc5bd58bc052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "flags": 7, "memo": "ffff" } @@ -9623,8 +9666,8 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti Composes a transaction to send BTC to a dispenser. + Parameters - + address: `bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2` (str, required) - The dispenser that will be receiving the asset + quantity: `1000` (int, required) - The quantity of BTC to send (in satoshis, hence integer) + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -9681,8 +9724,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "quantity": 1000 }, "name": "dispense", @@ -9691,7 +9734,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4949812619, "btc_fee": 14381, - "rawtransaction": "02000000000101b5ee039444727c228f35e9c208bf7373e34d240942221db5ee97bf1a306046d003000000160014d630d477df0f6e07f91e8949433310400b60dd35ffffffff03e8030000000000001600143c9e235caa5be4be07a3dfbf730d21c096c653e200000000000000000c6a0ae8fe42d79e54765e9b2d8b25082701000000160014d630d477df0f6e07f91e8949433310400b60dd3502000000000000", + "rawtransaction": "02000000000101065e2fae24d3ed96a884712623a3a8e194a3cdde3cb588023317f389f6ba83df030000001600145511f1f6819b94a0094d338694640cbee5b8969dffffffff03e8030000000000001600142f97d5f43cfda62fa2b92fe2d2b1dcd874e475b400000000000000000c6a0a2e4844bdce5321afdbce8b250827010000001600145511f1f6819b94a0094d338694640cbee5b8969d02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -9708,7 +9751,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be issuing the asset + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be issuing the asset + asset: `MYASSET` (str, required) - The asset to issue + asset_parent (str, optional) - The parent asset of the asset to issue + Default: `` @@ -9797,7 +9840,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -9828,7 +9871,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 4999985443, "btc_fee": 14557, - "rawtransaction": "02000000000101f94a34858f6216ab91942f2962dd5a888e4824b0fb03395484d045bed53428d80000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000316a2fa06d07855f57ad2eca0b372207b3d4ce15a16b0d1f95d679727d1933bac64c4e38649fe4b99c73651a71df87c7741623b9052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "02000000000101ab2eb3e3483c4039cce505f85cc0563cd331a85d45dff80d9bf880fe20828bb2000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000316a2f0dec8a46d77959fb639a45d020ade0350620490390b08869ef4325180cb952a68b03d1100c753808ff73cd2066b25e23b9052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -9867,7 +9910,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. Composes a transaction to mint a quantity of an asset using the FairMinter protocol. + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address that will be minting the asset + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address that will be minting the asset + asset: `FAIRMINTC` (str, required) - The asset to mint + quantity: `1` (int, optional) - The quantity of the asset to mint (in satoshis, hence integer) + Default: `0` @@ -9926,13 +9969,13 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -9944,7 +9987,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 4999987028, "btc_fee": 12972, - "rawtransaction": "0200000000010160bf483bfb75fd9aff99462c31a13a8dffe086ce6de938b617206815e38d0af60000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000166a14431570188731b14184fc873f882909c90af214c054bf052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "02000000000101268cd03227a87269a296132dced7a43ec578c67b187578cdda41ab4861774127000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000166a14eebd7268248a3ec571ad08ef295683791a5dd5c154bf052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -9963,10 +10006,10 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address from which the assets are attached + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) - + destination: `affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1` (str, optional) - The utxo to attach the assets to + + destination: `94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1` (str, optional) - The utxo to attach the assets to + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -10023,8 +10066,8 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -10037,12 +10080,12 @@ Composes a transaction to attach assets from an address to UTXO. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e5452505254596462637274317132776b64797a756666796b39676570647378756a6568706a73637379646e6e336767767537307c616666623438313266616261303838393433333738643339383838383562333566653137393634626531353337306362323833613038663634393563383833303a317c5843507c31303030", + "data": "434e5452505254596462637274317130396e6c706739616e356563716e6b3034737a617336646a30713472676561703561377539737c393464323835333663333666383932316563353335643561336532633533386665613265306561663936663138663536666536323861323436376233636435623a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918400, "btc_fee": 78600, - "rawtransaction": "020000000001062ea2715c88439687e9a5ff953de075a8f14e66ef5dd3e11e6e02f4c09d460a060000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff875b3b180194df32dd19fa9503d98c50efaae911f6f667150073d0e293a2d4860000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffffd20d5edc36a6ae19fcb6427a85cc2989aedb154a44df36fcabe59e0a83c7104b0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffffd5a13b826bd404c64e6ac6f7e64f35f1762c1d8250e01d979ddb9b948c84bb1c0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff572ea89ef5b2eb4c6aef192ffebc64a3adb4cf84f192744333f4d1f8ed07bc5b0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffffd994dcbf7384a57c44b7563bab1a21bf09bd5696bc41187bd542221ec1bd6ee20000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff04e803000000000000695121034a53d463f8074cff8f62ebb7222c1c0f6cd9aadbff200c01c5833d621a3cf6dd2102b960e4c6250bc80798cab6b3ee86bea7e2475b6280720a36e80c8af4deaca88921026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c53aee803000000000000695121034a53d463f8074cff8f34efb532391d466697f58cb56d410390c36e634561b34c2102bf20a9d52a5f974ec48db7a5a6d7e3fee1435e26cd765b7ab10cdaa2d3a1fa8821026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c53aee803000000000000695121026053d463f8074cff8f3eb1e760621c0206ed91c3b76a4957a3fa565b7d5986842103dd139cb34f6ea077f2b9d5c097e2d0c9d1203c14f5453a4a896aec96ea94996b21026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c53ae406d22fc0600000016001453acd20b89492c54642d81b92cdc32862046ce7102000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106ca9abaac6407cea4a26e4325a5b6b605c16a5f49ad8b20edb751d3f839e60f01000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff2b86ecbeb4d73419de2ce8914ce12bc97ad3c5f326f3974cc97b9b093a3a7286000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff5efbf12951347af1bc0c104cf84743ee371bbf9077467d9da40739605f1e7c7b000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff10fe6ccda7c1f8982d6c4e3ff1bbe67e2821d56b3b69cba67ccfd95d0d080b28000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff101bb44012e5c305a391479949891b545cbdbd18c3e2f7116a1854b927bcea27000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffffb0d9bedd8c9fdd0eadc8ba2c4a7d994422c13be06f07d20dc8f80ad0497d221d000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff04e80300000000000069512103db6eed4d1970d0de5bf33f4147e75816cf60917a132dbe1fd32db973c4ef5847210387118c8bf69ca93d3ddb93f8b8d0f234f045d2b0dab2d5cac29c2aba24522f1d2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aee80300000000000069512102db6eed4d1970d0de5ba13e1103f5515ecd689a755679b21a8879ef7587e206ac2102841d9994f6ddfa69328a84f5fcd1a66de64585e1cabd948e9a9a7abe2b052f502103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aee80300000000000069512103f16eed4d1970d0de5bf4391757a9581ba71aaf6a527ab74ebd18dc10b58133e32103b725fff197ef9f5957ebe2cccab797558070b387af8ba6b6fba84e881c671c9d2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053ae406d22fc060000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10059,8 +10102,8 @@ Composes a transaction to attach assets from an address to UTXO. Composes a transaction to detach assets from UTXO to an address. + Parameters - + utxo: `ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to detach the assets to + + utxo: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to detach the assets to + asset: `XCP` (str, required) - The asset or subasset to detach + quantity: `1000` (int, required) - The quantity of the asset to detach (in satoshis, hence integer) + encoding (str, optional) - The encoding method to use @@ -10118,8 +10161,8 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -10132,12 +10175,12 @@ Composes a transaction to detach assets from UTXO to an address. "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964616539623565373039643434363366653765626466343131633439313165313266646539393439373434306636623965366430626432653566663135323935623a307c62637274317132776b64797a756666796b39676570647378756a6568706a73637379646e6e336767767537307c5843507c31303030", + "data": "434e54525052545964323432353561353564363832353735323130626261393164616434666538643536336138316664346234663137353665343164633566636538643966383865373a307c62637274317130396e6c706739616e356563716e6b3034737a617336646a30713472676561703561377539737c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030275, "btc_fee": 46725, - "rawtransaction": "02000000000103ba847062b0903b9fccc451378ce19ea4f04d786f938502bed3c9b48eba351337010000001600149e3d73cf180ab4652f14e45d6dd17012e1442b00fffffffffce41e62934b44d48ddc1fc02758f3d1f4898f0fb9bd9d9bfa9258eed64bad5f000000001600149e3d73cf180ab4652f14e45d6dd17012e1442b00ffffffffe725dd965df10a780a6d4fab6722ab9bbe0cc75862621fae38a6c22b5f52a401010000001600149e3d73cf180ab4652f14e45d6dd17012e1442b00ffffffff04e8030000000000006951210394b23fa5321e236b5f9911eea827ac480b5b4160bff8810db7bbdd6b405d64d8210262dfb957d1153681a831349d36375941f8881095bf5281a956844ed8a2dc2b3c2102cb42db2ff4f01f61ce4d4f401f6af5315110c4ff80e640b55fd27915d822287253aee8030000000000006951210394b23fa5321e236b5f9942eea423ff1c09594131e9f68742b3bd987a134830bf21022185ec4d9f5961d6b46b3f9c3722040bb4c44dc4e3128dec57ce528aa8827a6f2102cb42db2ff4f01f61ce4d4f401f6af5315110c4ff80e640b55fd27915d822287253aee80300000000000069512103beb23fa5321e236b5f9a17fde472a95164282878bafc870ed1deea0e2239029e210356ee8834e52c07b0cd0006fb52526078ccb127a18b62e79f34bd2beec6ec49ac2102cb42db2ff4f01f61ce4d4f401f6af5315110c4ff80e640b55fd27915d822287253aec3770b27010000001600149e3d73cf180ab4652f14e45d6dd17012e1442b0002000002000002000000000000", + "rawtransaction": "0200000000010300dce77bb944104741936aa0b2b4b265b003e9de46966f0d609e03bc7b0b968901000000160014f9f761de6a26b38c86a3f54543766007cab6e30ffffffffffdbd816d4d7e0daa457fcbda1e6f3ec2bd72cdf3639c9bcafb60916c861b28e300000000160014f9f761de6a26b38c86a3f54543766007cab6e30fffffffff940d2ffcf377a103eb93ce0505be650e0aef5a5f64e5701e6aeeb1560331a58001000000160014f9f761de6a26b38c86a3f54543766007cab6e30fffffffff04e80300000000000069512103c010e4c250f47059c81bf89b12fd3195b90f36696ef58e25d277a20a1ed3deda2103b8e00811d3b48a87c103c6bf3db54b399759dee65ada72df8c304d2ed768e69321038eb56f40d73925b3d8f96921e3476fd17e0f73b12a6d015e7d44353f2e12637a53aee80300000000000069512103c010e4c250f47059c84aaccc45f060cdea026a3a61fd8b6e8526e14e4dc08fba2102b8bf0000d0b98d8ccc0290f860bf433c82478bf758d829d8c8325a7d836df5b621038eb56f40d73925b3d8f96921e3476fd17e0f73b12a6d015e7d44353f2e12637a53aee80300000000000069512103ea10e4c250f47059c84aab9855f17788d479022367f78b22e745933a7cb1bfa3210281d16c70b780ece2f967f3890ed47308f13dea846ebc43e8b906281ae60c854c21038eb56f40d73925b3d8f96921e3476fd17e0f73b12a6d015e7d44353f2e12637a53aec3770b2701000000160014f9f761de6a26b38c86a3f54543766007cab6e30f02000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -10206,8 +10249,8 @@ Returns the valid assets "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 100000000000, @@ -10215,16 +10258,16 @@ Returns the valid assets "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730150139, - "last_issuance_block_time": 1730150139, + "first_issuance_block_time": 1730152620, + "last_issuance_block_time": 1730152620, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", - "owner": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", + "issuer": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "owner": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", "divisible": true, "locked": false, "supply": 100000000000, @@ -10232,16 +10275,16 @@ Returns the valid assets "first_issuance_block_index": 198, "last_issuance_block_index": 198, "confirmed": true, - "first_issuance_block_time": 1730150124, - "last_issuance_block_time": 1730150124, + "first_issuance_block_time": 1730152603, + "last_issuance_block_time": 1730152603, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 10000000000, @@ -10249,16 +10292,16 @@ Returns the valid assets "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730149979, - "last_issuance_block_time": 1730149986, + "first_issuance_block_time": 1730152434, + "last_issuance_block_time": 1730152441, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", - "owner": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "issuer": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "owner": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "divisible": true, "locked": false, "supply": 100000000000, @@ -10266,16 +10309,16 @@ Returns the valid assets "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730149974, - "last_issuance_block_time": 1730149974, + "first_issuance_block_time": 1730152430, + "last_issuance_block_time": 1730152430, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 100000000000, @@ -10283,8 +10326,8 @@ Returns the valid assets "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730149941, - "last_issuance_block_time": 1730149941, + "first_issuance_block_time": 1730152396, + "last_issuance_block_time": 1730152396, "supply_normalized": "1000.00000000" } ], @@ -10312,8 +10355,8 @@ Returns an asset by its name "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 10000000000, @@ -10321,8 +10364,8 @@ Returns an asset by its name "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730149829, - "last_issuance_block_time": 1730149841, + "first_issuance_block_time": 1730152289, + "last_issuance_block_time": 1730152299, "supply_normalized": "100.00000000" } } @@ -10353,7 +10396,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10361,14 +10404,14 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -10376,7 +10419,7 @@ Returns the asset balances "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -10394,7 +10437,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -10406,7 +10449,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -10460,9 +10503,9 @@ Returns the orders of an asset "result": [ { "tx_index": 49, - "tx_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", + "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", "block_index": 184, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10477,7 +10520,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730150014, + "block_time": 1730152467, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10503,9 +10546,9 @@ Returns the orders of an asset }, { "tx_index": 51, - "tx_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", "block_index": 207, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -10520,7 +10563,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730150162, + "block_time": 1730152654, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10546,9 +10589,9 @@ Returns the orders of an asset }, { "tx_index": 57, - "tx_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", + "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", "block_index": 192, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10563,7 +10606,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730150102, + "block_time": 1730152570, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10589,9 +10632,9 @@ Returns the orders of an asset }, { "tx_index": 59, - "tx_hash": "13047cb4dab1b0ba2151ae8e16379cc2b16fb4bb8f63e8c0f205359d365a62a2", + "tx_hash": "b5909bb972e8db050ad13378b2bb33e60dcf58c0e358ef41f60556c84f4beb1f", "block_index": 193, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10606,7 +10649,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730150106, + "block_time": 1730152583, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10632,9 +10675,9 @@ Returns the orders of an asset }, { "tx_index": 74, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -10649,7 +10692,7 @@ Returns the orders of an asset "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730150162, + "block_time": 1730152654, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10711,13 +10754,13 @@ Returns the orders of an asset { "result": [ { - "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "tx0_index": 51, - "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 54, - "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", - "tx1_address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -10731,7 +10774,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730150087, + "block_time": 1730152544, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10751,13 +10794,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", "tx0_index": 51, - "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 52, - "tx1_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", - "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -10771,7 +10814,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730150084, + "block_time": 1730152540, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10791,13 +10834,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97_caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", + "id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", "tx0_index": 49, - "tx0_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 50, - "tx1_hash": "caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", - "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "tx1_hash": "838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", + "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -10811,7 +10854,7 @@ Returns the orders of an asset "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730150014, + "block_time": 1730152467, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10891,20 +10934,20 @@ Returns the credits of an asset "result": [ { "block_index": 194, - "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", + "event": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150109, + "block_time": 1730152588, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -10912,20 +10955,20 @@ Returns the credits of an asset }, { "block_index": 125, - "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "e85bdf707fe349f0e40e559b6a1f20a10a1e0f329a969174ed358ea1e715df9d", + "event": "0f647573fb92582b6a2cb04ce8f42d7d23464c608d33108953f3d3879df32fe7", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730149841, + "block_time": 1730152299, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -10933,20 +10976,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "9ab485c03158b0379a31a0ed1f790c058cddbccea9db255dd3cfcb37da360985", + "event": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730149837, + "block_time": 1730152296, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -10954,20 +10997,20 @@ Returns the credits of an asset }, { "block_index": 124, - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", + "event": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730149837, + "block_time": 1730152296, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -10979,16 +11022,16 @@ Returns the credits of an asset "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "9ab485c03158b0379a31a0ed1f790c058cddbccea9db255dd3cfcb37da360985", + "event": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730149837, + "block_time": 1730152296, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -11048,12 +11091,12 @@ Returns the debits of an asset "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "utxo": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "utxo_address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -11065,16 +11108,16 @@ Returns the debits of an asset }, { "block_index": 207, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "event": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150162, + "block_time": 1730152654, "asset_info": { "divisible": true, "asset_longname": null, @@ -11086,16 +11129,16 @@ Returns the debits of an asset }, { "block_index": 206, - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "event": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150158, + "block_time": 1730152650, "asset_info": { "divisible": true, "asset_longname": null, @@ -11107,16 +11150,16 @@ Returns the debits of an asset }, { "block_index": 205, - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "5cc312fce3a8f8432aea553285ab698a3d10185eafdb52df5723ee3ed378d751", + "event": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150154, + "block_time": 1730152636, "asset_info": { "divisible": true, "asset_longname": null, @@ -11128,16 +11171,16 @@ Returns the debits of an asset }, { "block_index": 204, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "event": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150151, + "block_time": 1730152632, "asset_info": { "divisible": true, "asset_longname": null, @@ -11217,14 +11260,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 13, - "tx_hash": "e85bdf707fe349f0e40e559b6a1f20a10a1e0f329a969174ed358ea1e715df9d", + "tx_hash": "0f647573fb92582b6a2cb04ce8f42d7d23464c608d33108953f3d3879df32fe7", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -11239,20 +11282,20 @@ Returns the issuances of an asset "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730149841, + "block_time": 1730152299, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "9ab485c03158b0379a31a0ed1f790c058cddbccea9db255dd3cfcb37da360985", + "tx_hash": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -11267,20 +11310,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730149837, + "block_time": 1730152296, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", + "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -11295,20 +11338,20 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730149834, + "block_time": 1730152293, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", + "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -11323,7 +11366,7 @@ Returns the issuances of an asset "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730149829, + "block_time": 1730152289, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -11357,10 +11400,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -11368,7 +11411,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -11381,10 +11424,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 73, - "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "block_index": 206, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11392,7 +11435,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730150158, + "block_time": 1730152650, "asset_info": { "divisible": true, "asset_longname": null, @@ -11405,10 +11448,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 72, - "tx_hash": "5cc312fce3a8f8432aea553285ab698a3d10185eafdb52df5723ee3ed378d751", + "tx_hash": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", "block_index": 205, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11416,7 +11459,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730150154, + "block_time": 1730152636, "asset_info": { "divisible": true, "asset_longname": null, @@ -11429,10 +11472,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 71, - "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "block_index": 204, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11440,7 +11483,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730150151, + "block_time": 1730152632, "asset_info": { "divisible": true, "asset_longname": null, @@ -11453,10 +11496,10 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 70, - "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", + "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", "block_index": 203, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "quantity": 10, "status": "valid", @@ -11464,7 +11507,7 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730150148, + "block_time": 1730152628, "asset_info": { "divisible": true, "asset_longname": null, @@ -11515,9 +11558,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11526,7 +11569,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11536,7 +11579,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -11552,9 +11595,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "4473f2dbb7eb09b4240bbb4d13cf34b75bb23352b2c27da502c37866a024f217", + "tx_hash": "d839b088ef63a643506711a493f9bee20c8f0fdecdbe3a35b1daa547faf846c4", "block_index": 142, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11563,7 +11606,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "origin": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -11573,7 +11616,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730149918, + "block_time": 1730152374, "asset_info": { "divisible": true, "asset_longname": null, @@ -11589,9 +11632,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "3075db3fd894fb4982759d08c57ccf5915c726f7f2c2de2eb1cb9b695ac565b3", + "tx_hash": "79936cc3125e5007430b2d0bf21f27fde011aa3b3cbe455ef38d4e924e0efb2c", "block_index": 150, - "source": "mxVik5RWM3aheqn4VPBhE4NkDjFECW4vt5", + "source": "msW5ha2RLW5GPidCb4bcBfLpepfjUcMUQU", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -11599,10 +11642,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "6d03e19b70659ea140a7f92d319e95dd4815b2ece8393b26b1c9a0d7ba77f279", - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "last_status_tx_hash": "d9475e8ff5f01552453259a4f29df48bc438e16096934253fa19aea6a4577d24", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 0, - "last_status_tx_source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "last_status_tx_source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -11610,7 +11653,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730149949, + "block_time": 1730152404, "asset_info": { "divisible": true, "asset_longname": null, @@ -11626,18 +11669,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "last_status_tx_hash": null, - "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11647,7 +11690,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -11672,7 +11715,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - The address to return + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -11685,9 +11728,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -11696,7 +11739,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11706,7 +11749,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -11756,7 +11799,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -11764,7 +11807,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -11773,7 +11816,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -11781,7 +11824,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -11790,7 +11833,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -11798,7 +11841,7 @@ Returns the holders of an asset }, { "asset": "FAIRMINTA", - "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -11807,7 +11850,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -11844,27 +11887,27 @@ Returns the dispenses of an asset { "tx_index": 75, "dispense_index": 0, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "last_status_tx_hash": null, - "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11879,7 +11922,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -11893,27 +11936,27 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "5fad4bd6ee5892fa9b9dbdb90f8f89f4d1f35827c01fdc8dd4444b93621ee4fc", + "tx_hash": "e3281b866c9160fbca9b9c63f3cd72bdc23e6f1edacb7f45aa0d7e4d6d81bdfd", "block_index": 147, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "destination": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "destination": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "last_status_tx_hash": null, - "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11928,7 +11971,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730149937, + "block_time": 1730152392, "asset_info": { "divisible": true, "asset_longname": null, @@ -11942,19 +11985,19 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", + "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -11962,7 +12005,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -11977,7 +12020,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -11991,19 +12034,19 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", + "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", "block_index": 140, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -12011,7 +12054,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -12026,7 +12069,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149900, + "block_time": 1730152367, "asset_info": { "divisible": true, "asset_longname": null, @@ -12100,10 +12143,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", + "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -12128,7 +12171,7 @@ Returns the fairminter by its asset "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730149841, + "block_time": 1730152299, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -12168,22 +12211,22 @@ Returns the mints by asset { "result": [ { - "tx_hash": "e85bdf707fe349f0e40e559b6a1f20a10a1e0f329a969174ed358ea1e715df9d", + "tx_hash": "0f647573fb92582b6a2cb04ce8f42d7d23464c608d33108953f3d3879df32fe7", "tx_index": 13, "block_index": 125, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", - "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149841, + "block_time": 1730152299, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -12192,22 +12235,22 @@ Returns the mints by asset "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "9ab485c03158b0379a31a0ed1f790c058cddbccea9db255dd3cfcb37da360985", + "tx_hash": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", "tx_index": 12, "block_index": 124, - "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", - "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", + "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149837, + "block_time": 1730152296, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -12216,22 +12259,22 @@ Returns the mints by asset "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", + "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149834, + "block_time": 1730152293, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -12250,7 +12293,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se` (str, required) - The address of the mints to return + + address: `bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g` (str, required) - The address of the mints to return + asset: `FAIRMINTA` (str, required) - The asset of the mints to return + cursor (str, optional) - + Default: `None` @@ -12269,22 +12312,22 @@ Returns the mints by address and asset { "result": [ { - "tx_hash": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", + "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149834, + "block_time": 1730152293, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -12337,9 +12380,9 @@ Returns all the orders "result": [ { "tx_index": 49, - "tx_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", + "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", "block_index": 184, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12354,7 +12397,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730150014, + "block_time": 1730152467, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12380,9 +12423,9 @@ Returns all the orders }, { "tx_index": 52, - "tx_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "tx_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", "block_index": 187, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12397,7 +12440,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730150084, + "block_time": 1730152540, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12423,9 +12466,9 @@ Returns all the orders }, { "tx_index": 54, - "tx_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "block_index": 188, - "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12440,7 +12483,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730150087, + "block_time": 1730152544, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12466,9 +12509,9 @@ Returns all the orders }, { "tx_index": 57, - "tx_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", + "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", "block_index": 192, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12483,7 +12526,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730150102, + "block_time": 1730152570, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12509,9 +12552,9 @@ Returns all the orders }, { "tx_index": 59, - "tx_hash": "13047cb4dab1b0ba2151ae8e16379cc2b16fb4bb8f63e8c0f205359d365a62a2", + "tx_hash": "b5909bb972e8db050ad13378b2bb33e60dcf58c0e358ef41f60556c84f4beb1f", "block_index": 193, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12526,7 +12569,7 @@ Returns all the orders "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730150106, + "block_time": 1730152583, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12561,7 +12604,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830` (str, required) - The hash of the transaction that created the order + + order_hash: `94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b` (str, required) - The hash of the transaction that created the order + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -12573,9 +12616,9 @@ Returns the information of an order { "result": { "tx_index": 74, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12590,7 +12633,7 @@ Returns the information of an order "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730150162, + "block_time": 1730152654, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12622,7 +12665,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e` (str, required) - The hash of the transaction that created the order + + order_hash: `0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144` (str, required) - The hash of the transaction that created the order + status (enum[str], optional) - The status of the order matches to return + Default: `all` + Members @@ -12649,13 +12692,13 @@ Returns the order matches of an order { "result": [ { - "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "tx0_index": 51, - "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 54, - "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", - "tx1_address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12669,7 +12712,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730150087, + "block_time": 1730152544, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12689,13 +12732,13 @@ Returns the order matches of an order "fee_paid_normalized": "0.00000000" }, { - "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", "tx0_index": 51, - "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 52, - "tx1_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", - "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12709,7 +12752,7 @@ Returns the order matches of an order "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730150084, + "block_time": 1730152540, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -12739,7 +12782,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e` (str, required) - The hash of the transaction that created the order + + order_hash: `0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144` (str, required) - The hash of the transaction that created the order + cursor (str, optional) - The last index of the resolutions to return + Default: `None` + limit: `5` (int, optional) - The maximum number of resolutions to return @@ -12758,15 +12801,15 @@ Returns the BTC pays of an order "result": [ { "tx_index": 53, - "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", + "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", "block_index": 187, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "btc_amount": 2000, - "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", "status": "valid", "confirmed": true, - "block_time": 1730150084, + "block_time": 1730152540, "btc_amount_normalized": "0.00002000" } ], @@ -12810,9 +12853,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 52, - "tx_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "tx_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", "block_index": 187, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12830,7 +12873,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730150084, + "block_time": 1730152540, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12856,9 +12899,9 @@ Returns the orders to exchange two assets }, { "tx_index": 54, - "tx_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "block_index": 188, - "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -12876,7 +12919,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730150087, + "block_time": 1730152544, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12902,9 +12945,9 @@ Returns the orders to exchange two assets }, { "tx_index": 49, - "tx_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", + "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", "block_index": 184, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12922,7 +12965,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730150014, + "block_time": 1730152467, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12948,9 +12991,9 @@ Returns the orders to exchange two assets }, { "tx_index": 51, - "tx_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", "block_index": 207, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12968,7 +13011,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730150162, + "block_time": 1730152654, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12994,9 +13037,9 @@ Returns the orders to exchange two assets }, { "tx_index": 57, - "tx_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", + "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", "block_index": 192, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13014,7 +13057,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730150102, + "block_time": 1730152570, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -13077,13 +13120,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "tx0_index": 51, - "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 54, - "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", - "tx1_address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13100,7 +13143,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730150087, + "block_time": 1730152544, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13120,13 +13163,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", "tx0_index": 51, - "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 52, - "tx1_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", - "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13143,7 +13186,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730150084, + "block_time": 1730152540, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13163,13 +13206,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97_caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", + "id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", "tx0_index": 49, - "tx0_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 50, - "tx1_hash": "caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", - "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "tx1_hash": "838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", + "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13186,7 +13229,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730150014, + "block_time": 1730152467, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13244,13 +13287,13 @@ Returns all the order matches { "result": [ { - "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "tx0_index": 51, - "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 54, - "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", - "tx1_address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -13264,7 +13307,7 @@ Returns all the order matches "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730150087, + "block_time": 1730152544, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13284,13 +13327,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", "tx0_index": 51, - "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 52, - "tx1_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", - "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -13304,7 +13347,7 @@ Returns all the order matches "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730150084, + "block_time": 1730152540, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13324,13 +13367,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97_caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", + "id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", "tx0_index": 49, - "tx0_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 50, - "tx1_hash": "caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", - "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "tx1_hash": "838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", + "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -13344,7 +13387,7 @@ Returns all the order matches "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730150014, + "block_time": 1730152467, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -13512,66 +13555,66 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "1d67669f030d7a8d4afa14aaefef4fe7d507c15946907c1ec3b5688d4f587ce5", + "tx_hash": "faec55ede76eee50988cf0d4f1bb25d8fe1f5c75dd94ddc9427d732ef5b65344", "block_index": 121, - "source": "bcrt1qvpsk2579x0my98dh6s9fxhlmk9u454p63anff9", + "source": "bcrt1qy99t2ccel0rgwsv77j7t730c4v3xwu0q4z02rr", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730149826, + "block_time": 1730152285, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "a292ad6d93325e6d1548ace7936f98d323f34deb8b7c87d779aa11c52d286639", + "tx_hash": "ff424b42a9965359591a54f355ce5c75756123497e76f35debdaef0ea515e76a", "block_index": 120, - "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730149823, + "block_time": 1730152281, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "2703d2682ac050e52bf9041850ca3ef9cc6ce768e820a79f27d7641ee6ca55b3", + "tx_hash": "6f8c5ecfa83f7514ac2c883bba9d8f016f9fc383a064597aa379221a09df2e26", "block_index": 119, - "source": "bcrt1quy9exauh6h8xraqsj4qexjw7xn47yevhezvy27", + "source": "bcrt1qpeykk94fqpqd8z8azgnemhdj6tkd0hx3zh9vq0", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730149818, + "block_time": 1730152277, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "fad67a3a3ab51ed384adef0aaaa2ceb87808d61441538179c49ece39620c16fb", + "tx_hash": "ea5d0be869f53cc900a7b0d86eefc1124bba3014be198aeef545d113ca6c1415", "block_index": 118, - "source": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", + "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730149815, + "block_time": 1730152274, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "d5167d517bee36d60dc07daf8226611a10a2550ba7049bbbed02570cea1c454c", + "tx_hash": "b99ccc7c02aa79d4f89a55faf59b2997833ac007497ad85b9c54f7f4aee6b38f", "block_index": 117, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730149812, + "block_time": 1730152271, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -13616,9 +13659,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13627,7 +13670,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13637,7 +13680,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -13653,9 +13696,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "4473f2dbb7eb09b4240bbb4d13cf34b75bb23352b2c27da502c37866a024f217", + "tx_hash": "d839b088ef63a643506711a493f9bee20c8f0fdecdbe3a35b1daa547faf846c4", "block_index": 142, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13664,7 +13707,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "origin": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13674,7 +13717,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730149918, + "block_time": 1730152374, "asset_info": { "divisible": true, "asset_longname": null, @@ -13690,9 +13733,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "3075db3fd894fb4982759d08c57ccf5915c726f7f2c2de2eb1cb9b695ac565b3", + "tx_hash": "79936cc3125e5007430b2d0bf21f27fde011aa3b3cbe455ef38d4e924e0efb2c", "block_index": 150, - "source": "mxVik5RWM3aheqn4VPBhE4NkDjFECW4vt5", + "source": "msW5ha2RLW5GPidCb4bcBfLpepfjUcMUQU", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13700,10 +13743,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "6d03e19b70659ea140a7f92d319e95dd4815b2ece8393b26b1c9a0d7ba77f279", - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "last_status_tx_hash": "d9475e8ff5f01552453259a4f29df48bc438e16096934253fa19aea6a4577d24", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 0, - "last_status_tx_source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "last_status_tx_source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -13711,7 +13754,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730149949, + "block_time": 1730152404, "asset_info": { "divisible": true, "asset_longname": null, @@ -13727,9 +13770,9 @@ Returns all dispensers }, { "tx_index": 62, - "tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", + "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", "block_index": 197, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -13738,7 +13781,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -13748,11 +13791,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730150120, + "block_time": 1730152599, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -13764,18 +13807,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "last_status_tx_hash": null, - "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13785,7 +13828,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -13810,7 +13853,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e` (str, required) - The hash of the dispenser to return + + dispenser_hash: `881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986` (str, required) - The hash of the dispenser to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -13822,9 +13865,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13833,7 +13876,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13843,7 +13886,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -13865,7 +13908,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e` (str, required) - The hash of the dispenser to return + + dispenser_hash: `881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986` (str, required) - The hash of the dispenser to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -13885,19 +13928,19 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", + "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13905,7 +13948,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13920,7 +13963,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -13934,19 +13977,19 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", + "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", "block_index": 140, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13954,7 +13997,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13969,7 +14012,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149900, + "block_time": 1730152367, "asset_info": { "divisible": true, "asset_longname": null, @@ -14011,20 +14054,20 @@ Returns all the dividends "result": [ { "tx_index": 41, - "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", + "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", "block_index": 154, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730149962, + "block_time": 1730152419, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -14049,7 +14092,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a` (str, required) - The hash of the dividend to return + + dividend_hash: `7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab` (str, required) - The hash of the dividend to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -14061,20 +14104,20 @@ Returns a dividend by its hash { "result": { "tx_index": 41, - "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", + "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", "block_index": 154, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730149962, + "block_time": 1730152419, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -14096,7 +14139,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab` (str, required) - The hash of the dividend distribution to return + cursor (str, optional) - The last index of the credit to return + Default: `None` + limit: `5` (int, optional) - The maximum number of credit to return @@ -14119,12 +14162,12 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", + "event": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", "tx_index": 41, - "utxo": "2febd503221c1f67a8a6bc91b81c87828e7803982b872fdb5655d68b75d16b04:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "utxo": "1d83b22e706c969e3dbc46fc83aaed861ed27d6aadc4e25772b7f315f7498313:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "confirmed": true, - "block_time": 1730149962, + "block_time": 1730152419, "asset_info": { "divisible": true, "asset_longname": null, @@ -14136,16 +14179,16 @@ Returns a dividend distribution by its hash }, { "block_index": 154, - "address": "bcrt1qg89hz5l72ck62vsg34dpc2fvtfgmuhna0e0t4c", + "address": "bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", + "event": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730149962, + "block_time": 1730152419, "asset_info": { "divisible": true, "asset_longname": null, @@ -14191,27 +14234,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", - "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", + "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", + "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", "transaction_count": 1, - "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", - "block_time": 1730150176 + "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", + "block_time": 1730152668 }, "tx_hash": null, "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 674, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75 }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 673, @@ -14220,14 +14263,14 @@ Returns all events "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -14238,9 +14281,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 672, @@ -14249,9 +14292,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "status": 0, - "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "asset_info": { "divisible": true, "asset_longname": null, @@ -14261,24 +14304,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -14288,9 +14331,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 670, @@ -14318,15 +14361,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", - "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", + "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", + "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", "transaction_count": 1, - "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", - "block_time": 1730150176 + "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", + "block_time": 1730152668 }, "tx_hash": null, "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } } ``` @@ -14404,16 +14447,16 @@ Returns the events filtered by event name "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -14423,9 +14466,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 669, @@ -14435,12 +14478,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 1500000000, "tx_index": 75, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "block_time": 1730150176, + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -14450,9 +14493,9 @@ Returns the events filtered by event name }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 666, @@ -14462,39 +14505,39 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 1500000000, "tx_index": 75, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "block_time": 1730150176, + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_time": 1730152668, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 656, "event": "CREDIT", "params": { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "block_index": 207, "calling_function": "cancel order", - "event": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "event": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730150162, + "block_time": 1730152654, "asset_info": { "divisible": true, "asset_longname": null, @@ -14504,24 +14547,24 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00005000" }, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_time": 1730150162 + "block_time": 1730152654 }, { "event_index": 645, "event": "CREDIT", "params": { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "block_index": 206, "calling_function": "mpma send", - "event": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "event": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "quantity": 10, "tx_index": 73, "utxo": null, "utxo_address": null, - "block_time": 1730150158, + "block_time": 1730152650, "asset_info": { "divisible": true, "asset_longname": null, @@ -14531,9 +14574,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000010" }, - "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "block_index": 206, - "block_time": 1730150158 + "block_time": 1730152650 } ], "next_cursor": 644, @@ -14589,27 +14632,27 @@ Returns all the dispenses { "tx_index": 75, "dispense_index": 0, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "last_status_tx_hash": null, - "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14624,7 +14667,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -14638,19 +14681,19 @@ Returns all the dispenses { "tx_index": 63, "dispense_index": 0, - "tx_hash": "541f0fb85b7dbc11dc47a5535cee583b4066f143b1409c77dd9d39d0d60f6af8", + "tx_hash": "106579c58f047e17b477ed29537a950c9bd5764e11e554aecd245d2b34c593bb", "block_index": 197, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", + "dispenser_tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14658,7 +14701,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -14673,11 +14716,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730150120, + "block_time": 1730152599, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -14687,27 +14730,27 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "5fad4bd6ee5892fa9b9dbdb90f8f89f4d1f35827c01fdc8dd4444b93621ee4fc", + "tx_hash": "e3281b866c9160fbca9b9c63f3cd72bdc23e6f1edacb7f45aa0d7e4d6d81bdfd", "block_index": 147, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "destination": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "destination": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "last_status_tx_hash": null, - "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14722,7 +14765,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730149937, + "block_time": 1730152392, "asset_info": { "divisible": true, "asset_longname": null, @@ -14736,19 +14779,19 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", + "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14756,7 +14799,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14771,7 +14814,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -14785,19 +14828,19 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", + "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", "block_index": 140, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -14805,7 +14848,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -14820,7 +14863,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149900, + "block_time": 1730152367, "asset_info": { "divisible": true, "asset_longname": null, @@ -14862,10 +14905,10 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -14873,7 +14916,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -14886,10 +14929,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -14897,11 +14940,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -14910,10 +14953,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 73, - "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "block_index": 206, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 10, "status": "valid", @@ -14921,7 +14964,7 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730150158, + "block_time": 1730152650, "asset_info": { "divisible": true, "asset_longname": null, @@ -14934,10 +14977,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 73, - "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "block_index": 206, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14945,11 +14988,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730150158, + "block_time": 1730152650, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -14958,10 +15001,10 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 73, - "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "block_index": 206, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -14969,11 +15012,11 @@ Returns all the sends include Enhanced and MPMA sends "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730150158, + "block_time": 1730152650, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -15024,14 +15067,14 @@ Returns all the issuances "result": [ { "tx_index": 68, - "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", + "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -15046,20 +15089,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730150139, + "block_time": 1730152620, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 64, - "tx_hash": "b5544f95147a8700f9db7a99f2713173f6cf13457b75605298197c154da0fcda", + "tx_hash": "bf75f7092b509102f9cc7488b8a1d2b5ac9b3663ab98a89b377d0ef6fe1dcb7c", "msg_index": 0, "block_index": 198, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", - "issuer": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", + "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "issuer": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", "transfer": false, "callable": false, "call_date": 0, @@ -15074,20 +15117,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730150124, + "block_time": 1730152603, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "bfaad85954beda99abea4a7010a07447599bbf6f22ea125e30ed294c7f5218f0", + "tx_hash": "9e318339eedce8001504b264f6284e226cd64f7682b8d8516c334f650d696d1a", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -15102,20 +15145,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730149990, + "block_time": 1730152454, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "05689fcc47dfef00b3da5ab26a1b46ea1887fa933a6f6903acb19faf207eca1f", + "tx_hash": "45cb917d16df66648e5f28c6c2bd440fe45d164add86d0e42b41da39eb7f0556", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -15130,20 +15173,20 @@ Returns all the issuances "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730149986, + "block_time": 1730152441, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "b9a6fb371b7caf85edb70d0c373d91aad170224779eb8f3effcbeec5ea512deb", + "tx_hash": "ac506b92d017443f43af978440e014edeebaeb005ef74872f0a538268c655b9e", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -15158,7 +15201,7 @@ Returns all the issuances "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730149983, + "block_time": 1730152437, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -15173,7 +15216,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305` (str, required) - The hash of the transaction to return + + tx_hash: `4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15185,14 +15228,14 @@ Returns the issuances of a block { "result": { "tx_index": 68, - "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", + "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -15207,7 +15250,7 @@ Returns the issuances of a block "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730150139, + "block_time": 1730152620, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -15239,16 +15282,16 @@ Returns all sweeps "result": [ { "tx_index": 60, - "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", + "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", "block_index": 194, - "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730150109, + "block_time": 1730152588, "fee_paid_normalized": "0.00600000" } ], @@ -15262,7 +15305,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813` (str, required) - The hash of the transaction to return + + tx_hash: `2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15275,16 +15318,16 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 60, - "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", + "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", "block_index": 194, - "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730150109, + "block_time": 1730152588, "fee_paid_normalized": "0.00600000" } ], @@ -15318,9 +15361,9 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc", + "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", "block_index": 138, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15328,14 +15371,14 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730149891, + "block_time": 1730152360, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "6bb6a779b50b7a5f5e7f2eeb16d14bf3280a3bb411704fe10c8e4937e68590ac", + "tx_hash": "278eb0af25f68b3a6653ba0f2df33f974ff0da6c7104e66879b1e7398e7c5c0a", "block_index": 137, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -15343,7 +15386,7 @@ Returns all valid broadcasts "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730149887, + "block_time": 1730152356, "fee_fraction_int_normalized": "0.00000000" } ], @@ -15357,7 +15400,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc` (str, required) - The hash of the transaction to return + + tx_hash: `26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15369,9 +15412,9 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc", + "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", "block_index": 138, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -15379,7 +15422,7 @@ Returns the broadcast of a transaction "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730149891, + "block_time": 1730152360, "fee_fraction_int_normalized": "0.00000000" } } @@ -15416,10 +15459,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "93dee74a73fd75a2b609a0b4cd62839d0d254025bf44bcb5513cad7d35bfa6f3", + "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", "tx_index": 42, "block_index": 155, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -15444,7 +15487,7 @@ Returns all fairminters "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730149965, + "block_time": 1730152422, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15453,10 +15496,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", + "tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -15481,7 +15524,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730149878, + "block_time": 1730152348, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15493,10 +15536,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", + "tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -15521,7 +15564,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730149865, + "block_time": 1730152322, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -15533,10 +15576,10 @@ Returns all fairminters "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "0e2c46ac44f390ff6b06d99469bca85858fa064feb09b8c2ef799039d36dfa3f", + "tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -15561,7 +15604,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730149860, + "block_time": 1730152319, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15573,10 +15616,10 @@ Returns all fairminters "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", + "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -15601,7 +15644,7 @@ Returns all fairminters "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730149841, + "block_time": 1730152299, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -15670,22 +15713,22 @@ Returns all fairmints { "result": [ { - "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", + "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149883, + "block_time": 1730152352, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -15694,22 +15737,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "fda34c124d140677eccc10bdff0dc1cac5550cd210cdabf0ec3cac7f5621c72d", + "tx_hash": "ff6f27751d9a86791bebbfbdf6c94db117df2b3f2193fb80951f246a234aec33", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149874, + "block_time": 1730152344, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -15718,22 +15761,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "1a79feb1b1b318e55f4b6836518ac7315c78fc94029d4bfbe2e66f0341f3d69d", + "tx_hash": "d8a0233a8d8e6e63a86f2762bdcd19f395771e948e9d9fd91e4131cf9b4b466c", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149871, + "block_time": 1730152329, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -15742,22 +15785,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "52aa1faf5394a028bd06452893acd47a19a81f90b3984c7546cf5c0fa205f190", + "tx_hash": "9cbbbc1ba5c0c6a6a4766e5b10e4e35fe2772e4e9a4ac36a36fe0e0239c134f8", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149868, + "block_time": 1730152326, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -15766,22 +15809,22 @@ Returns all fairmints "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "0d3ec97ca627c8afdc74e7cd74d98e23e70e50fb3f4556145985a0937ee00c5b", + "tx_hash": "7373471bfbb61006816b238cc58de75e2684d1b9cc29a2ea12ed240f42efc5c1", "tx_index": 17, "block_index": 129, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", - "fairminter_tx_hash": "0e2c46ac44f390ff6b06d99469bca85858fa064feb09b8c2ef799039d36dfa3f", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "fairminter_tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149856, + "block_time": 1730152314, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -15800,7 +15843,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7` (str, required) - The hash of the fairmint to return + + tx_hash: `56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` + show_unconfirmed (bool, optional) - Include results from Mempool. @@ -15811,22 +15854,22 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", + "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149883, + "block_time": 1730152352, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -15844,7 +15887,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa,bcrt1quy9exauh6h8xraqsj4qexjw7xn47yevhezvy27` (str, required) - The addresses to search for + + addresses: `bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t,bcrt1qpeykk94fqpqd8z8azgnemhdj6tkd0hx3zh9vq0` (str, required) - The addresses to search for + unconfirmed (bool, optional) - Include unconfirmed transactions + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -15863,8 +15906,8 @@ Returns a list of unspent outputs for a list of addresses "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "508340a6b50309287c608280e281aeb60e7fdb44401c73cc2d824350a587a82b", - "address": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa" + "txid": "4f4e04943e18e0ee4357cfc625380441563b546fa24099f5e213d8e1ba2d301e", + "address": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t" }, { "vout": 1, @@ -15872,8 +15915,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "9b6c9a7bb596e969abc4b473d1fe8cfb354de8ab6eeb5085ae582ed48ab6e97e", - "address": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa" + "txid": "aeaf026eb996356b27b9fa803f584b52d00b626dc2d0d876b59e2f0e219ac0d1", + "address": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t" }, { "vout": 2, @@ -15881,8 +15924,8 @@ Returns a list of unspent outputs for a list of addresses "value": 100000, "confirmations": 52, "amount": 0.001, - "txid": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849", - "address": "bcrt1quy9exauh6h8xraqsj4qexjw7xn47yevhezvy27" + "txid": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76", + "address": "bcrt1qpeykk94fqpqd8z8azgnemhdj6tkd0hx3zh9vq0" } ], "next_cursor": null, @@ -15895,7 +15938,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk` (str, required) - The address to search for + + address: `bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2` (str, required) - The address to search for + unconfirmed: `True` (bool, optional) - Include unconfirmed transactions + Default: `True` + only_tx_hashes: `True` (bool, optional) - Return only the tx hashes @@ -15911,28 +15954,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "ac629e61e6754dc91053dab34f5c7923f53a25f08505c48e02020b88fcbf160c" + "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35" }, { - "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813" + "tx_hash": "1470f4b572e577839544315fa7c74ff2ffcf96c223ad7652b4f6846af2f30a45" }, { - "tx_hash": "9ab485c03158b0379a31a0ed1f790c058cddbccea9db255dd3cfcb37da360985" + "tx_hash": "aa546f61f8ebb938d0b3ce821f6de5f8150cfeb107148298e068de15ab033e63" }, { - "tx_hash": "166c36ba6e40975fd9175e2c75c3429ffbabdb6d40d994cf45739dcd7cd3718f" + "tx_hash": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75" }, { - "tx_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1" + "tx_hash": "894dceb9db02f71c93dcc4070ecf5daefd49348620bea85df8f0b4e0acec138c" }, { - "tx_hash": "1a13cc5410faf54cf3e15d2f36ebe7d2162194c040bbcb754a460a587bb183df" + "tx_hash": "708576bd350d01171c186ecbba44bca04cf7cb37bc750f1b0d2b34d99f125a93" }, { - "tx_hash": "2b8d25beb3e954c2626269fe981cad7457e2816015fa2ffb47fc40dab3aab8ec" + "tx_hash": "a6cb77043648b5643482906ff1d7d5b899f2d4eec6f273ca25ac8652668a51a8" }, { - "tx_hash": "d94e197f2a619d264cc847eb0c6d0cc74b543b39ee3e674e770d01b6491332f0" + "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8" } ], "next_cursor": null, @@ -15945,7 +15988,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57` (str, required) - The address to search for. + + address: `bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph` (str, required) - The address to search for. + block_index (int, optional) - The block index to search from. + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -15958,8 +16001,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 10, - "tx_hash": "7eb3eacdd595345e0fe6958c9a1175ee02db099b906474714fae3e96901ca847" + "block_index": 3, + "tx_hash": "18676cb74eb9dfce4b58b954ec2a6b83b96a6f4daad0a16f77bcb6b61458ace6" } } ``` @@ -15969,7 +16012,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa` (str, required) - The address to search for + + address: `bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t` (str, required) - The address to search for + unconfirmed (bool, optional) - Include unconfirmed transactions + Default: `False` + unspent_tx_hash (str, optional) - Filter by unspent_tx_hash @@ -15985,20 +16028,20 @@ Returns a list of unspent outputs for a specific address { "result": [ { - "vout": 0, + "vout": 1, "height": 200, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "508340a6b50309287c608280e281aeb60e7fdb44401c73cc2d824350a587a82b" + "amount": 49.499345, + "txid": "aeaf026eb996356b27b9fa803f584b52d00b626dc2d0d876b59e2f0e219ac0d1" }, { - "vout": 1, + "vout": 0, "height": 200, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "9b6c9a7bb596e969abc4b473d1fe8cfb354de8ab6eeb5085ae582ed48ab6e97e" + "amount": 5.46e-05, + "txid": "4f4e04943e18e0ee4357cfc625380441563b546fa24099f5e213d8e1ba2d301e" } ], "next_cursor": null, @@ -16011,7 +16054,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70` (str, required) - Address to get pubkey for. + + address: `bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s` (str, required) - Address to get pubkey for. + provided_pubkeys (str, optional) - Comma separated list of provided pubkeys. + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -16023,7 +16066,7 @@ Get pubkey for an address. ``` { - "result": "026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c" + "result": "03be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d500" } ``` @@ -16032,7 +16075,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b` (str, required) - The transaction hash + + tx_hash: `24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7` (str, required) - The transaction hash + format: `hex` (str, optional) - Whether to return JSON output or raw hex + Default: `json` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -16044,7 +16087,7 @@ Get a transaction from the blockchain ``` { - "result": "0200000000010149289a40c78c66916c239ac7f908b0d59ef63456994b1e9510d8717257f0bf460100000000ffffffff03e8030000000000001600149e3d73cf180ab4652f14e45d6dd17012e1442b0000000000000000000c6a0a06f7bbe2b2ce3b3aeeebeb1409270100000016001465c904bf5dd078f1db7ff75e9d02179c176ab0900247304402201dd21b409a496da4d49a01840c4e3f9d1bdef1d8184b29b20924ff78f921b5a102203046c25e5926256e32950b3f56702d092ce66300479cdcd5b6fc02d37760fa7601210394905cd47735fcf8303d48ee74e9528871221d877e69b6ae5e376e64158d451000000000" + "result": "02000000000101767fa9746798e2f0da5d0765e73be7115b8f252c0ff7b3420c4ee20d9e51bb0a0100000000ffffffff03e803000000000000160014f9f761de6a26b38c86a3f54543766007cab6e30f00000000000000000c6a0a8ee379ec02600d7a1d1aeb140927010000001600145e3425187b2b5bc42b4371cb0d1f75d1661ad94802473044022038bd1cb36fdd7f9da255360c2b77e5d07c034b15eb8433d992508c6c65c6e693022074d799ef701e0e6ceb1e5e702c023f85f849de50800f98e9f4b29eb8c46f1a63012103606de90e430b926855501d0a176c98eff58fab05f6264d36c656a231b914c4d600000000" } ``` @@ -16139,27 +16182,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "tx_index": 76 }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "memo": null, "quantity": 10000, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "status": "valid", - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "tx_index": 76, "asset_info": { "divisible": true, @@ -16170,22 +16213,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "CREDIT", "params": { - "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -16195,22 +16238,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "XCP", "block_index": 208, - "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -16220,30 +16263,30 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730150180.8792815, + "block_time": 1730152671.386915, "btc_amount": 0, - "data": "0200000000000000010000000000002710803eb72a4136323ae914b5e511d43a96fe66f85c55", + "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", "destination": "", "fee": 10000, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "tx_index": 76, - "utxos_info": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca:1", + "utxos_info": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "memo": null, "asset_info": { "divisible": true, @@ -16257,7 +16300,7 @@ Returns all mempool events }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 } ], "next_cursor": null, @@ -16288,19 +16331,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "CREDIT", "params": { - "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -16310,7 +16353,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 } ], "next_cursor": null, @@ -16323,7 +16366,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca` (str, required) - The hash of the transaction to return + + tx_hash: `176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor (str, optional) - The last event index to return @@ -16343,27 +16386,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "tx_index": 76 }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "memo": null, "quantity": 10000, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "status": "valid", - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "tx_index": 76, "asset_info": { "divisible": true, @@ -16374,22 +16417,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "CREDIT", "params": { - "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -16399,22 +16442,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "XCP", "block_index": 208, - "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -16424,30 +16467,30 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730150180.8792815, + "block_time": 1730152671.386915, "btc_amount": 0, - "data": "0200000000000000010000000000002710803eb72a4136323ae914b5e511d43a96fe66f85c55", + "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", "destination": "", "fee": 10000, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "tx_index": 76, - "utxos_info": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca:1", + "utxos_info": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "memo": null, "asset_info": { "divisible": true, @@ -16461,7 +16504,7 @@ Returns the mempool events filtered by transaction hash }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 06b8a7d2a9..5df7c8d6fe 100644 --- a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json +++ b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json @@ -3,61 +3,61 @@ "result": [ { "block_index": 208, - "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", - "block_time": 1730150176, - "previous_block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", + "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", + "block_time": 1730152668, + "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", "difficulty": 545259519, - "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", - "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", - "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", + "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", + "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", + "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", "transaction_count": 1, "confirmed": true }, { "block_index": 207, - "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", - "block_time": 1730150162, - "previous_block_hash": "24fcd9eac7b7cd3657adfe8bc22e3952cde382c08c9782ffc7e354dfaf750fcf", + "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", + "block_time": 1730152654, + "previous_block_hash": "0ed698e4a096ff2ce31cd2413b0123c47570e5e6248dcade5b66711e081b9b1f", "difficulty": 545259519, - "ledger_hash": "e32feb5e459aef10ade923772074376074ed225d60b46c6980af3924f5acd3ef", - "txlist_hash": "07761e73b55838e899f773a3d385248e67c8639db8646ea97db76fb277ab2930", - "messages_hash": "9c239fb45f7eadba952f1e433220d5d025f3ed4a96536c564f49f4b05ff2ad4f", + "ledger_hash": "82b7aa0986153801d34b4a42f07b47c84e24685d8696f9422a2d92fad2a337b5", + "txlist_hash": "ba6fc33695ae4f6266c33514cb0cbee9d38105f78ba7594be4a4cee634d08674", + "messages_hash": "af54cefd796959cf5d8343303d9c7be0b765b1b89b693c6b5a9ab7374afb9606", "transaction_count": 1, "confirmed": true }, { "block_index": 206, - "block_hash": "24fcd9eac7b7cd3657adfe8bc22e3952cde382c08c9782ffc7e354dfaf750fcf", - "block_time": 1730150158, - "previous_block_hash": "290c68bb409d42e9ed62dc8223e72f61f221b4e03db77c76fe49931edea5538a", + "block_hash": "0ed698e4a096ff2ce31cd2413b0123c47570e5e6248dcade5b66711e081b9b1f", + "block_time": 1730152650, + "previous_block_hash": "6417fd8e9a6ad9919e85713fc130ea3db498e628f3e95be84cf24e648410b349", "difficulty": 545259519, - "ledger_hash": "cdce55ebc4b38e82b4cd4095b9153f4a29fc07ff2b8bcfb6b6f6cd13277ccc42", - "txlist_hash": "00e4944db20400bcd459987846344303b626e6a91a9767f1474eb9111787e71e", - "messages_hash": "fb41f289331b1456895f7d5b051b5a17741fc1bb9308036094d6e752a1edd358", + "ledger_hash": "be00302ec692c6beb809ed6c76f726d178093e916290e232554035f57146b6f2", + "txlist_hash": "365902f962fea5f28dff03b680c5a8b9ca5fd1a33058de5de7ec14aeb225ed25", + "messages_hash": "0dc8852d7d7ecdd56b9c63c616455bc1c116fc865b45cb4b3cec60586168ca3a", "transaction_count": 1, "confirmed": true }, { "block_index": 205, - "block_hash": "290c68bb409d42e9ed62dc8223e72f61f221b4e03db77c76fe49931edea5538a", - "block_time": 1730150154, - "previous_block_hash": "3906807db0d56b9fec78f5982ba29d4512f200a4769bb4153d83c94df666c0a4", + "block_hash": "6417fd8e9a6ad9919e85713fc130ea3db498e628f3e95be84cf24e648410b349", + "block_time": 1730152636, + "previous_block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", "difficulty": 545259519, - "ledger_hash": "fb6fa100bcf1dab2deace12dd3f350e79c2f5d805a7608209d29d7308ff65edc", - "txlist_hash": "475920684f1ab856770d9d807d17ef1b1e547555e7787b0e8a6f112fae00c432", - "messages_hash": "80907e25a0ead5ab76e1b793b9a17683be58f0da5739d6b553205fb8f915fc42", + "ledger_hash": "c1b7edc78b076d79b3a5e4c72424a09d7ffe14fe75b38a4debc9d23fd9f5398d", + "txlist_hash": "4eeeef0e7bd3dd22665ee35f6e47962d68777493d6d40d4ee79327499645e336", + "messages_hash": "c37fc64064bacb9a17a6bdf16fc6c67d169079ff509f690e442a561396f85182", "transaction_count": 1, "confirmed": true }, { "block_index": 204, - "block_hash": "3906807db0d56b9fec78f5982ba29d4512f200a4769bb4153d83c94df666c0a4", - "block_time": 1730150151, - "previous_block_hash": "5b2cb939f6b6a782be5829b4a32d310f3e8b11c136ebed663d064b28e5700f62", + "block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", + "block_time": 1730152632, + "previous_block_hash": "722ff4f47c82493fc6b30fa306d6a1be83cf3d3e17d6efb4e1bcf1ab0f1fa3c3", "difficulty": 545259519, - "ledger_hash": "b173405fba1bf44bf2a8c11c6b526256ea13b3750afce6a0d8b4b7369b3ac2ed", - "txlist_hash": "0286081e03a112d9e0153e5fe9d8043526f209fef2239e647a256edf72c72157", - "messages_hash": "51ad30cb166cc647352835bd87f313ecb0c1f4d9058ab7740ea45a60dd26ceb2", + "ledger_hash": "724180ad76ff4c429d83777f69e676fb618e8bad0ff4f7e17e21edf0fc0eebf0", + "txlist_hash": "03f7a32a202bc5cc53417126d5f8a83d7f582f25e64c67cc15e08eb9953cfb98", + "messages_hash": "351bb1b903e1bfe9b921d195c89083d3a5b5eef4fa22f16ded1b900b4dc7f6c4", "transaction_count": 1, "confirmed": true } @@ -68,13 +68,13 @@ "/v2/blocks/": { "result": { "block_index": 208, - "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", - "block_time": 1730150176, - "previous_block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", + "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", + "block_time": 1730152668, + "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", "difficulty": 545259519, - "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", - "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", - "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", + "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", + "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", + "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", "transaction_count": 1, "confirmed": true } @@ -82,13 +82,13 @@ "/v2/blocks/": { "result": { "block_index": 208, - "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", - "block_time": 1730150176, - "previous_block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", + "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", + "block_time": 1730152668, + "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", "difficulty": 545259519, - "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", - "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", - "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", + "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", + "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", + "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", "transaction_count": 1, "confirmed": true } @@ -97,17 +97,17 @@ "result": [ { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", - "block_time": 1730150176, - "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", - "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", + "block_time": 1730152668, + "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -129,11 +129,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", - "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", + "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", + "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", "transaction_count": 1, - "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", - "block_time": 1730150176 + "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", + "block_time": 1730152668 }, "tx_hash": null }, @@ -142,10 +142,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75 }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" }, { "event_index": 673, @@ -154,14 +154,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -172,7 +172,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" }, { "event_index": 672, @@ -181,9 +181,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "status": 0, - "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "asset_info": { "divisible": true, "asset_longname": null, @@ -193,22 +193,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -218,7 +218,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" } ], "next_cursor": 670, @@ -256,16 +256,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -275,7 +275,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" }, { "event_index": 669, @@ -285,12 +285,12 @@ "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 1500000000, "tx_index": 75, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "block_time": 1730150176, + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -300,7 +300,7 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" }, { "event_index": 666, @@ -310,22 +310,22 @@ "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 1500000000, "tx_index": 75, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "block_time": 1730150176, + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_time": 1730152668, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b" + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7" } ], "next_cursor": null, @@ -335,16 +335,16 @@ "result": [ { "block_index": 208, - "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -360,12 +360,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -381,16 +381,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "calling_function": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -408,12 +408,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "utxo": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "utxo_address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -429,16 +429,16 @@ "asset": "MYASSETA", "quantity": 1500000000, "action": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "utxo": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "utxo_address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -452,10 +452,10 @@ "result": [ { "type": "order", - "object_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "object_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", "block_index": 207, "confirmed": true, - "block_time": 1730150162 + "block_time": 1730152654 } ], "next_cursor": null, @@ -465,13 +465,13 @@ "result": [ { "tx_index": 58, - "tx_hash": "273b62eaf8de41c504f5b4619412ccadacc70cff6b889cb2396189018c05d81c", + "tx_hash": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7", "block_index": 192, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "offer_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "offer_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", "status": "valid", "confirmed": true, - "block_time": 1730150102 + "block_time": 1730152570 } ], "next_cursor": null, @@ -481,15 +481,15 @@ "result": [ { "tx_index": 61, - "tx_hash": "c00a1d1e74c94dc85120712a15a6b62760a12590f92814b3ab2725b9b992038c", + "tx_hash": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282", "block_index": 195, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "XCP", "quantity": 1, "tag": "64657374726f79", "status": "valid", "confirmed": true, - "block_time": 1730150114, + "block_time": 1730152592, "asset_info": { "divisible": true, "asset_longname": null, @@ -507,14 +507,14 @@ "result": [ { "tx_index": 68, - "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", + "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -529,7 +529,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730150139, + "block_time": 1730152620, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -541,10 +541,10 @@ "result": [ { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -552,7 +552,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -565,10 +565,10 @@ }, { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -576,11 +576,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -596,27 +596,27 @@ { "tx_index": 75, "dispense_index": 0, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "last_status_tx_hash": null, - "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -631,7 +631,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -650,16 +650,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", + "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", "block_index": 194, - "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730150109, + "block_time": 1730152588, "fee_paid_normalized": "0.00600000" } ], @@ -669,10 +669,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "93dee74a73fd75a2b609a0b4cd62839d0d254025bf44bcb5513cad7d35bfa6f3", + "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", "tx_index": 42, "block_index": 155, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -697,7 +697,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730149965, + "block_time": 1730152422, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -712,22 +712,22 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", + "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149883, + "block_time": 1730152352, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -743,17 +743,17 @@ "result": [ { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", - "block_time": 1730150176, - "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", - "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", + "block_time": 1730152668, + "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -766,17 +766,17 @@ }, { "tx_index": 74, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", - "block_time": 1730150162, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", + "block_time": 1730152654, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", + "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -816,7 +816,7 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, @@ -827,7 +827,7 @@ "coinbase": false, "vin": [ { - "hash": "cf949dffd0450d4a69dae4636f4c94c35011e7f9338efea635db0220d592bc1e", + "hash": "1d619aab321211396b23bb1b23b64c2f834d03416457d82cec83697f6cd6a38a", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -837,20 +837,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a333e0104f9de1867866062b67557048fb8a623a572b848d6d77f4483e791b32ad96759cb346a9a9f40f4e3c413395fa062f31bad" + "script_pub_key": "6a3327c367fc2cfb37dc6531af27af803c5260f6ebef6c5928e491c8932f7f76d52faa764936b4a720e062b566e4536ccd0ffed168" }, { "value": 4999990000, - "script_pub_key": "001453acd20b89492c54642d81b92cdc32862046ce71" + "script_pub_key": "00147967f0a0bd9d33804ecfac05d869b2782a3467a1" } ], "vtxinwit": [ - "3044022018455d972c6b439a6641f0e5633be8f382872c4893416b692b38f8a5ea15461402206fc58766cb40cc9d552def555bfb27de92737607eb0814ff2a6f8e34094717e601", - "026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c" + "30440220637c88748ba11d0a32a201ae071961d394e46e5b6d196154324e6027a48ba65502201f7e7ed2867dd9516e75b43cc4e4033e3735ae5a01641fbe10a92d55d2316fde01", + "03be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d500" ], "lock_time": 0, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", - "tx_id": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830" + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", + "tx_id": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b" }, "unpacked_data": { "message_type": "order", @@ -887,18 +887,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710803eb72a4136323ae914b5e511d43a96fe66f85c55", + "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "046bd1758bd65556db2f872b9803788e82871cb891bca6a8671f1c2203d5eb2f", + "hash": "138349f715f3b77257e2c4ad6a7dd21e86edaa83fc46bc3d9e966c702eb2831d", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -908,20 +908,20 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e159b491df4e1cc63cbd344287282ce43eb42ae4cf95a12d94d973b973c3b5b18f479d9d00c735c4837d0af87be5b" + "script_pub_key": "6a2eff33b1f7f8e902221f13c27b12b7d32e190f805c939dcf9ab4de5baf7143247463d682a89b00ffe16d91d8dc9d1f" }, { "value": 4999970000, - "script_pub_key": "00143c9e235caa5be4be07a3dfbf730d21c096c653e2" + "script_pub_key": "00142f97d5f43cfda62fa2b92fe2d2b1dcd874e475b4" } ], "vtxinwit": [ - "3044022052ad54091732d8d818d82ec24649155fe2f4fdb6a6a7a2aded7fb7bea407e4b002202fa49a77a5158f5687a5a2600001f4fabf5303d46a9a0809dca4e2240f17862801", - "03c1a7c33ad91c7f9e3c3aec9546acbb11cc8e02feaff182e7e827840daa063254" + "3044022036beb3fb4d3dd6bd98282613490c124c3a14f85ae1b1f004c2f44bd429f4a588022051a6de46a46e50e2ae2b08532f731486c334ac19db5ba804a53f0921fb2e890701", + "023e3d46364a1fab486d12778805a80a614ea43362116ec89285ecd3f2893be2b9" ], "lock_time": 0, - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", - "tx_id": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca" + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", + "tx_id": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43" }, "unpacked_data": { "message_type": "enhanced_send", @@ -929,7 +929,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "memo": null, "asset_info": { "divisible": true, @@ -956,17 +956,17 @@ "/v2/transactions/": { "result": { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", - "block_time": 1730150176, - "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", - "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", + "block_time": 1730152668, + "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -981,17 +981,17 @@ "/v2/transactions/": { "result": { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", - "block_time": 1730150176, - "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", - "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", + "block_time": 1730152668, + "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "confirmed": true, "unpacked_data": { "message_type": "dispense", @@ -1010,12 +1010,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75 }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 673, @@ -1024,14 +1024,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -1042,9 +1042,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 672, @@ -1053,9 +1053,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "status": 0, - "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "asset_info": { "divisible": true, "asset_longname": null, @@ -1065,24 +1065,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -1092,9 +1092,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 670, @@ -1102,14 +1102,14 @@ "params": { "asset": "XCP", "block_index": 208, - "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "msg_index": 1, "quantity": 1500000000, - "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", "status": "valid", - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -1119,9 +1119,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 669, @@ -1134,12 +1134,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75 }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 673, @@ -1148,14 +1148,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -1166,9 +1166,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 672, @@ -1177,9 +1177,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "status": 0, - "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "asset_info": { "divisible": true, "asset_longname": null, @@ -1189,24 +1189,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -1216,9 +1216,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 670, @@ -1226,14 +1226,14 @@ "params": { "asset": "XCP", "block_index": 208, - "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "msg_index": 1, "quantity": 1500000000, - "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", "status": "valid", - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -1243,9 +1243,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 669, @@ -1255,10 +1255,10 @@ "result": [ { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -1266,7 +1266,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -1279,10 +1279,10 @@ }, { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -1290,11 +1290,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -1310,27 +1310,27 @@ { "tx_index": 75, "dispense_index": 0, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "last_status_tx_hash": null, - "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1345,7 +1345,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -1366,16 +1366,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -1385,9 +1385,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 669, @@ -1397,12 +1397,12 @@ "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 1500000000, "tx_index": 75, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "block_time": 1730150176, + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -1412,9 +1412,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 666, @@ -1424,24 +1424,24 @@ "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 1500000000, "tx_index": 75, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "block_time": 1730150176, + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_time": 1730152668, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": null, @@ -1453,16 +1453,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -1472,9 +1472,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 669, @@ -1484,12 +1484,12 @@ "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 1500000000, "tx_index": 75, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "block_time": 1730150176, + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -1499,9 +1499,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 666, @@ -1511,24 +1511,24 @@ "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 1500000000, "tx_index": 75, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "block_time": 1730150176, + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_time": 1730152668, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": null, @@ -1541,7 +1541,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -1551,7 +1551,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -1562,7 +1562,7 @@ "total": 99999998960, "addresses": [ { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "utxo": null, "utxo_address": null, "quantity": 99999998960, @@ -1572,7 +1572,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -1583,7 +1583,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -1593,7 +1593,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -1604,7 +1604,7 @@ "total": 960, "addresses": [ { - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "utxo": null, "utxo_address": null, "quantity": 960, @@ -1614,7 +1614,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -1625,7 +1625,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "utxo": null, "utxo_address": null, "quantity": 40, @@ -1635,7 +1635,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -1646,7 +1646,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "utxo": null, "utxo_address": null, "quantity": 19, @@ -1656,7 +1656,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -1670,17 +1670,17 @@ "result": [ { "tx_index": 74, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", - "block_time": 1730150162, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", + "block_time": 1730152654, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", + "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -1716,17 +1716,17 @@ }, { "tx_index": 73, - "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "block_index": 206, - "block_hash": "24fcd9eac7b7cd3657adfe8bc22e3952cde382c08c9782ffc7e354dfaf750fcf", - "block_time": 1730150158, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "block_hash": "0ed698e4a096ff2ce31cd2413b0123c47570e5e6248dcade5b66711e081b9b1f", + "block_time": 1730152650, + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038053acd20b89492c54642d81b92cdc32862046ce71803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807967f0a0bd9d33804ecfac05d869b2782a3467a180a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5:0", + "utxos_info": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1734,14 +1734,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -1749,7 +1749,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1768,17 +1768,17 @@ }, { "tx_index": 72, - "tx_hash": "5cc312fce3a8f8432aea553285ab698a3d10185eafdb52df5723ee3ed378d751", + "tx_hash": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", "block_index": 205, - "block_hash": "290c68bb409d42e9ed62dc8223e72f61f221b4e03db77c76fe49931edea5538a", - "block_time": 1730150154, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "block_hash": "6417fd8e9a6ad9919e85713fc130ea3db498e628f3e95be84cf24e648410b349", + "block_time": 1730152636, + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0300038053acd20b89492c54642d81b92cdc32862046ce71803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e2c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003807967f0a0bd9d33804ecfac05d869b2782a3467a180a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b4c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "5cc312fce3a8f8432aea553285ab698a3d10185eafdb52df5723ee3ed378d751:0", + "utxos_info": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1786,14 +1786,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -1801,7 +1801,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -1820,17 +1820,17 @@ }, { "tx_index": 71, - "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "block_index": 204, - "block_hash": "3906807db0d56b9fec78f5982ba29d4512f200a4769bb4153d83c94df666c0a4", - "block_time": 1730150151, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", + "block_time": 1730152632, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d630d477df0f6e07f91e8949433310400b60dd35803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e240000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4:0", + "utxos_info": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1838,14 +1838,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -1853,7 +1853,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1872,17 +1872,17 @@ }, { "tx_index": 70, - "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", + "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", "block_index": 203, - "block_hash": "5b2cb939f6b6a782be5829b4a32d310f3e8b11c136ebed663d064b28e5700f62", - "block_time": 1730150148, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "722ff4f47c82493fc6b30fa306d6a1be83cf3d3e17d6efb4e1bcf1ab0f1fa3c3", + "block_time": 1730152628, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d630d477df0f6e07f91e8949433310400b60dd35803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109:0", + "utxos_info": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -1890,14 +1890,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -1905,7 +1905,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -1945,11 +1945,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "status": "open", - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "tx_index": 74, - "block_time": 1730150162, + "block_time": 1730152654, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -1973,24 +1973,24 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_time": 1730150162 + "block_time": 1730152654 }, { "event_index": 658, "event": "DEBIT", "params": { "action": "open order", - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "block_index": 207, - "event": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "event": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "quantity": 1000, "tx_index": 74, "utxo": null, "utxo_address": null, - "block_time": 1730150162, + "block_time": 1730152654, "asset_info": { "divisible": true, "asset_longname": null, @@ -2000,37 +2000,37 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_time": 1730150162 + "block_time": 1730152654 }, { "event_index": 657, "event": "ORDER_EXPIRATION", "params": { "block_index": 207, - "order_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "block_time": 1730150162 + "order_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_time": 1730152654 }, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_time": 1730150162 + "block_time": 1730152654 }, { "event_index": 656, "event": "CREDIT", "params": { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "block_index": 207, "calling_function": "cancel order", - "event": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "event": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730150162, + "block_time": 1730152654, "asset_info": { "divisible": true, "asset_longname": null, @@ -2040,25 +2040,25 @@ }, "quantity_normalized": "0.00005000" }, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_time": 1730150162 + "block_time": 1730152654 }, { "event_index": 654, "event": "NEW_TRANSACTION", "params": { - "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", + "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", "block_index": 207, - "block_time": 1730150162, + "block_time": 1730152654, "btc_amount": 0, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "destination": "", "fee": 10000, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "tx_index": 74, - "utxos_info": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", + "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -2090,9 +2090,9 @@ }, "btc_amount_normalized": "0.00000000" }, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_time": 1730150162 + "block_time": 1730152654 } ], "next_cursor": 650, @@ -2101,17 +2101,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "memo": null, "quantity": 10000, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "status": "valid", - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "tx_index": 76, "asset_info": { "divisible": true, @@ -2122,22 +2122,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "CREDIT", "params": { - "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -2147,22 +2147,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "XCP", "block_index": 208, - "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -2172,30 +2172,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730150180.8792815, + "block_time": 1730152671.386915, "btc_amount": 0, - "data": "0200000000000000010000000000002710803eb72a4136323ae914b5e511d43a96fe66f85c55", + "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", "destination": "", "fee": 10000, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "tx_index": 76, - "utxos_info": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca:1", + "utxos_info": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "memo": null, "asset_info": { "divisible": true, @@ -2209,7 +2209,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 } ], "next_cursor": null, @@ -2218,7 +2218,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "A95428956980101314", "quantity": 100000000000, "utxo": null, @@ -2226,14 +2226,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "MPMASSET", "quantity": 99999998960, "utxo": null, @@ -2241,14 +2241,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, "quantity_normalized": "999.99999000" }, { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "MYASSETA", "quantity": 97999999980, "utxo": null, @@ -2256,14 +2256,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, "quantity_normalized": "980.00000000" }, { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -2278,7 +2278,7 @@ "quantity_normalized": "826.49941000" }, { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "TESTLOCKDESC", "quantity": 9999990000, "utxo": null, @@ -2286,7 +2286,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -2299,7 +2299,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -2321,16 +2321,16 @@ "result": [ { "block_index": 207, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "event": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", "tx_index": 0, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150162, + "block_time": 1730152654, "asset_info": { "divisible": true, "asset_longname": null, @@ -2342,16 +2342,16 @@ }, { "block_index": 206, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "event": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150158, + "block_time": 1730152650, "asset_info": { "divisible": true, "asset_longname": null, @@ -2363,16 +2363,16 @@ }, { "block_index": 205, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "5cc312fce3a8f8432aea553285ab698a3d10185eafdb52df5723ee3ed378d751", + "event": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150154, + "block_time": 1730152636, "asset_info": { "divisible": true, "asset_longname": null, @@ -2384,20 +2384,20 @@ }, { "block_index": 201, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "MPMASSET", "quantity": 100000000000, "calling_function": "issuance", - "event": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", + "event": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", "tx_index": 68, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150139, + "block_time": 1730152620, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -2405,16 +2405,16 @@ }, { "block_index": 192, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 1000, "calling_function": "cancel order", - "event": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", + "event": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", "tx_index": 58, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150102, + "block_time": 1730152570, "asset_info": { "divisible": true, "asset_longname": null, @@ -2432,16 +2432,16 @@ "result": [ { "block_index": 207, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "event": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150162, + "block_time": 1730152654, "asset_info": { "divisible": true, "asset_longname": null, @@ -2453,16 +2453,16 @@ }, { "block_index": 204, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "event": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150151, + "block_time": 1730152632, "asset_info": { "divisible": true, "asset_longname": null, @@ -2474,20 +2474,20 @@ }, { "block_index": 204, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "event": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150151, + "block_time": 1730152632, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -2495,16 +2495,16 @@ }, { "block_index": 203, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", + "event": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150148, + "block_time": 1730152628, "asset_info": { "divisible": true, "asset_longname": null, @@ -2516,20 +2516,20 @@ }, { "block_index": 203, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", + "event": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", "tx_index": 70, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150148, + "block_time": 1730152628, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -2548,9 +2548,9 @@ "result": [ { "tx_index": 24, - "tx_hash": "6bb6a779b50b7a5f5e7f2eeb16d14bf3280a3bb411704fe10c8e4937e68590ac", + "tx_hash": "278eb0af25f68b3a6653ba0f2df33f974ff0da6c7104e66879b1e7398e7c5c0a", "block_index": 137, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -2558,7 +2558,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730149887, + "block_time": 1730152356, "fee_fraction_int_normalized": "0.00000000" } ], @@ -2569,14 +2569,14 @@ "result": [ { "tx_index": 0, - "tx_hash": "8ff0c2680710490b1c7c0269f3397e605b43865d2c911da53d7fa1a8ef46f050", + "tx_hash": "43020304a8d69e758c8cfe4f200d3db11286a5b782bdf8270be5b1ce40029012", "block_index": 112, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "burned": 50000000, "earned": 74999998167, "status": "valid", "confirmed": true, - "block_time": 1730149793, + "block_time": 1730152253, "burned_normalized": "0.50000000", "earned_normalized": "749.99998000" } @@ -2588,10 +2588,10 @@ "result": [ { "tx_index": 71, - "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "block_index": 204, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2599,7 +2599,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730150151, + "block_time": 1730152632, "asset_info": { "divisible": true, "asset_longname": null, @@ -2612,10 +2612,10 @@ }, { "tx_index": 71, - "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "block_index": 204, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2623,11 +2623,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730150151, + "block_time": 1730152632, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -2636,10 +2636,10 @@ }, { "tx_index": 71, - "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "block_index": 204, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2647,11 +2647,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730150151, + "block_time": 1730152632, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -2660,10 +2660,10 @@ }, { "tx_index": 70, - "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", + "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", "block_index": 203, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "quantity": 10, "status": "valid", @@ -2671,7 +2671,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730150148, + "block_time": 1730152628, "asset_info": { "divisible": true, "asset_longname": null, @@ -2684,10 +2684,10 @@ }, { "tx_index": 70, - "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", + "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", "block_index": 203, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2695,11 +2695,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730150148, + "block_time": 1730152628, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -2714,10 +2714,10 @@ "result": [ { "tx_index": 38, - "tx_hash": "1f020eae3e44998e380ea6141659b829120b8ba595664630b4ae8d51e6eb3ff2", + "tx_hash": "275ebb242af669ad747ac00fb26a598f640937588b85799a1d47bb4a881e4c86", "block_index": 151, - "source": "d94e197f2a619d264cc847eb0c6d0cc74b543b39ee3e674e770d01b6491332f0:0", - "destination": "bcrt1qg89hz5l72ck62vsg34dpc2fvtfgmuhna0e0t4c", + "source": "1470f4b572e577839544315fa7c74ff2ffcf96c223ad7652b4f6846af2f30a45:0", + "destination": "bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034", "asset": "MYASSETA", "quantity": 500000000, "status": "valid", @@ -2725,11 +2725,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730149952, + "block_time": 1730152407, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -2744,10 +2744,10 @@ "result": [ { "tx_index": 71, - "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "block_index": 204, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2755,11 +2755,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730150151, + "block_time": 1730152632, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -2768,10 +2768,10 @@ }, { "tx_index": 71, - "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "block_index": 204, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2779,11 +2779,11 @@ "memo": "memo2", "fee_paid": 0, "confirmed": true, - "block_time": 1730150151, + "block_time": 1730152632, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -2792,10 +2792,10 @@ }, { "tx_index": 70, - "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", + "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", "block_index": 203, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2803,11 +2803,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730150148, + "block_time": 1730152628, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -2816,10 +2816,10 @@ }, { "tx_index": 70, - "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", + "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", "block_index": 203, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -2827,11 +2827,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730150148, + "block_time": 1730152628, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -2840,10 +2840,10 @@ }, { "tx_index": 69, - "tx_hash": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c", + "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", "block_index": 202, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "MPMASSET", "quantity": 1000, "status": "valid", @@ -2851,11 +2851,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730150144, + "block_time": 1730152624, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -2875,9 +2875,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2886,7 +2886,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2896,7 +2896,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -2912,9 +2912,9 @@ }, { "tx_index": 62, - "tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", + "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", "block_index": 197, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -2923,7 +2923,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -2933,11 +2933,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730150120, + "block_time": 1730152599, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -2954,9 +2954,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -2965,7 +2965,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2975,7 +2975,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -2995,19 +2995,19 @@ { "tx_index": 63, "dispense_index": 0, - "tx_hash": "541f0fb85b7dbc11dc47a5535cee583b4066f143b1409c77dd9d39d0d60f6af8", + "tx_hash": "106579c58f047e17b477ed29537a950c9bd5764e11e554aecd245d2b34c593bb", "block_index": 197, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", + "dispenser_tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3015,7 +3015,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3030,11 +3030,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730150120, + "block_time": 1730152599, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -3044,19 +3044,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", + "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3064,7 +3064,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3079,7 +3079,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -3093,19 +3093,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", + "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", "block_index": 140, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3113,7 +3113,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3128,7 +3128,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149900, + "block_time": 1730152367, "asset_info": { "divisible": true, "asset_longname": null, @@ -3148,19 +3148,19 @@ { "tx_index": 63, "dispense_index": 0, - "tx_hash": "541f0fb85b7dbc11dc47a5535cee583b4066f143b1409c77dd9d39d0d60f6af8", + "tx_hash": "106579c58f047e17b477ed29537a950c9bd5764e11e554aecd245d2b34c593bb", "block_index": 197, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", + "dispenser_tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3168,7 +3168,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3183,11 +3183,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730150120, + "block_time": 1730152599, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -3197,19 +3197,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", + "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3217,7 +3217,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3232,7 +3232,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -3246,19 +3246,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", + "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", "block_index": 140, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3266,7 +3266,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3281,7 +3281,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149900, + "block_time": 1730152367, "asset_info": { "divisible": true, "asset_longname": null, @@ -3301,19 +3301,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", + "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3321,7 +3321,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3336,7 +3336,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -3350,19 +3350,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", + "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", "block_index": 140, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3370,7 +3370,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3385,7 +3385,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149900, + "block_time": 1730152367, "asset_info": { "divisible": true, "asset_longname": null, @@ -3405,19 +3405,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", + "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3425,7 +3425,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3440,7 +3440,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -3454,19 +3454,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", + "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", "block_index": 140, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3474,7 +3474,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3489,7 +3489,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149900, + "block_time": 1730152367, "asset_info": { "divisible": true, "asset_longname": null, @@ -3508,16 +3508,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", + "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", "block_index": 194, - "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730150109, + "block_time": 1730152588, "fee_paid_normalized": "0.00600000" } ], @@ -3528,14 +3528,14 @@ "result": [ { "tx_index": 68, - "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", + "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -3550,20 +3550,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730150139, + "block_time": 1730152620, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "bfaad85954beda99abea4a7010a07447599bbf6f22ea125e30ed294c7f5218f0", + "tx_hash": "9e318339eedce8001504b264f6284e226cd64f7682b8d8516c334f650d696d1a", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -3578,20 +3578,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730149990, + "block_time": 1730152454, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "05689fcc47dfef00b3da5ab26a1b46ea1887fa933a6f6903acb19faf207eca1f", + "tx_hash": "45cb917d16df66648e5f28c6c2bd440fe45d164add86d0e42b41da39eb7f0556", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -3606,20 +3606,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730149986, + "block_time": 1730152441, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "b9a6fb371b7caf85edb70d0c373d91aad170224779eb8f3effcbeec5ea512deb", + "tx_hash": "ac506b92d017443f43af978440e014edeebaeb005ef74872f0a538268c655b9e", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -3634,20 +3634,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730149983, + "block_time": 1730152437, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 45, - "tx_hash": "6e5931b93013418aa0a6e7540e41bec82e1bd61e68f03b4f0488178a69c2f131", + "tx_hash": "9083ecad51d2ce0aeb1ab41b80c7db2a58cda52c3031dfb8b79d2bb2689cf70a", "msg_index": 0, "block_index": 158, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -3662,7 +3662,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730149979, + "block_time": 1730152434, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -3676,8 +3676,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 100000000000, @@ -3685,16 +3685,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730150139, - "last_issuance_block_time": 1730150139, + "first_issuance_block_time": 1730152620, + "last_issuance_block_time": 1730152620, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 10000000000, @@ -3702,16 +3702,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730149979, - "last_issuance_block_time": 1730149986, + "first_issuance_block_time": 1730152434, + "last_issuance_block_time": 1730152441, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 100000000000, @@ -3719,16 +3719,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730149941, - "last_issuance_block_time": 1730149941, + "first_issuance_block_time": 1730152396, + "last_issuance_block_time": 1730152396, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 40, @@ -3736,16 +3736,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730149878, - "last_issuance_block_time": 1730149883, + "first_issuance_block_time": 1730152348, + "last_issuance_block_time": 1730152352, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 19, @@ -3753,8 +3753,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730149865, - "last_issuance_block_time": 1730149874, + "first_issuance_block_time": 1730152322, + "last_issuance_block_time": 1730152344, "supply_normalized": "0.00000019" } ], @@ -3767,8 +3767,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 100000000000, @@ -3776,16 +3776,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730150139, - "last_issuance_block_time": 1730150139, + "first_issuance_block_time": 1730152620, + "last_issuance_block_time": 1730152620, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 10000000000, @@ -3793,16 +3793,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730149979, - "last_issuance_block_time": 1730149986, + "first_issuance_block_time": 1730152434, + "last_issuance_block_time": 1730152441, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 100000000000, @@ -3810,16 +3810,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730149941, - "last_issuance_block_time": 1730149941, + "first_issuance_block_time": 1730152396, + "last_issuance_block_time": 1730152396, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 40, @@ -3827,16 +3827,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730149878, - "last_issuance_block_time": 1730149883, + "first_issuance_block_time": 1730152348, + "last_issuance_block_time": 1730152352, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 19, @@ -3844,8 +3844,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730149865, - "last_issuance_block_time": 1730149874, + "first_issuance_block_time": 1730152322, + "last_issuance_block_time": 1730152344, "supply_normalized": "0.00000019" } ], @@ -3858,8 +3858,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 100000000000, @@ -3867,16 +3867,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730150139, - "last_issuance_block_time": 1730150139, + "first_issuance_block_time": 1730152620, + "last_issuance_block_time": 1730152620, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 10000000000, @@ -3884,16 +3884,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730149979, - "last_issuance_block_time": 1730149986, + "first_issuance_block_time": 1730152434, + "last_issuance_block_time": 1730152441, "supply_normalized": "100.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 100000000000, @@ -3901,16 +3901,16 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730149941, - "last_issuance_block_time": 1730149941, + "first_issuance_block_time": 1730152396, + "last_issuance_block_time": 1730152396, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 40, @@ -3918,16 +3918,16 @@ "first_issuance_block_index": 135, "last_issuance_block_index": 136, "confirmed": true, - "first_issuance_block_time": 1730149878, - "last_issuance_block_time": 1730149883, + "first_issuance_block_time": 1730152348, + "last_issuance_block_time": 1730152352, "supply_normalized": "0.00000040" }, { "asset": "FAIRMINTC", "asset_id": "1046814266084", "asset_longname": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 19, @@ -3935,8 +3935,8 @@ "first_issuance_block_index": 131, "last_issuance_block_index": 134, "confirmed": true, - "first_issuance_block_time": 1730149865, - "last_issuance_block_time": 1730149874, + "first_issuance_block_time": 1730152322, + "last_issuance_block_time": 1730152344, "supply_normalized": "0.00000019" } ], @@ -3947,17 +3947,17 @@ "result": [ { "tx_index": 74, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a", - "block_time": 1730150162, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae", + "block_time": 1730152654, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000100000000000003e8000000000000000000000000000003e800150000000000000000", "supported": true, - "utxos_info": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", + "utxos_info": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", "confirmed": true, "unpacked_data": { "message_type": "order", @@ -3993,17 +3993,17 @@ }, { "tx_index": 71, - "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "block_index": 204, - "block_hash": "3906807db0d56b9fec78f5982ba29d4512f200a4769bb4153d83c94df666c0a4", - "block_time": 1730150151, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "0fc24941821562dd4e60166d7e8ad1cbc45b7b430459c9a48264e114924458db", + "block_time": 1730152632, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d630d477df0f6e07f91e8949433310400b60dd35803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e240000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b440000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4:0", + "utxos_info": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4011,14 +4011,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4026,7 +4026,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4045,17 +4045,17 @@ }, { "tx_index": 70, - "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", + "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", "block_index": 203, - "block_hash": "5b2cb939f6b6a782be5829b4a32d310f3e8b11c136ebed663d064b28e5700f62", - "block_time": 1730150148, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "722ff4f47c82493fc6b30fa306d6a1be83cf3d3e17d6efb4e1bcf1ab0f1fa3c3", + "block_time": 1730152628, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d630d477df0f6e07f91e8949433310400b60dd35803eb72a4136323ae914b5e511d43a96fe66f85c55803c9e235caa5be4be07a3dfbf730d21c096c653e288746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003805511f1f6819b94a0094d338694640cbee5b8969d80a7571097c4fb8e6abca791ff02187aaecf8530ec802f97d5f43cfda62fa2b92fe2d2b1dcd874e475b488746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109:0", + "utxos_info": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b:0", "confirmed": true, "unpacked_data": { "message_type": "mpma_send", @@ -4063,14 +4063,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4078,7 +4078,7 @@ }, { "asset": "XCP", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -4097,17 +4097,17 @@ }, { "tx_index": 69, - "tx_hash": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c", + "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", "block_index": 202, - "block_hash": "4def8f3f53efebbf9574a397c76511feff3e10ee36a643847e7619aa265947fa", - "block_time": 1730150144, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "79b4c1c873594bc980c6c6d4733edf015c77175fae846e37158cbc393a56609d", + "block_time": 1730152624, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d630d477df0f6e07f91e8949433310400b60dd35", + "data": "02000000178d82231300000000000003e8805511f1f6819b94a0094d338694640cbee5b8969d", "supported": true, - "utxos_info": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c:1", + "utxos_info": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf:1", "confirmed": true, "unpacked_data": { "message_type": "enhanced_send", @@ -4115,12 +4115,12 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4131,17 +4131,17 @@ }, { "tx_index": 68, - "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", + "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", "block_index": 201, - "block_hash": "283a8824308fb868afc9759ec62e9714ff889dbf79c0e6a5b9aa0d6f7d4b906a", - "block_time": 1730150139, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "block_hash": "7aefd1926dfc5229ca8b4f5f928c519809b6544393fcc22c1be0ed4e0823a910", + "block_time": 1730152620, + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305:1", + "utxos_info": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb:1", "confirmed": true, "unpacked_data": { "message_type": "issuance", @@ -4172,20 +4172,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", + "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", "block_index": 154, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730149962, + "block_time": 1730152419, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4207,9 +4207,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", + "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", "block_index": 184, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4224,7 +4224,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730150014, + "block_time": 1730152467, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4250,9 +4250,9 @@ }, { "tx_index": 51, - "tx_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", "block_index": 207, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -4267,7 +4267,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730150162, + "block_time": 1730152654, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4293,9 +4293,9 @@ }, { "tx_index": 57, - "tx_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", + "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", "block_index": 192, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4310,7 +4310,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730150102, + "block_time": 1730152570, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4336,9 +4336,9 @@ }, { "tx_index": 59, - "tx_hash": "13047cb4dab1b0ba2151ae8e16379cc2b16fb4bb8f63e8c0f205359d365a62a2", + "tx_hash": "b5909bb972e8db050ad13378b2bb33e60dcf58c0e358ef41f60556c84f4beb1f", "block_index": 193, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4353,7 +4353,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730150106, + "block_time": 1730152583, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4379,9 +4379,9 @@ }, { "tx_index": 74, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -4396,7 +4396,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730150162, + "block_time": 1730152654, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -4427,10 +4427,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "93dee74a73fd75a2b609a0b4cd62839d0d254025bf44bcb5513cad7d35bfa6f3", + "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", "tx_index": 42, "block_index": 155, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -4455,7 +4455,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730149965, + "block_time": 1730152422, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4464,10 +4464,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", + "tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -4492,7 +4492,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730149878, + "block_time": 1730152348, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4504,10 +4504,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", + "tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -4532,7 +4532,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730149865, + "block_time": 1730152322, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4544,10 +4544,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "0e2c46ac44f390ff6b06d99469bca85858fa064feb09b8c2ef799039d36dfa3f", + "tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -4572,7 +4572,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730149860, + "block_time": 1730152319, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4584,10 +4584,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", + "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -4612,7 +4612,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730149841, + "block_time": 1730152299, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -4630,22 +4630,22 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", + "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149883, + "block_time": 1730152352, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4654,22 +4654,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "fda34c124d140677eccc10bdff0dc1cac5550cd210cdabf0ec3cac7f5621c72d", + "tx_hash": "ff6f27751d9a86791bebbfbdf6c94db117df2b3f2193fb80951f246a234aec33", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149874, + "block_time": 1730152344, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4678,22 +4678,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "1a79feb1b1b318e55f4b6836518ac7315c78fc94029d4bfbe2e66f0341f3d69d", + "tx_hash": "d8a0233a8d8e6e63a86f2762bdcd19f395771e948e9d9fd91e4131cf9b4b466c", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149871, + "block_time": 1730152329, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4702,22 +4702,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "52aa1faf5394a028bd06452893acd47a19a81f90b3984c7546cf5c0fa205f190", + "tx_hash": "9cbbbc1ba5c0c6a6a4766e5b10e4e35fe2772e4e9a4ac36a36fe0e0239c134f8", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149868, + "block_time": 1730152326, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4726,22 +4726,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "d1586440adceece4e92b7437fba4cba5a60fe7b2bd73cef159abc829572d7f76", + "tx_hash": "cd779281665ec54a0657c909a5a5888c98253660c075af8adf487672735a1d69", "tx_index": 15, "block_index": 127, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "0e2c46ac44f390ff6b06d99469bca85858fa064feb09b8c2ef799039d36dfa3f", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149849, + "block_time": 1730152307, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4750,22 +4750,22 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", + "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149834, + "block_time": 1730152293, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4780,22 +4780,22 @@ "/v2/addresses/
/fairmints/": { "result": [ { - "tx_hash": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", + "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149834, + "block_time": 1730152293, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4812,8 +4812,8 @@ { "asset": "XCP", "quantity": 1500000000, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "asset_info": { "divisible": true, "asset_longname": null, @@ -4826,12 +4826,12 @@ { "asset": "MYASSETA", "quantity": 1500000000, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -4847,7 +4847,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -4859,7 +4859,7 @@ "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "02000000000101a16813c6cbda4394caf28ebf52642d8f4c3a0951615e5c3c2714fb2d5edb99c10000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff0200000000000000002b6a29fb22783a08b808d57fec85d10dc4cc7474cc5c11299d8be14b5c6f6c63ec479d7d89ded2d8dbb6129383ba052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "020000000001016bbdac07a76d292a49995d8bf8de89da525d9b32d2ab29a52feb98c105f20576000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff0200000000000000002b6a29b93f99a28b4bb16aef7b085834e88cc7ffc295c6ea9bc30651365677485eea265eb32240ea4dc2f70483ba052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "broadcast", "message_type_id": 30, @@ -4877,23 +4877,23 @@ "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1" + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8" }, "name": "btcpay", - "data": "434e5452505254590bbee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82ef9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "data": "434e5452505254590b0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca436714468448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "btc_in": 5000000000, "btc_out": 3000, "btc_change": 4999978921, "btc_fee": 18079, - "rawtransaction": "02000000000101b7bdde1323902defae298dc5e6725026dcd9e92e8d6df8a467b1ae2f8f65a98c0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff03b80b00000000000016001453acd20b89492c54642d81b92cdc32862046ce7100000000000000004b6a496c56d1b9cc9c99f2c1186c78fce1461d1a4885cc655bb120d5e2d15f68776717d357c5ebc0617e4cbad496680db286dff338ee270e42da36772480c28e54fcafb6cf980d3ed8395f8aa99f052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "020000000001013ba8474dba78d5b2a7418f254db65d0f667eb6846cf0a2d1a37fec518310b597000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff03b80b0000000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a100000000000000004b6a4975cbfbf03e30e31bb5e20d495fb01c2653599b2a09b993f3207ec6a8201d7607d5182a30e2d2fa8df227d622eecd6eb3b30958a79f37fd67972e55d5fc313b9c11b791efbb1facff6ca99f052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", - "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "status": "valid" } } @@ -4902,7 +4902,7 @@ "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "quantity": 1000, "overburn": false }, @@ -4912,27 +4912,27 @@ "btc_out": 1000, "btc_change": 4999985793, "btc_fee": 13207, - "rawtransaction": "0200000000010131fa73b5d4effef47223f586d146bcdb01a1b5ca74702206aa2c981f0c1bef380000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000" + "rawtransaction": "02000000000101b2eea65ffc130ffefef3cddf867d62b6a3a3d85413826b0f9a9bec147e2af13f000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac81ba052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "offer_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830" + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "offer_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b" }, "name": "cancel", - "data": "434e54525052545946affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "data": "434e5452505254594694d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985795, "btc_fee": 14205, - "rawtransaction": "02000000000101986b752aa9bcf253eb6166b125bc4b962fb4be72afcfedfb5bea6db7124013420000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff0200000000000000002b6a29a264c680ff8488221489027a95d43a65eb06c19f524ee1ec0933808007294988a829a932c94f1bf3c983ba052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "020000000001017607181c41ad743b880f28175184e2c04167fd1d94fd25a7209c9ea321fb3887000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff0200000000000000002b6a29303ebad3021b4d6138b5db967d05db545eedba6d0c675259c45a095f6fd75b9424d81427e4e3aaa10e83ba052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "offer_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "status": "valid" } } @@ -4941,7 +4941,7 @@ "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -4960,7 +4960,7 @@ "btc_out": 0, "btc_change": 4999986323, "btc_fee": 13677, - "rawtransaction": "020000000001016b1b80af5d849670ff64fd6d4049b93d30ee541dfa6d8a6fdb417b9570aae5db0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000226a20a2c8663360f1bf8191fc65393b59e5780de29514e6b3271b33778308bdb2b89693bc052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "02000000000101187d4666a3e0d464a2bfa34950f8e7420dc6a833e8186850829a30dbb5ddc164000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000226a2094d7a3f3bbcd35ff65faa7e260b5ef6c46b4bb390ea97ca5c8ec89f01b2ffc9493bc052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "destroy", "message_type_id": 110, @@ -4974,19 +4974,62 @@ } }, "/v2/addresses/
/compose/dispenser": { - "error": "invalid UTXO: 508340a6b50309287c608280e281aeb60e7fdb44401c73cc2d824350a587a82b:0" + "result": { + "params": { + "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "asset": "XCP", + "give_quantity": 1000, + "escrow_quantity": 1000, + "mainchainrate": 100, + "status": 0, + "open_address": null, + "oracle_address": null, + "asset_info": { + "divisible": true, + "asset_longname": null, + "description": "The Counterparty protocol native currency", + "locked": true, + "issuer": null + }, + "give_quantity_normalized": "0.00001000", + "escrow_quantity_normalized": "0.00001000" + }, + "name": "dispenser", + "data": "434e5452505254590c000000000000000100000000000003e800000000000003e8000000000000006400", + "btc_in": 4949934500, + "btc_out": 0, + "btc_change": 4949920236, + "btc_fee": 14264, + "rawtransaction": "02000000000101d1c09a210e2f9eb576d8d0c26d620bd0524b583f80fab9276b3596b96e02afae01000000160014da3f874dd1752afc2255c5a8d149ba44da1c5a7effffffff0200000000000000002c6a2a727cb1709e366477fd16c83cc5d4d3816740f1707e9354508ff03c7fc05a03221c9533b31becd82add28ecc9092701000000160014da3f874dd1752afc2255c5a8d149ba44da1c5a7e02000000000000", + "unpacked_data": { + "message_type": "dispenser", + "message_type_id": 12, + "message_data": { + "asset": "XCP", + "give_quantity": 1000, + "escrow_quantity": 1000, + "mainchainrate": 100, + "dispenser_status": 0, + "action_address": null, + "oracle_address": null, + "status": "valid", + "give_quantity_normalized": "0.00001000", + "escrow_quantity_normalized": "0.00001000" + } + } + } }, "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "quantity_per_unit": 1, "asset": "FAIRMINTA", "dividend_asset": "XCP", "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -5005,7 +5048,7 @@ "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "0200000000010174b414fd30c96205105a31a703c8fbb63ee940861fff7e19d57d4b7fb76d69730000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000236a21fe12993920573aa7800ba36b3bd9522137afd716c44bfcb0bcc426a6895ac1a21858bc052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "02000000000101bccddcc7c292c9f93bd0a857d43e2f251b8660b79784967209514551c8d90556000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000236a2116d6d2bf8ee338938cd8bb42921a91b70dcb91491707280fba52b2d7971bd7428158bc052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "dividend", "message_type_id": 50, @@ -5022,10 +5065,10 @@ "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "transfer_destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "lock": false, "reset": false, @@ -5038,7 +5081,7 @@ "btc_out": 546, "btc_change": 4999983723, "btc_fee": 15731, - "rawtransaction": "02000000000101e1a3f1ada3217a1505637717ee8298f57e874e534b68690dcf8495fae60e5aa20000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff03220200000000000016001453acd20b89492c54642d81b92cdc32862046ce710000000000000000236a21844f5e277f678854121c6312b80487336a152fb17918ba74747fdb06c3b8a2e2806bb2052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "02000000000101139de7476f55fdf21e92052391719656f33b7347ea131643e6b1453a536795c7000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff0322020000000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a10000000000000000236a21ceeba0a4b3fe260c096002670704f57eedf714525e8020461d52d24f2d7fbe50646bb2052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "issuance", "message_type_id": 22, @@ -5063,16 +5106,16 @@ "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", 1 ], [ "MPMASSET", - "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", 2 ] ], @@ -5080,26 +5123,26 @@ "memo_is_hex": false }, "name": "mpma", - "data": "434e5452505254590300028053acd20b89492c54642d81b92cdc32862046ce7180d630d477df0f6e07f91e8949433310400b60dd3540000005e36088c4d000000000000000240000000000000004000000000000000100", + "data": "434e545250525459030002807967f0a0bd9d33804ecfac05d869b2782a3467a1805511f1f6819b94a0094d338694640cbee5b8969d40000005e36088c4d000000000000000240000000000000004000000000000000100", "btc_in": 20000000000, "btc_out": 2000, "btc_change": 19999945404, "btc_fee": 52596, - "rawtransaction": "02000000000104f774d36dff6d2786ec3b57ebb0c6dc5065f653e1a3ec007e66c21e21d46ffde50000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffffae4dd615d91336a8690b9aafe0e1617c1f4355e4be5d4bac09edb74e9cf4f2ce0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff70a2fb38ffc69b48d06226cc480565f32dbca5e1fef2979a796d755368803f8a0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff90eb00cdf8c1ac8e43f29ea7d3b81dec006bb3f0eedfb730221e77b51b494ff50000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff03e80300000000000069512102f15bddc977261dc0ca449e10c45d3c04ddd4ec9108e620c3285d352902e80a0f21034a588fe557248f340c1a13a5e3cba2211108b8c5b8f23f48d246f28c19a92d4221026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c53aee80300000000000069512103ee5bddc977261dc0ca979e12440e90d6d679a5bd5c820d429175e91b84c84c38210384290e3367f0f8eb0374145cfd42eb622218f8ced82f0a08d246f76f7921e9c721026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c53aebcf216a80400000016001453acd20b89492c54642d81b92cdc32862046ce7102000002000002000002000000000000", + "rawtransaction": "020000000001049e5f6c01f025eb801bd2f83123f1fbe1bc26d82731c5e989f8827fd1c96545ca000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1fffffffff1945c0490ae4bbe569a4e9478ec268003a1461dd53616cbc78fa81d421f8ee6000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1fffffffffa6f704e1baaf5c6952e2ea6c20f6981d6dc033886747b9cf110bf2877cd5b1a000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffffe4f980087f32a896e9ad9c82620f463004e29fc7dfad97e2a3ee49ab2d75c415000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff03e80300000000000069512102f405a8ba5cf6a2b810a6c3550b257049f2d6e1b083639fb7cdf85a7788a4b72d210255bb00ed856a417842a099b3da1b48400df47e096af35ec60cb900f2caafc54d2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aee80300000000000069512102eb05a8ba5cf6a2b81075c3578b5c17b9524f7c83032d501bc82433c5f08e835c2103321a81b8949bb7f9d93439ba9728ced469f8c0ecd265c3860cb90511aa2701df2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aebcf216a8040000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000002000002000002000000000000", "unpacked_data": { "message_type": "mpma_send", "message_type_id": 3, "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "quantity": 2, "memo": null, "memo_is_hex": null }, { "asset": "XCP", - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "quantity": 1, "memo": null, "memo_is_hex": null @@ -5111,7 +5154,7 @@ "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "FAIRMINTA", @@ -5128,7 +5171,7 @@ "get_asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -5142,7 +5185,7 @@ "btc_out": 0, "btc_change": 4999985208, "btc_fee": 14792, - "rawtransaction": "020000000001018a5431282e296f8f6ec31997a9a19adbe0256760f91162762bd13197339dd29b0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000356a336e82d0e5da1fae99227559bc259661cd39188bfb165d81e7842d2f24bd003797730b4ff853fffad533e50faf2511417376206738b8052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "02000000000101ab499e5a3d8196519c12febc23e233920eb19d00e35c78dca0789e44b26cdac2000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000356a33bece1d3d171adcd7284dfef1ab9a46411240de9c5909b634b7850938f967c24dbdbf6ce5d336636d946de16548c2ee67eca42a38b8052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "order", "message_type_id": 10, @@ -5164,8 +5207,8 @@ "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "quantity": 1000, "memo": null, @@ -5181,19 +5224,19 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d630d477df0f6e07f91e8949433310400b60dd35", + "data": "434e54525052545902000000000000000100000000000003e8805511f1f6819b94a0094d338694640cbee5b8969d", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999985501, "btc_fee": 14499, - "rawtransaction": "020000000001018ce1dac28e46b9ffc500532f032c7b6a095ded5eed19562e548949cae92e26e20000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000306a2e751a14448bb75f0b213c510aec235f87d66fe6f5f5838ab19907721972b931a89ce9785511175d1b89d9cbe364525db9052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "02000000000101b2623bad63243f7a0e974d94b0c223add9b0b80a5e255266b92ba264c7a45311000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000306a2ea21d7eb608cf78cca691ce6c36f4842f50d439486b60d2e6b88abcceecd2cedf427af27fa2b7385ff2398e091e045db9052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 1000, - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "memo": null, "quantity_normalized": "0.00001000" } @@ -5203,23 +5246,23 @@ "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "flags": 7, "memo": "FFFF" }, "name": "sweep", - "data": "434e5452505254590480d630d477df0f6e07f91e8949433310400b60dd3507ffff", + "data": "434e54525052545904805511f1f6819b94a0094d338694640cbee5b8969d07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 4999986264, "btc_fee": 13736, - "rawtransaction": "020000000001012bf41b5b20cc150647aacd5020b3a1b707d3fb13e5e428d3687f2ce64096877b0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000236a215169fbeea60c9864d21a2671087cf6509cde7a5985eab95d76ca13d34b6cd7008258bc052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "02000000000101cf72977222916e5cfff737c5d75904919a603da30c94d8ca213d849c9728dd9b000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000236a2190fbdb1d8fa53db0eb2a8fc10d632c18bddc537f624460499580413ae7e1bfc5bd58bc052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "flags": 7, "memo": "ffff" } @@ -5229,8 +5272,8 @@ "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "quantity": 1000 }, "name": "dispense", @@ -5239,7 +5282,7 @@ "btc_out": 1000, "btc_change": 4949812619, "btc_fee": 14381, - "rawtransaction": "02000000000101b5ee039444727c228f35e9c208bf7373e34d240942221db5ee97bf1a306046d003000000160014d630d477df0f6e07f91e8949433310400b60dd35ffffffff03e8030000000000001600143c9e235caa5be4be07a3dfbf730d21c096c653e200000000000000000c6a0ae8fe42d79e54765e9b2d8b25082701000000160014d630d477df0f6e07f91e8949433310400b60dd3502000000000000", + "rawtransaction": "02000000000101065e2fae24d3ed96a884712623a3a8e194a3cdde3cb588023317f389f6ba83df030000001600145511f1f6819b94a0094d338694640cbee5b8969dffffffff03e8030000000000001600142f97d5f43cfda62fa2b92fe2d2b1dcd874e475b400000000000000000c6a0a2e4844bdce5321afdbce8b250827010000001600145511f1f6819b94a0094d338694640cbee5b8969d02000000000000", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -5252,7 +5295,7 @@ "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -5283,7 +5326,7 @@ "btc_out": 0, "btc_change": 4999985443, "btc_fee": 14557, - "rawtransaction": "02000000000101f94a34858f6216ab91942f2962dd5a888e4824b0fb03395484d045bed53428d80000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000316a2fa06d07855f57ad2eca0b372207b3d4ce15a16b0d1f95d679727d1933bac64c4e38649fe4b99c73651a71df87c7741623b9052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "02000000000101ab2eb3e3483c4039cce505f85cc0563cd331a85d45dff80d9bf880fe20828bb2000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000316a2f0dec8a46d77959fb639a45d020ade0350620490390b08869ef4325180cb952a68b03d1100c753808ff73cd2066b25e23b9052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "fairminter", "message_type_id": 90, @@ -5318,13 +5361,13 @@ "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "FAIRMINTC", "quantity": 1, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -5336,7 +5379,7 @@ "btc_out": 0, "btc_change": 4999987028, "btc_fee": 12972, - "rawtransaction": "0200000000010160bf483bfb75fd9aff99462c31a13a8dffe086ce6de938b617206815e38d0af60000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff020000000000000000166a14431570188731b14184fc873f882909c90af214c054bf052a0100000016001453acd20b89492c54642d81b92cdc32862046ce7102000000000000", + "rawtransaction": "02000000000101268cd03227a87269a296132dced7a43ec578c67b187578cdda41ab4861774127000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff020000000000000000166a14eebd7268248a3ec571ad08ef295683791a5dd5c154bf052a010000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000000000000", "unpacked_data": { "message_type": "fairmint", "message_type_id": 91, @@ -5351,8 +5394,8 @@ "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830:1", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b:1", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5365,12 +5408,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e5452505254596462637274317132776b64797a756666796b39676570647378756a6568706a73637379646e6e336767767537307c616666623438313266616261303838393433333738643339383838383562333566653137393634626531353337306362323833613038663634393563383833303a317c5843507c31303030", + "data": "434e5452505254596462637274317130396e6c706739616e356563716e6b3034737a617336646a30713472676561703561377539737c393464323835333663333666383932316563353335643561336532633533386665613265306561663936663138663536666536323861323436376233636435623a317c5843507c31303030", "btc_in": 30000000000, "btc_out": 3000, "btc_change": 29999918400, "btc_fee": 78600, - "rawtransaction": "020000000001062ea2715c88439687e9a5ff953de075a8f14e66ef5dd3e11e6e02f4c09d460a060000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff875b3b180194df32dd19fa9503d98c50efaae911f6f667150073d0e293a2d4860000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffffd20d5edc36a6ae19fcb6427a85cc2989aedb154a44df36fcabe59e0a83c7104b0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffffd5a13b826bd404c64e6ac6f7e64f35f1762c1d8250e01d979ddb9b948c84bb1c0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff572ea89ef5b2eb4c6aef192ffebc64a3adb4cf84f192744333f4d1f8ed07bc5b0000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffffd994dcbf7384a57c44b7563bab1a21bf09bd5696bc41187bd542221ec1bd6ee20000000016001453acd20b89492c54642d81b92cdc32862046ce71ffffffff04e803000000000000695121034a53d463f8074cff8f62ebb7222c1c0f6cd9aadbff200c01c5833d621a3cf6dd2102b960e4c6250bc80798cab6b3ee86bea7e2475b6280720a36e80c8af4deaca88921026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c53aee803000000000000695121034a53d463f8074cff8f34efb532391d466697f58cb56d410390c36e634561b34c2102bf20a9d52a5f974ec48db7a5a6d7e3fee1435e26cd765b7ab10cdaa2d3a1fa8821026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c53aee803000000000000695121026053d463f8074cff8f3eb1e760621c0206ed91c3b76a4957a3fa565b7d5986842103dd139cb34f6ea077f2b9d5c097e2d0c9d1203c14f5453a4a896aec96ea94996b21026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c53ae406d22fc0600000016001453acd20b89492c54642d81b92cdc32862046ce7102000002000002000002000002000002000000000000", + "rawtransaction": "02000000000106ca9abaac6407cea4a26e4325a5b6b605c16a5f49ad8b20edb751d3f839e60f01000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff2b86ecbeb4d73419de2ce8914ce12bc97ad3c5f326f3974cc97b9b093a3a7286000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff5efbf12951347af1bc0c104cf84743ee371bbf9077467d9da40739605f1e7c7b000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff10fe6ccda7c1f8982d6c4e3ff1bbe67e2821d56b3b69cba67ccfd95d0d080b28000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff101bb44012e5c305a391479949891b545cbdbd18c3e2f7116a1854b927bcea27000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffffb0d9bedd8c9fdd0eadc8ba2c4a7d994422c13be06f07d20dc8f80ad0497d221d000000001600147967f0a0bd9d33804ecfac05d869b2782a3467a1ffffffff04e80300000000000069512103db6eed4d1970d0de5bf33f4147e75816cf60917a132dbe1fd32db973c4ef5847210387118c8bf69ca93d3ddb93f8b8d0f234f045d2b0dab2d5cac29c2aba24522f1d2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aee80300000000000069512102db6eed4d1970d0de5ba13e1103f5515ecd689a755679b21a8879ef7587e206ac2102841d9994f6ddfa69328a84f5fcd1a66de64585e1cabd948e9a9a7abe2b052f502103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053aee80300000000000069512103f16eed4d1970d0de5bf4391757a9581ba71aaf6a527ab74ebd18dc10b58133e32103b725fff197ef9f5957ebe2cccab797558070b387af8ba6b6fba84e881c671c9d2103be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d50053ae406d22fc060000001600147967f0a0bd9d33804ecfac05d869b2782a3467a102000002000002000002000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5383,8 +5426,8 @@ "/v2/utxos//compose/detach": { "result": { "params": { - "source": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 1000, "asset_info": { @@ -5397,12 +5440,12 @@ "quantity_normalized": "0.00001000" }, "name": "utxo", - "data": "434e54525052545964616539623565373039643434363366653765626466343131633439313165313266646539393439373434306636623965366430626432653566663135323935623a307c62637274317132776b64797a756666796b39676570647378756a6568706a73637379646e6e336767767537307c5843507c31303030", + "data": "434e54525052545964323432353561353564363832353735323130626261393164616434666538643536336138316664346234663137353665343164633566636538643966383865373a307c62637274317130396e6c706739616e356563716e6b3034737a617336646a30713472676561703561377539737c5843507c31303030", "btc_in": 4950080000, "btc_out": 3000, "btc_change": 4950030275, "btc_fee": 46725, - "rawtransaction": "02000000000103ba847062b0903b9fccc451378ce19ea4f04d786f938502bed3c9b48eba351337010000001600149e3d73cf180ab4652f14e45d6dd17012e1442b00fffffffffce41e62934b44d48ddc1fc02758f3d1f4898f0fb9bd9d9bfa9258eed64bad5f000000001600149e3d73cf180ab4652f14e45d6dd17012e1442b00ffffffffe725dd965df10a780a6d4fab6722ab9bbe0cc75862621fae38a6c22b5f52a401010000001600149e3d73cf180ab4652f14e45d6dd17012e1442b00ffffffff04e8030000000000006951210394b23fa5321e236b5f9911eea827ac480b5b4160bff8810db7bbdd6b405d64d8210262dfb957d1153681a831349d36375941f8881095bf5281a956844ed8a2dc2b3c2102cb42db2ff4f01f61ce4d4f401f6af5315110c4ff80e640b55fd27915d822287253aee8030000000000006951210394b23fa5321e236b5f9942eea423ff1c09594131e9f68742b3bd987a134830bf21022185ec4d9f5961d6b46b3f9c3722040bb4c44dc4e3128dec57ce528aa8827a6f2102cb42db2ff4f01f61ce4d4f401f6af5315110c4ff80e640b55fd27915d822287253aee80300000000000069512103beb23fa5321e236b5f9a17fde472a95164282878bafc870ed1deea0e2239029e210356ee8834e52c07b0cd0006fb52526078ccb127a18b62e79f34bd2beec6ec49ac2102cb42db2ff4f01f61ce4d4f401f6af5315110c4ff80e640b55fd27915d822287253aec3770b27010000001600149e3d73cf180ab4652f14e45d6dd17012e1442b0002000002000002000000000000", + "rawtransaction": "0200000000010300dce77bb944104741936aa0b2b4b265b003e9de46966f0d609e03bc7b0b968901000000160014f9f761de6a26b38c86a3f54543766007cab6e30ffffffffffdbd816d4d7e0daa457fcbda1e6f3ec2bd72cdf3639c9bcafb60916c861b28e300000000160014f9f761de6a26b38c86a3f54543766007cab6e30fffffffff940d2ffcf377a103eb93ce0505be650e0aef5a5f64e5701e6aeeb1560331a58001000000160014f9f761de6a26b38c86a3f54543766007cab6e30fffffffff04e80300000000000069512103c010e4c250f47059c81bf89b12fd3195b90f36696ef58e25d277a20a1ed3deda2103b8e00811d3b48a87c103c6bf3db54b399759dee65ada72df8c304d2ed768e69321038eb56f40d73925b3d8f96921e3476fd17e0f73b12a6d015e7d44353f2e12637a53aee80300000000000069512103c010e4c250f47059c84aaccc45f060cdea026a3a61fd8b6e8526e14e4dc08fba2102b8bf0000d0b98d8ccc0290f860bf433c82478bf758d829d8c8325a7d836df5b621038eb56f40d73925b3d8f96921e3476fd17e0f73b12a6d015e7d44353f2e12637a53aee80300000000000069512103ea10e4c250f47059c84aab9855f17788d479022367f78b22e745933a7cb1bfa3210281d16c70b780ece2f967f3890ed47308f13dea846ebc43e8b906281ae60c854c21038eb56f40d73925b3d8f96921e3476fd17e0f73b12a6d015e7d44353f2e12637a53aec3770b2701000000160014f9f761de6a26b38c86a3f54543766007cab6e30f02000002000002000000000000", "unpacked_data": { "message_type": "unknown", "message_type_id": 100, @@ -5418,8 +5461,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 100000000000, @@ -5427,16 +5470,16 @@ "first_issuance_block_index": 201, "last_issuance_block_index": 201, "confirmed": true, - "first_issuance_block_time": 1730150139, - "last_issuance_block_time": 1730150139, + "first_issuance_block_time": 1730152620, + "last_issuance_block_time": 1730152620, "supply_normalized": "1000.00000000" }, { "asset": "UTXOASSET", "asset_id": "4336417415635", "asset_longname": null, - "issuer": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", - "owner": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", + "issuer": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "owner": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", "divisible": true, "locked": false, "supply": 100000000000, @@ -5444,16 +5487,16 @@ "first_issuance_block_index": 198, "last_issuance_block_index": 198, "confirmed": true, - "first_issuance_block_time": 1730150124, - "last_issuance_block_time": 1730150124, + "first_issuance_block_time": 1730152603, + "last_issuance_block_time": 1730152603, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 10000000000, @@ -5461,16 +5504,16 @@ "first_issuance_block_index": 158, "last_issuance_block_index": 160, "confirmed": true, - "first_issuance_block_time": 1730149979, - "last_issuance_block_time": 1730149986, + "first_issuance_block_time": 1730152434, + "last_issuance_block_time": 1730152441, "supply_normalized": "100.00000000" }, { "asset": "MYASSETB", "asset_id": "103804245871", "asset_longname": null, - "issuer": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", - "owner": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "issuer": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "owner": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "divisible": true, "locked": false, "supply": 100000000000, @@ -5478,16 +5521,16 @@ "first_issuance_block_index": 157, "last_issuance_block_index": 157, "confirmed": true, - "first_issuance_block_time": 1730149974, - "last_issuance_block_time": 1730149974, + "first_issuance_block_time": 1730152430, + "last_issuance_block_time": 1730152430, "supply_normalized": "1000.00000000" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 100000000000, @@ -5495,8 +5538,8 @@ "first_issuance_block_index": 148, "last_issuance_block_index": 148, "confirmed": true, - "first_issuance_block_time": 1730149941, - "last_issuance_block_time": 1730149941, + "first_issuance_block_time": 1730152396, + "last_issuance_block_time": 1730152396, "supply_normalized": "1000.00000000" } ], @@ -5508,8 +5551,8 @@ "asset": "FAIRMINTA", "asset_id": "1046814266082", "asset_longname": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "owner": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "owner": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false, "supply": 10000000000, @@ -5517,15 +5560,15 @@ "first_issuance_block_index": 122, "last_issuance_block_index": 125, "confirmed": true, - "first_issuance_block_time": 1730149829, - "last_issuance_block_time": 1730149841, + "first_issuance_block_time": 1730152289, + "last_issuance_block_time": 1730152299, "supply_normalized": "100.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5533,14 +5576,14 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, "quantity_normalized": "95.00000000" }, { - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "utxo": null, "utxo_address": null, "asset": "FAIRMINTA", @@ -5548,7 +5591,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -5561,7 +5604,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 82649941196, "utxo": null, @@ -5583,9 +5626,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", + "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", "block_index": 184, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5600,7 +5643,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730150014, + "block_time": 1730152467, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5626,9 +5669,9 @@ }, { "tx_index": 51, - "tx_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", "block_index": 207, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5643,7 +5686,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730150162, + "block_time": 1730152654, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5669,9 +5712,9 @@ }, { "tx_index": 57, - "tx_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", + "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", "block_index": 192, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5686,7 +5729,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730150102, + "block_time": 1730152570, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5712,9 +5755,9 @@ }, { "tx_index": 59, - "tx_hash": "13047cb4dab1b0ba2151ae8e16379cc2b16fb4bb8f63e8c0f205359d365a62a2", + "tx_hash": "b5909bb972e8db050ad13378b2bb33e60dcf58c0e358ef41f60556c84f4beb1f", "block_index": 193, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5729,7 +5772,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730150106, + "block_time": 1730152583, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5755,9 +5798,9 @@ }, { "tx_index": 74, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5772,7 +5815,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730150162, + "block_time": 1730152654, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -5803,13 +5846,13 @@ "/v2/assets//matches": { "result": [ { - "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "tx0_index": 51, - "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 54, - "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", - "tx1_address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -5823,7 +5866,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730150087, + "block_time": 1730152544, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5843,13 +5886,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", "tx0_index": 51, - "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 52, - "tx1_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", - "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -5863,7 +5906,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730150084, + "block_time": 1730152540, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5883,13 +5926,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97_caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", + "id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", "tx0_index": 49, - "tx0_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 50, - "tx1_hash": "caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", - "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "tx1_hash": "838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", + "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -5903,7 +5946,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730150014, + "block_time": 1730152467, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -5930,20 +5973,20 @@ "result": [ { "block_index": 194, - "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "sweep", - "event": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", + "event": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", "tx_index": 60, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150109, + "block_time": 1730152588, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -5951,20 +5994,20 @@ }, { "block_index": 125, - "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "FAIRMINTA", "quantity": 9000000000, "calling_function": "fairmint", - "event": "e85bdf707fe349f0e40e559b6a1f20a10a1e0f329a969174ed358ea1e715df9d", + "event": "0f647573fb92582b6a2cb04ce8f42d7d23464c608d33108953f3d3879df32fe7", "tx_index": 13, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730149841, + "block_time": 1730152299, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -5972,20 +6015,20 @@ }, { "block_index": 124, - "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "9ab485c03158b0379a31a0ed1f790c058cddbccea9db255dd3cfcb37da360985", + "event": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730149837, + "block_time": 1730152296, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -5993,20 +6036,20 @@ }, { "block_index": 124, - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "unescrowed fairmint", - "event": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", + "event": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", "tx_index": 11, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730149837, + "block_time": 1730152296, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -6018,16 +6061,16 @@ "asset": "FAIRMINTA", "quantity": 500000000, "calling_function": "escrowed fairmint", - "event": "9ab485c03158b0379a31a0ed1f790c058cddbccea9db255dd3cfcb37da360985", + "event": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", "tx_index": 12, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730149837, + "block_time": 1730152296, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -6045,12 +6088,12 @@ "asset": "XCP", "quantity": 1500000000, "action": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "utxo": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "utxo_address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -6062,16 +6105,16 @@ }, { "block_index": 207, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 1000, "action": "open order", - "event": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "event": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "tx_index": 74, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150162, + "block_time": 1730152654, "asset_info": { "divisible": true, "asset_longname": null, @@ -6083,16 +6126,16 @@ }, { "block_index": 206, - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "event": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "tx_index": 73, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150158, + "block_time": 1730152650, "asset_info": { "divisible": true, "asset_longname": null, @@ -6104,16 +6147,16 @@ }, { "block_index": 205, - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "5cc312fce3a8f8432aea553285ab698a3d10185eafdb52df5723ee3ed378d751", + "event": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", "tx_index": 72, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150154, + "block_time": 1730152636, "asset_info": { "divisible": true, "asset_longname": null, @@ -6125,16 +6168,16 @@ }, { "block_index": 204, - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "event": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "tx_index": 71, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730150151, + "block_time": 1730152632, "asset_info": { "divisible": true, "asset_longname": null, @@ -6157,14 +6200,14 @@ "result": [ { "tx_index": 13, - "tx_hash": "e85bdf707fe349f0e40e559b6a1f20a10a1e0f329a969174ed358ea1e715df9d", + "tx_hash": "0f647573fb92582b6a2cb04ce8f42d7d23464c608d33108953f3d3879df32fe7", "msg_index": 0, "block_index": 125, "asset": "FAIRMINTA", "quantity": 9000000000, "divisible": true, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -6179,20 +6222,20 @@ "fair_minting": false, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730149841, + "block_time": 1730152299, "quantity_normalized": "90.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 12, - "tx_hash": "9ab485c03158b0379a31a0ed1f790c058cddbccea9db255dd3cfcb37da360985", + "tx_hash": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", "msg_index": 0, "block_index": 124, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -6207,20 +6250,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730149837, + "block_time": 1730152296, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 11, - "tx_hash": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", + "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", "msg_index": 0, "block_index": 123, "asset": "FAIRMINTA", "quantity": 500000000, "divisible": true, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -6235,20 +6278,20 @@ "fair_minting": true, "asset_events": "fairmint", "confirmed": true, - "block_time": 1730149834, + "block_time": 1730152293, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 10, - "tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", + "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", "msg_index": 0, "block_index": 122, "asset": "FAIRMINTA", "quantity": 0, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -6263,7 +6306,7 @@ "fair_minting": true, "asset_events": "open_fairminter", "confirmed": true, - "block_time": 1730149829, + "block_time": 1730152289, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -6275,10 +6318,10 @@ "result": [ { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -6286,7 +6329,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -6299,10 +6342,10 @@ }, { "tx_index": 73, - "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "block_index": 206, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6310,7 +6353,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730150158, + "block_time": 1730152650, "asset_info": { "divisible": true, "asset_longname": null, @@ -6323,10 +6366,10 @@ }, { "tx_index": 72, - "tx_hash": "5cc312fce3a8f8432aea553285ab698a3d10185eafdb52df5723ee3ed378d751", + "tx_hash": "78838727d9ea59909023454951a459386ba82bfc2ca4fe4c188bc9083f2850fa", "block_index": 205, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6334,7 +6377,7 @@ "memo": "746865206d656d6f", "fee_paid": 0, "confirmed": true, - "block_time": 1730150154, + "block_time": 1730152636, "asset_info": { "divisible": true, "asset_longname": null, @@ -6347,10 +6390,10 @@ }, { "tx_index": 71, - "tx_hash": "2a32a075d262714a6eea0ff27fb018c9c0df6b8a27676d80c0f307444b6cdde4", + "tx_hash": "010878cb258fcb650e08a643b378a6d4cb639088fb6ede26fd2da787ef6e1198", "block_index": 204, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6358,7 +6401,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730150151, + "block_time": 1730152632, "asset_info": { "divisible": true, "asset_longname": null, @@ -6371,10 +6414,10 @@ }, { "tx_index": 70, - "tx_hash": "a5fdfa816ed3c672abe67efa28741943c2b4bd004631dd891201d9f7fa56c109", + "tx_hash": "e7fa392f3c77dd7ccf5a213a0499a37e09b2766a3e18d399368df57975d62a4b", "block_index": 203, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6382,7 +6425,7 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730150148, + "block_time": 1730152628, "asset_info": { "divisible": true, "asset_longname": null, @@ -6401,9 +6444,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6412,7 +6455,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6422,7 +6465,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -6438,9 +6481,9 @@ }, { "tx_index": 29, - "tx_hash": "4473f2dbb7eb09b4240bbb4d13cf34b75bb23352b2c27da502c37866a024f217", + "tx_hash": "d839b088ef63a643506711a493f9bee20c8f0fdecdbe3a35b1daa547faf846c4", "block_index": 142, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6449,7 +6492,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "origin": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -6459,7 +6502,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730149918, + "block_time": 1730152374, "asset_info": { "divisible": true, "asset_longname": null, @@ -6475,9 +6518,9 @@ }, { "tx_index": 30, - "tx_hash": "3075db3fd894fb4982759d08c57ccf5915c726f7f2c2de2eb1cb9b695ac565b3", + "tx_hash": "79936cc3125e5007430b2d0bf21f27fde011aa3b3cbe455ef38d4e924e0efb2c", "block_index": 150, - "source": "mxVik5RWM3aheqn4VPBhE4NkDjFECW4vt5", + "source": "msW5ha2RLW5GPidCb4bcBfLpepfjUcMUQU", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -6485,10 +6528,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "6d03e19b70659ea140a7f92d319e95dd4815b2ece8393b26b1c9a0d7ba77f279", - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "last_status_tx_hash": "d9475e8ff5f01552453259a4f29df48bc438e16096934253fa19aea6a4577d24", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 0, - "last_status_tx_source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "last_status_tx_source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -6496,7 +6539,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730149949, + "block_time": 1730152404, "asset_info": { "divisible": true, "asset_longname": null, @@ -6512,18 +6555,18 @@ }, { "tx_index": 33, - "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "last_status_tx_hash": null, - "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6533,7 +6576,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -6554,9 +6597,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6565,7 +6608,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6575,7 +6618,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -6603,7 +6646,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -6611,7 +6654,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "quantity": 500000000, "escrow": null, "cursor_id": "balances_13", @@ -6620,7 +6663,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -6628,7 +6671,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "quantity": 0, "escrow": null, "cursor_id": "balances_14", @@ -6637,7 +6680,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -6645,7 +6688,7 @@ }, { "asset": "FAIRMINTA", - "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "quantity": 9500000000, "escrow": null, "cursor_id": "balances_15", @@ -6654,7 +6697,7 @@ "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -6669,27 +6712,27 @@ { "tx_index": 75, "dispense_index": 0, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "last_status_tx_hash": null, - "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6704,7 +6747,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -6718,27 +6761,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "5fad4bd6ee5892fa9b9dbdb90f8f89f4d1f35827c01fdc8dd4444b93621ee4fc", + "tx_hash": "e3281b866c9160fbca9b9c63f3cd72bdc23e6f1edacb7f45aa0d7e4d6d81bdfd", "block_index": 147, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "destination": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "destination": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "last_status_tx_hash": null, - "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6753,7 +6796,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730149937, + "block_time": 1730152392, "asset_info": { "divisible": true, "asset_longname": null, @@ -6767,19 +6810,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", + "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6787,7 +6830,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6802,7 +6845,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -6816,19 +6859,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", + "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", "block_index": 140, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -6836,7 +6879,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6851,7 +6894,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149900, + "block_time": 1730152367, "asset_info": { "divisible": true, "asset_longname": null, @@ -6874,10 +6917,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", + "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -6902,7 +6945,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730149841, + "block_time": 1730152299, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -6920,22 +6963,22 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "e85bdf707fe349f0e40e559b6a1f20a10a1e0f329a969174ed358ea1e715df9d", + "tx_hash": "0f647573fb92582b6a2cb04ce8f42d7d23464c608d33108953f3d3879df32fe7", "tx_index": 13, "block_index": 125, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", - "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", "asset": "FAIRMINTA", "earn_quantity": 9000000000, "paid_quantity": 9000000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149841, + "block_time": 1730152299, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -6944,22 +6987,22 @@ "paid_quantity_normalized": "90.00000000" }, { - "tx_hash": "9ab485c03158b0379a31a0ed1f790c058cddbccea9db255dd3cfcb37da360985", + "tx_hash": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75", "tx_index": 12, "block_index": 124, - "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", - "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", + "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149837, + "block_time": 1730152296, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -6968,22 +7011,22 @@ "paid_quantity_normalized": "5.00000000" }, { - "tx_hash": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", + "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149834, + "block_time": 1730152293, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -6998,22 +7041,22 @@ "/v2/assets//fairmints/
": { "result": [ { - "tx_hash": "dc93f7131603f17a3e5339ddc7e58669f1bbf9264808e78d340d63cf211f3905", + "tx_hash": "ad038314ecaadc5a21c95e7031f68c14cf21d4376168426a31ac625e89895b71", "tx_index": 11, "block_index": 123, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149834, + "block_time": 1730152293, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -7029,9 +7072,9 @@ "result": [ { "tx_index": 49, - "tx_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", + "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", "block_index": 184, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7046,7 +7089,7 @@ "fee_provided_remaining": 10000, "status": "expired", "confirmed": true, - "block_time": 1730150014, + "block_time": 1730152467, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7072,9 +7115,9 @@ }, { "tx_index": 52, - "tx_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "tx_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", "block_index": 187, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7089,7 +7132,7 @@ "fee_provided_remaining": 10000, "status": "filled", "confirmed": true, - "block_time": 1730150084, + "block_time": 1730152540, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7115,9 +7158,9 @@ }, { "tx_index": 54, - "tx_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "block_index": 188, - "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7132,7 +7175,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730150087, + "block_time": 1730152544, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7158,9 +7201,9 @@ }, { "tx_index": 57, - "tx_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", + "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", "block_index": 192, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7175,7 +7218,7 @@ "fee_provided_remaining": 10000, "status": "cancelled", "confirmed": true, - "block_time": 1730150102, + "block_time": 1730152570, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7201,9 +7244,9 @@ }, { "tx_index": 59, - "tx_hash": "13047cb4dab1b0ba2151ae8e16379cc2b16fb4bb8f63e8c0f205359d365a62a2", + "tx_hash": "b5909bb972e8db050ad13378b2bb33e60dcf58c0e358ef41f60556c84f4beb1f", "block_index": 193, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7218,7 +7261,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730150106, + "block_time": 1730152583, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7249,9 +7292,9 @@ "/v2/orders/": { "result": { "tx_index": 74, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7266,7 +7309,7 @@ "fee_provided_remaining": 10000, "status": "open", "confirmed": true, - "block_time": 1730150162, + "block_time": 1730152654, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7294,13 +7337,13 @@ "/v2/orders//matches": { "result": [ { - "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "tx0_index": 51, - "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 54, - "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", - "tx1_address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7314,7 +7357,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730150087, + "block_time": 1730152544, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7334,13 +7377,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", "tx0_index": 51, - "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 52, - "tx1_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", - "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7354,7 +7397,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730150084, + "block_time": 1730152540, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7381,15 +7424,15 @@ "result": [ { "tx_index": 53, - "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", + "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", "block_index": 187, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "btc_amount": 2000, - "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", "status": "valid", "confirmed": true, - "block_time": 1730150084, + "block_time": 1730152540, "btc_amount_normalized": "0.00002000" } ], @@ -7400,9 +7443,9 @@ "result": [ { "tx_index": 52, - "tx_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "tx_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", "block_index": 187, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7420,7 +7463,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730150084, + "block_time": 1730152540, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7446,9 +7489,9 @@ }, { "tx_index": 54, - "tx_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "block_index": 188, - "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 0, @@ -7466,7 +7509,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1730150087, + "block_time": 1730152544, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7492,9 +7535,9 @@ }, { "tx_index": 49, - "tx_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", + "tx_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", "block_index": 184, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7512,7 +7555,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730150014, + "block_time": 1730152467, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7538,9 +7581,9 @@ }, { "tx_index": 51, - "tx_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", "block_index": 207, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7558,7 +7601,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730150162, + "block_time": 1730152654, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7584,9 +7627,9 @@ }, { "tx_index": 57, - "tx_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", + "tx_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", "block_index": 192, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7604,7 +7647,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730150102, + "block_time": 1730152570, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7635,13 +7678,13 @@ "/v2/orders///matches": { "result": [ { - "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "tx0_index": 51, - "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 54, - "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", - "tx1_address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7658,7 +7701,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730150087, + "block_time": 1730152544, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7678,13 +7721,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", "tx0_index": 51, - "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 52, - "tx1_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", - "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7701,7 +7744,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730150084, + "block_time": 1730152540, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7721,13 +7764,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97_caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", + "id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", "tx0_index": 49, - "tx0_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 50, - "tx1_hash": "caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", - "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "tx1_hash": "838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", + "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7744,7 +7787,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1730150014, + "block_time": 1730152467, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7770,13 +7813,13 @@ "/v2/order_matches": { "result": [ { - "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "tx0_index": 51, - "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 54, - "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", - "tx1_address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", + "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -7790,7 +7833,7 @@ "fee_paid": 0, "status": "pending", "confirmed": true, - "block_time": 1730150087, + "block_time": 1730152544, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7810,13 +7853,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", "tx0_index": 51, - "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 52, - "tx1_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", - "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "tx1_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -7830,7 +7873,7 @@ "fee_paid": 0, "status": "completed", "confirmed": true, - "block_time": 1730150084, + "block_time": 1730152540, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7850,13 +7893,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97_caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", + "id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", "tx0_index": 49, - "tx0_hash": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_hash": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx1_index": 50, - "tx1_hash": "caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", - "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "tx1_hash": "838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", + "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -7870,7 +7913,7 @@ "fee_paid": 0, "status": "expired", "confirmed": true, - "block_time": 1730150014, + "block_time": 1730152467, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -7915,66 +7958,66 @@ "result": [ { "tx_index": 9, - "tx_hash": "1d67669f030d7a8d4afa14aaefef4fe7d507c15946907c1ec3b5688d4f587ce5", + "tx_hash": "faec55ede76eee50988cf0d4f1bb25d8fe1f5c75dd94ddc9427d732ef5b65344", "block_index": 121, - "source": "bcrt1qvpsk2579x0my98dh6s9fxhlmk9u454p63anff9", + "source": "bcrt1qy99t2ccel0rgwsv77j7t730c4v3xwu0q4z02rr", "burned": 50000000, "earned": 74999996667, "status": "valid", "confirmed": true, - "block_time": 1730149826, + "block_time": 1730152285, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 8, - "tx_hash": "a292ad6d93325e6d1548ace7936f98d323f34deb8b7c87d779aa11c52d286639", + "tx_hash": "ff424b42a9965359591a54f355ce5c75756123497e76f35debdaef0ea515e76a", "block_index": 120, - "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "burned": 50000000, "earned": 74999996833, "status": "valid", "confirmed": true, - "block_time": 1730149823, + "block_time": 1730152281, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 7, - "tx_hash": "2703d2682ac050e52bf9041850ca3ef9cc6ce768e820a79f27d7641ee6ca55b3", + "tx_hash": "6f8c5ecfa83f7514ac2c883bba9d8f016f9fc383a064597aa379221a09df2e26", "block_index": 119, - "source": "bcrt1quy9exauh6h8xraqsj4qexjw7xn47yevhezvy27", + "source": "bcrt1qpeykk94fqpqd8z8azgnemhdj6tkd0hx3zh9vq0", "burned": 50000000, "earned": 74999997000, "status": "valid", "confirmed": true, - "block_time": 1730149818, + "block_time": 1730152277, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 6, - "tx_hash": "fad67a3a3ab51ed384adef0aaaa2ceb87808d61441538179c49ece39620c16fb", + "tx_hash": "ea5d0be869f53cc900a7b0d86eefc1124bba3014be198aeef545d113ca6c1415", "block_index": 118, - "source": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", + "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", "burned": 50000000, "earned": 74999997167, "status": "valid", "confirmed": true, - "block_time": 1730149815, + "block_time": 1730152274, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, { "tx_index": 5, - "tx_hash": "d5167d517bee36d60dc07daf8226611a10a2550ba7049bbbed02570cea1c454c", + "tx_hash": "b99ccc7c02aa79d4f89a55faf59b2997833ac007497ad85b9c54f7f4aee6b38f", "block_index": 117, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "burned": 50000000, "earned": 74999997333, "status": "valid", "confirmed": true, - "block_time": 1730149812, + "block_time": 1730152271, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" } @@ -7986,9 +8029,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7997,7 +8040,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8007,7 +8050,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -8023,9 +8066,9 @@ }, { "tx_index": 29, - "tx_hash": "4473f2dbb7eb09b4240bbb4d13cf34b75bb23352b2c27da502c37866a024f217", + "tx_hash": "d839b088ef63a643506711a493f9bee20c8f0fdecdbe3a35b1daa547faf846c4", "block_index": 142, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8034,7 +8077,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "origin": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8044,7 +8087,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730149918, + "block_time": 1730152374, "asset_info": { "divisible": true, "asset_longname": null, @@ -8060,9 +8103,9 @@ }, { "tx_index": 30, - "tx_hash": "3075db3fd894fb4982759d08c57ccf5915c726f7f2c2de2eb1cb9b695ac565b3", + "tx_hash": "79936cc3125e5007430b2d0bf21f27fde011aa3b3cbe455ef38d4e924e0efb2c", "block_index": 150, - "source": "mxVik5RWM3aheqn4VPBhE4NkDjFECW4vt5", + "source": "msW5ha2RLW5GPidCb4bcBfLpepfjUcMUQU", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8070,10 +8113,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "6d03e19b70659ea140a7f92d319e95dd4815b2ece8393b26b1c9a0d7ba77f279", - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "last_status_tx_hash": "d9475e8ff5f01552453259a4f29df48bc438e16096934253fa19aea6a4577d24", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 0, - "last_status_tx_source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "last_status_tx_source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "close_block_index": 150, "confirmed": true, "fiat_price": null, @@ -8081,7 +8124,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730149949, + "block_time": 1730152404, "asset_info": { "divisible": true, "asset_longname": null, @@ -8097,9 +8140,9 @@ }, { "tx_index": 62, - "tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", + "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", "block_index": 197, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8108,7 +8151,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8118,11 +8161,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730150120, + "block_time": 1730152599, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -8134,18 +8177,18 @@ }, { "tx_index": 33, - "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "last_status_tx_hash": null, - "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8155,7 +8198,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 138, "satoshi_price": 16, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -8176,9 +8219,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8187,7 +8230,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8197,7 +8240,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -8217,19 +8260,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", + "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8237,7 +8280,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8252,7 +8295,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -8266,19 +8309,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", + "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", "block_index": 140, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8286,7 +8329,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8301,7 +8344,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149900, + "block_time": 1730152367, "asset_info": { "divisible": true, "asset_longname": null, @@ -8320,20 +8363,20 @@ "result": [ { "tx_index": 41, - "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", + "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", "block_index": 154, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730149962, + "block_time": 1730152419, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -8354,20 +8397,20 @@ "/v2/dividends/": { "result": { "tx_index": 41, - "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", + "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", "block_index": 154, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 40000, "status": "valid", "confirmed": true, - "block_time": 1730149962, + "block_time": 1730152419, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -8390,12 +8433,12 @@ "asset": "XCP", "quantity": 1500000000, "calling_function": "dividend", - "event": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", + "event": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", "tx_index": 41, - "utxo": "2febd503221c1f67a8a6bc91b81c87828e7803982b872fdb5655d68b75d16b04:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "utxo": "1d83b22e706c969e3dbc46fc83aaed861ed27d6aadc4e25772b7f315f7498313:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "confirmed": true, - "block_time": 1730149962, + "block_time": 1730152419, "asset_info": { "divisible": true, "asset_longname": null, @@ -8407,16 +8450,16 @@ }, { "block_index": 154, - "address": "bcrt1qg89hz5l72ck62vsg34dpc2fvtfgmuhna0e0t4c", + "address": "bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034", "asset": "XCP", "quantity": 500000000, "calling_function": "dividend", - "event": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", + "event": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", "tx_index": 41, "utxo": null, "utxo_address": null, "confirmed": true, - "block_time": 1730149962, + "block_time": 1730152419, "asset_info": { "divisible": true, "asset_longname": null, @@ -8437,27 +8480,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", - "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", + "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", + "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", "transaction_count": 1, - "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", - "block_time": 1730150176 + "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", + "block_time": 1730152668 }, "tx_hash": null, "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 674, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75 }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 673, @@ -8466,14 +8509,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -8484,9 +8527,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 672, @@ -8495,9 +8538,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "status": 0, - "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "asset_info": { "divisible": true, "asset_longname": null, @@ -8507,24 +8550,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -8534,9 +8577,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 670, @@ -8548,15 +8591,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", - "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", + "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", + "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", "transaction_count": 1, - "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", - "block_time": 1730150176 + "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", + "block_time": 1730152668 }, "tx_hash": null, "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } }, "/v2/events/counts": { @@ -8591,16 +8634,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -8610,9 +8653,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 669, @@ -8622,12 +8665,12 @@ "asset": "XCP", "block_index": 208, "calling_function": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 1500000000, "tx_index": 75, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "block_time": 1730150176, + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -8637,9 +8680,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 666, @@ -8649,39 +8692,39 @@ "asset": "MYASSETA", "block_index": 208, "calling_function": "utxo move", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 1500000000, "tx_index": 75, - "utxo": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", - "utxo_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "block_time": 1730150176, + "utxo": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", + "utxo_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "block_time": 1730152668, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 }, { "event_index": 656, "event": "CREDIT", "params": { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "block_index": 207, "calling_function": "cancel order", - "event": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "event": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", "quantity": 5000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1730150162, + "block_time": 1730152654, "asset_info": { "divisible": true, "asset_longname": null, @@ -8691,24 +8734,24 @@ }, "quantity_normalized": "0.00005000" }, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_time": 1730150162 + "block_time": 1730152654 }, { "event_index": 645, "event": "CREDIT", "params": { - "address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "block_index": 206, "calling_function": "mpma send", - "event": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "event": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "quantity": 10, "tx_index": 73, "utxo": null, "utxo_address": null, - "block_time": 1730150158, + "block_time": 1730152650, "asset_info": { "divisible": true, "asset_longname": null, @@ -8718,9 +8761,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "block_index": 206, - "block_time": 1730150158 + "block_time": 1730152650 } ], "next_cursor": 644, @@ -8737,27 +8780,27 @@ { "tx_index": 75, "dispense_index": 0, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "btc_amount": 1000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "last_status_tx_hash": null, - "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8772,7 +8815,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -8786,19 +8829,19 @@ { "tx_index": 63, "dispense_index": 0, - "tx_hash": "541f0fb85b7dbc11dc47a5535cee583b4066f143b1409c77dd9d39d0d60f6af8", + "tx_hash": "106579c58f047e17b477ed29537a950c9bd5764e11e554aecd245d2b34c593bb", "block_index": 197, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", + "dispenser_tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 62, "block_index": 197, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8806,7 +8849,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -8821,11 +8864,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730150120, + "block_time": 1730152599, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -8835,27 +8878,27 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "5fad4bd6ee5892fa9b9dbdb90f8f89f4d1f35827c01fdc8dd4444b93621ee4fc", + "tx_hash": "e3281b866c9160fbca9b9c63f3cd72bdc23e6f1edacb7f45aa0d7e4d6d81bdfd", "block_index": 147, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "destination": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "destination": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "btc_amount": 10000, "confirmed": true, "dispenser": { "tx_index": 33, "block_index": 208, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "oracle_address": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "last_status_tx_hash": null, - "origin": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "origin": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8870,7 +8913,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1730149937, + "block_time": 1730152392, "asset_info": { "divisible": true, "asset_longname": null, @@ -8884,19 +8927,19 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "e5cc426c70f48e5778f12dbd016858bbdcedc9b39b9ba687f07630e8e2839eb2", + "tx_hash": "475aace33224bce0e872b971aec679f51e613b383e613646278c6b56f677ba98", "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 4000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8904,7 +8947,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8919,7 +8962,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149913, + "block_time": 1730152371, "asset_info": { "divisible": true, "asset_longname": null, @@ -8933,19 +8976,19 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "8f8ec74c3c40d8dea61743ca9d8fe3a378bb3ad140f18b2fcd7bb6bb707c8944", + "tx_hash": "2d37d2e02bbcaf2608cf7a4a6ffd2ba0fa304b2a8fdcdd11dba977438e2de7cb", "block_index": 140, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "40d2ec22519b353de917488983a3023a7174d674c514990b47aa042de138868e", + "dispenser_tx_hash": "881a5384817ca1fa460b95c37bc6488f6813a9da5127cd7438e97748496cc986", "btc_amount": 6000, "confirmed": true, "dispenser": { "tx_index": 26, "block_index": 141, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8953,7 +8996,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8968,7 +9011,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1730149900, + "block_time": 1730152367, "asset_info": { "divisible": true, "asset_longname": null, @@ -8987,10 +9030,10 @@ "result": [ { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "asset": "XCP", "quantity": 1500000000, "status": "valid", @@ -8998,7 +9041,7 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -9011,10 +9054,10 @@ }, { "tx_index": 75, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "asset": "MYASSETA", "quantity": 1500000000, "status": "valid", @@ -9022,11 +9065,11 @@ "memo": null, "fee_paid": 0, "confirmed": true, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -9035,10 +9078,10 @@ }, { "tx_index": 73, - "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "block_index": 206, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "XCP", "quantity": 10, "status": "valid", @@ -9046,7 +9089,7 @@ "memo": "memo1", "fee_paid": 0, "confirmed": true, - "block_time": 1730150158, + "block_time": 1730152650, "asset_info": { "divisible": true, "asset_longname": null, @@ -9059,10 +9102,10 @@ }, { "tx_index": 73, - "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "block_index": 206, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9070,11 +9113,11 @@ "memo": "memo3", "fee_paid": 0, "confirmed": true, - "block_time": 1730150158, + "block_time": 1730152650, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -9083,10 +9126,10 @@ }, { "tx_index": 73, - "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "block_index": 206, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -9094,11 +9137,11 @@ "memo": "the memo", "fee_paid": 0, "confirmed": true, - "block_time": 1730150158, + "block_time": 1730152650, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -9113,14 +9156,14 @@ "result": [ { "tx_index": 68, - "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", + "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -9135,20 +9178,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730150139, + "block_time": 1730152620, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 64, - "tx_hash": "b5544f95147a8700f9db7a99f2713173f6cf13457b75605298197c154da0fcda", + "tx_hash": "bf75f7092b509102f9cc7488b8a1d2b5ac9b3663ab98a89b377d0ef6fe1dcb7c", "msg_index": 0, "block_index": 198, "asset": "UTXOASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", - "issuer": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", + "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", + "issuer": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", "transfer": false, "callable": false, "call_date": 0, @@ -9163,20 +9206,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730150124, + "block_time": 1730152603, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 48, - "tx_hash": "bfaad85954beda99abea4a7010a07447599bbf6f22ea125e30ed294c7f5218f0", + "tx_hash": "9e318339eedce8001504b264f6284e226cd64f7682b8d8516c334f650d696d1a", "msg_index": 0, "block_index": 161, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -9191,20 +9234,20 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730149990, + "block_time": 1730152454, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 47, - "tx_hash": "05689fcc47dfef00b3da5ab26a1b46ea1887fa933a6f6903acb19faf207eca1f", + "tx_hash": "45cb917d16df66648e5f28c6c2bd440fe45d164add86d0e42b41da39eb7f0556", "msg_index": 0, "block_index": 160, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -9219,20 +9262,20 @@ "fair_minting": false, "asset_events": "lock_description", "confirmed": true, - "block_time": 1730149986, + "block_time": 1730152441, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 46, - "tx_hash": "b9a6fb371b7caf85edb70d0c373d91aad170224779eb8f3effcbeec5ea512deb", + "tx_hash": "ac506b92d017443f43af978440e014edeebaeb005ef74872f0a538268c655b9e", "msg_index": 0, "block_index": 159, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -9247,7 +9290,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730149983, + "block_time": 1730152437, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -9258,14 +9301,14 @@ "/v2/issuances/": { "result": { "tx_index": 68, - "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", + "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", "msg_index": 0, "block_index": 201, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "transfer": false, "callable": false, "call_date": 0, @@ -9280,7 +9323,7 @@ "fair_minting": false, "asset_events": "creation", "confirmed": true, - "block_time": 1730150139, + "block_time": 1730152620, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" } @@ -9289,16 +9332,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", + "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", "block_index": 194, - "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730150109, + "block_time": 1730152588, "fee_paid_normalized": "0.00600000" } ], @@ -9309,16 +9352,16 @@ "result": [ { "tx_index": 60, - "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", + "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", "block_index": 194, - "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, "confirmed": true, - "block_time": 1730150109, + "block_time": 1730152588, "fee_paid_normalized": "0.00600000" } ], @@ -9329,9 +9372,9 @@ "result": [ { "tx_index": 25, - "tx_hash": "e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc", + "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", "block_index": 138, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9339,14 +9382,14 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730149891, + "block_time": 1730152360, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "6bb6a779b50b7a5f5e7f2eeb16d14bf3280a3bb411704fe10c8e4937e68590ac", + "tx_hash": "278eb0af25f68b3a6653ba0f2df33f974ff0da6c7104e66879b1e7398e7c5c0a", "block_index": 137, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, @@ -9354,7 +9397,7 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730149887, + "block_time": 1730152356, "fee_fraction_int_normalized": "0.00000000" } ], @@ -9364,9 +9407,9 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc", + "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", "block_index": 138, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, @@ -9374,17 +9417,17 @@ "locked": false, "status": "valid", "confirmed": true, - "block_time": 1730149891, + "block_time": 1730152360, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "93dee74a73fd75a2b609a0b4cd62839d0d254025bf44bcb5513cad7d35bfa6f3", + "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", "tx_index": 42, "block_index": 155, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9409,7 +9452,7 @@ "commission": null, "paid_quantity": null, "confirmed": true, - "block_time": 1730149965, + "block_time": 1730152422, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9418,10 +9461,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", + "tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", "tx_index": 22, "block_index": 135, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "FAIRMINTD", "asset_parent": "", "asset_longname": "", @@ -9446,7 +9489,7 @@ "commission": 0, "paid_quantity": 34, "confirmed": true, - "block_time": 1730149878, + "block_time": 1730152348, "price_normalized": "0.00000050", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9458,10 +9501,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", + "tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", "tx_index": 18, "block_index": 131, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "FAIRMINTC", "asset_parent": "", "asset_longname": "", @@ -9486,7 +9529,7 @@ "commission": 0, "paid_quantity": 5, "confirmed": true, - "block_time": 1730149865, + "block_time": 1730152322, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9498,10 +9541,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "0e2c46ac44f390ff6b06d99469bca85858fa064feb09b8c2ef799039d36dfa3f", + "tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", "tx_index": 14, "block_index": 130, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "FAIRMINTB", "asset_parent": "", "asset_longname": "", @@ -9526,7 +9569,7 @@ "commission": 0, "paid_quantity": 300000000, "confirmed": true, - "block_time": 1730149860, + "block_time": 1730152319, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9538,10 +9581,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "dfdc977a737750b3d69571e297d856e5384d95ae3004d3a60e7c5e13fea03328", + "tx_hash": "c54b70535645814003d679de1dea6c3d208a360033ed6961b9958ac910e83988", "tx_index": 10, "block_index": 125, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "asset": "FAIRMINTA", "asset_parent": "", "asset_longname": "", @@ -9566,7 +9609,7 @@ "commission": 0, "paid_quantity": 10000000000, "confirmed": true, - "block_time": 1730149841, + "block_time": 1730152299, "price_normalized": "0.00000001", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9584,22 +9627,22 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", + "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149883, + "block_time": 1730152352, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -9608,22 +9651,22 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "fda34c124d140677eccc10bdff0dc1cac5550cd210cdabf0ec3cac7f5621c72d", + "tx_hash": "ff6f27751d9a86791bebbfbdf6c94db117df2b3f2193fb80951f246a234aec33", "tx_index": 21, "block_index": 134, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149874, + "block_time": 1730152344, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -9632,22 +9675,22 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "1a79feb1b1b318e55f4b6836518ac7315c78fc94029d4bfbe2e66f0341f3d69d", + "tx_hash": "d8a0233a8d8e6e63a86f2762bdcd19f395771e948e9d9fd91e4131cf9b4b466c", "tx_index": 20, "block_index": 133, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149871, + "block_time": 1730152329, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -9656,22 +9699,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "52aa1faf5394a028bd06452893acd47a19a81f90b3984c7546cf5c0fa205f190", + "tx_hash": "9cbbbc1ba5c0c6a6a4766e5b10e4e35fe2772e4e9a4ac36a36fe0e0239c134f8", "tx_index": 19, "block_index": 132, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "2e2735879d0f0f999af3db35086f8092827b067e6a6c6d403861bd12b74f3950", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "f496a13cefb5917af9ca4382b65ec34a3e9377aad3a9573222f40fc26e5d4e38", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149868, + "block_time": 1730152326, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -9680,22 +9723,22 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "0d3ec97ca627c8afdc74e7cd74d98e23e70e50fb3f4556145985a0937ee00c5b", + "tx_hash": "7373471bfbb61006816b238cc58de75e2684d1b9cc29a2ea12ed240f42efc5c1", "tx_index": 17, "block_index": 129, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", - "fairminter_tx_hash": "0e2c46ac44f390ff6b06d99469bca85858fa064feb09b8c2ef799039d36dfa3f", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "fairminter_tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149856, + "block_time": 1730152314, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -9709,22 +9752,22 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", + "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", "tx_index": 23, "block_index": 136, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "fairminter_tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", "confirmed": true, - "block_time": 1730149883, + "block_time": 1730152352, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -9741,8 +9784,8 @@ "value": 5460, "confirmations": 9, "amount": 5.46e-05, - "txid": "508340a6b50309287c608280e281aeb60e7fdb44401c73cc2d824350a587a82b", - "address": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa" + "txid": "4f4e04943e18e0ee4357cfc625380441563b546fa24099f5e213d8e1ba2d301e", + "address": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t" }, { "vout": 1, @@ -9750,8 +9793,8 @@ "value": 4949934500, "confirmations": 9, "amount": 49.499345, - "txid": "9b6c9a7bb596e969abc4b473d1fe8cfb354de8ab6eeb5085ae582ed48ab6e97e", - "address": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa" + "txid": "aeaf026eb996356b27b9fa803f584b52d00b626dc2d0d876b59e2f0e219ac0d1", + "address": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t" }, { "vout": 2, @@ -9759,8 +9802,8 @@ "value": 100000, "confirmations": 52, "amount": 0.001, - "txid": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849", - "address": "bcrt1quy9exauh6h8xraqsj4qexjw7xn47yevhezvy27" + "txid": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76", + "address": "bcrt1qpeykk94fqpqd8z8azgnemhdj6tkd0hx3zh9vq0" } ], "next_cursor": null, @@ -9769,28 +9812,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "ac629e61e6754dc91053dab34f5c7923f53a25f08505c48e02020b88fcbf160c" + "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35" }, { - "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813" + "tx_hash": "1470f4b572e577839544315fa7c74ff2ffcf96c223ad7652b4f6846af2f30a45" }, { - "tx_hash": "9ab485c03158b0379a31a0ed1f790c058cddbccea9db255dd3cfcb37da360985" + "tx_hash": "aa546f61f8ebb938d0b3ce821f6de5f8150cfeb107148298e068de15ab033e63" }, { - "tx_hash": "166c36ba6e40975fd9175e2c75c3429ffbabdb6d40d994cf45739dcd7cd3718f" + "tx_hash": "c06eded0f95cde9156548bea56a6019e2eee629859e1e1986086ad10b2dd5a75" }, { - "tx_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1" + "tx_hash": "894dceb9db02f71c93dcc4070ecf5daefd49348620bea85df8f0b4e0acec138c" }, { - "tx_hash": "1a13cc5410faf54cf3e15d2f36ebe7d2162194c040bbcb754a460a587bb183df" + "tx_hash": "708576bd350d01171c186ecbba44bca04cf7cb37bc750f1b0d2b34d99f125a93" }, { - "tx_hash": "2b8d25beb3e954c2626269fe981cad7457e2816015fa2ffb47fc40dab3aab8ec" + "tx_hash": "a6cb77043648b5643482906ff1d7d5b899f2d4eec6f273ca25ac8652668a51a8" }, { - "tx_hash": "d94e197f2a619d264cc847eb0c6d0cc74b543b39ee3e674e770d01b6491332f0" + "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8" } ], "next_cursor": null, @@ -9798,37 +9841,37 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 10, - "tx_hash": "7eb3eacdd595345e0fe6958c9a1175ee02db099b906474714fae3e96901ca847" + "block_index": 3, + "tx_hash": "18676cb74eb9dfce4b58b954ec2a6b83b96a6f4daad0a16f77bcb6b61458ace6" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ { - "vout": 0, + "vout": 1, "height": 200, - "value": 5460, + "value": 4949934500, "confirmations": 9, - "amount": 5.46e-05, - "txid": "508340a6b50309287c608280e281aeb60e7fdb44401c73cc2d824350a587a82b" + "amount": 49.499345, + "txid": "aeaf026eb996356b27b9fa803f584b52d00b626dc2d0d876b59e2f0e219ac0d1" }, { - "vout": 1, + "vout": 0, "height": 200, - "value": 4949934500, + "value": 5460, "confirmations": 9, - "amount": 49.499345, - "txid": "9b6c9a7bb596e969abc4b473d1fe8cfb354de8ab6eeb5085ae582ed48ab6e97e" + "amount": 5.46e-05, + "txid": "4f4e04943e18e0ee4357cfc625380441563b546fa24099f5e213d8e1ba2d301e" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "026352a4bc47e8c6a430e20563294982188adcc5710644c6f8dd7b67ef694ec31c" + "result": "03be1550749fb1f6e8569a217e3386b6fe9cd46a26502621789da3a82663b2d500" }, "/v2/bitcoin/transactions/": { - "result": "0200000000010149289a40c78c66916c239ac7f908b0d59ef63456994b1e9510d8717257f0bf460100000000ffffffff03e8030000000000001600149e3d73cf180ab4652f14e45d6dd17012e1442b0000000000000000000c6a0a06f7bbe2b2ce3b3aeeebeb1409270100000016001465c904bf5dd078f1db7ff75e9d02179c176ab0900247304402201dd21b409a496da4d49a01840c4e3f9d1bdef1d8184b29b20924ff78f921b5a102203046c25e5926256e32950b3f56702d092ce66300479cdcd5b6fc02d37760fa7601210394905cd47735fcf8303d48ee74e9528871221d877e69b6ae5e376e64158d451000000000" + "result": "02000000000101767fa9746798e2f0da5d0765e73be7115b8f252c0ff7b3420c4ee20d9e51bb0a0100000000ffffffff03e803000000000000160014f9f761de6a26b38c86a3f54543766007cab6e30f00000000000000000c6a0a8ee379ec02600d7a1d1aeb140927010000001600145e3425187b2b5bc42b4371cb0d1f75d1661ad94802473044022038bd1cb36fdd7f9da255360c2b77e5d07c034b15eb8433d992508c6c65c6e693022074d799ef701e0e6ceb1e5e702c023f85f849de50800f98e9f4b29eb8c46f1a63012103606de90e430b926855501d0a176c98eff58fab05f6264d36c656a231b914c4d600000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58701 @@ -9851,27 +9894,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "tx_index": 76 }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "memo": null, "quantity": 10000, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "status": "valid", - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "tx_index": 76, "asset_info": { "divisible": true, @@ -9882,22 +9925,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "CREDIT", "params": { - "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -9907,22 +9950,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "XCP", "block_index": 208, - "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -9932,30 +9975,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730150180.8792815, + "block_time": 1730152671.386915, "btc_amount": 0, - "data": "0200000000000000010000000000002710803eb72a4136323ae914b5e511d43a96fe66f85c55", + "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", "destination": "", "fee": 10000, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "tx_index": 76, - "utxos_info": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca:1", + "utxos_info": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "memo": null, "asset_info": { "divisible": true, @@ -9969,7 +10012,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 } ], "next_cursor": null, @@ -9978,19 +10021,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "CREDIT", "params": { - "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -10000,7 +10043,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 } ], "next_cursor": null, @@ -10009,27 +10052,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "tx_index": 76 }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "destination": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "memo": null, "quantity": 10000, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "status": "valid", - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "tx_index": 76, "asset_info": { "divisible": true, @@ -10040,22 +10083,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "CREDIT", "params": { - "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "asset": "XCP", "block_index": 208, "calling_function": "send", - "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -10065,22 +10108,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "address": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "asset": "XCP", "block_index": 208, - "event": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "event": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "quantity": 10000, "tx_index": 76, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -10090,30 +10133,30 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 }, { - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1730150180.8792815, + "block_time": 1730152671.386915, "btc_amount": 0, - "data": "0200000000000000010000000000002710803eb72a4136323ae914b5e511d43a96fe66f85c55", + "data": "020000000000000001000000000000271080a7571097c4fb8e6abca791ff02187aaecf8530ec", "destination": "", "fee": 10000, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", - "tx_hash": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", + "tx_hash": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43", "tx_index": 76, - "utxos_info": "055f89420da52de5c3a3ff9ffeef5ca512430a8b25fbba4c55ef9c753b7557ca:1", + "utxos_info": "176d60cc92b7e6121256abda9774892c371eb867371d12d871571ad30b95ca43:1", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "memo": null, "asset_info": { "divisible": true, @@ -10127,7 +10170,7 @@ }, "btc_amount_normalized": "0.00000000" }, - "timestamp": 1730150180.8792815 + "timestamp": 1730152671.386915 } ], "next_cursor": null, @@ -10149,15 +10192,15 @@ "event_index": 662, "event": "NEW_BLOCK", "params": { - "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", + "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", "block_index": 208, - "block_time": 1730150176, + "block_time": 1730152668, "difficulty": 545259519, - "previous_block_hash": "209f87e333da0c8df06af7c61992e5760b349b6f3185eeb8f8ca132b151b0e0a" + "previous_block_hash": "78dcceea5b1f8905c8c8bcca43699402b0f3aa9be7fe52853376ffeedc3c0fae" }, "tx_hash": null, "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 653, @@ -10169,17 +10212,17 @@ "event_index": 663, "event": "NEW_TRANSACTION", "params": { - "block_hash": "5c488d9c0d1b18b240443135f035c7aaea44bcb3beb6b08ffbd1adaefbb9c4be", + "block_hash": "41fc8645a8b887392faf23bd44710d08f5813b0eafe0b919b9cbc49bc6ad29a1", "block_index": 208, - "block_time": 1730150176, + "block_time": 1730152668, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "fee": 0, - "source": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "source": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "utxos_info": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1 ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "utxos_info": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1 24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "unpacked_data": { "message_type": "dispense", "message_type_id": 13, @@ -10189,9 +10232,9 @@ }, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 654, @@ -10205,16 +10248,16 @@ "params": { "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "destination": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "out_index": 0, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "block_time": 1730150176, + "block_time": 1730152668, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 558, @@ -10227,15 +10270,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 208, - "ledger_hash": "c9660ec6fa185e3c5095b7f9df30d4e6c56d83f2fd1ee4e1e42b4272cb04c655", - "messages_hash": "edd4e8fe949679a5e84e5331b11bed8ef8b5f62d9569d2324ed51b8669d858e1", + "ledger_hash": "60b8fd8f2ad76538149e6de985dbe7b45c40a196ae0bb983bf4c88a03b0a5a01", + "messages_hash": "7a42fb162169182e602c0a9f3b9b87fe0679ea28f34038dd79f3ee778d672f5b", "transaction_count": 1, - "txlist_hash": "2cbc5e2941cfaa5f8749c020bafc1f9440deb8ec38cece0d92db92677755ea2e", - "block_time": 1730150176 + "txlist_hash": "7792bb1c4bc7ea65159eea6c5970b4a75a56b5a0926a5a1d6d1843469b56dd08", + "block_time": 1730152668 }, "tx_hash": null, "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 661, @@ -10248,12 +10291,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75 }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 660, @@ -10269,12 +10312,12 @@ "address": null, "asset": "XCP", "block_index": 208, - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 1500000000, "tx_index": 75, - "utxo": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", - "utxo_address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", - "block_time": 1730150176, + "utxo": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", + "utxo_address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -10284,9 +10327,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 665, @@ -10298,16 +10341,16 @@ "event_index": 671, "event": "CREDIT", "params": { - "address": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "address": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "asset": "XCP", "block_index": 208, "calling_function": "dispense", - "event": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "event": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "quantity": 66, "tx_index": 75, "utxo": null, "utxo_address": null, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -10317,9 +10360,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 669, @@ -10333,26 +10376,26 @@ "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "memo": null, "quantity": 1000, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "status": "valid", - "tx_hash": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c", + "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", "tx_index": 69, - "block_time": 1730150144, + "block_time": 1730152624, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "fd0e55d6cf64e66a9ed1c3f336199d25ada9021f209e7229fe71ce5f37d4e92c", + "tx_hash": "56e8cc4cc3a55d0851ceb82c848ae152c7a40735c2a8e736c425047b6ccfc0cf", "block_index": 202, - "block_time": 1730150144 + "block_time": 1730152624 } ], "next_cursor": 498, @@ -10366,15 +10409,15 @@ "params": { "asset": "XCP", "block_index": 206, - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "status": "valid", - "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "tx_index": 73, - "block_time": 1730150158, + "block_time": 1730152650, "asset_info": { "divisible": true, "asset_longname": null, @@ -10384,9 +10427,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "d04660301abf97eeb51d224209244de37373bf08c2e9358f227c72449403eeb5", + "tx_hash": "df83baf689f317330288b53cdecda394e1a8a323267184a896edd324ae2f5e06", "block_index": 206, - "block_time": 1730150158 + "block_time": 1730152650 } ], "next_cursor": 649, @@ -10409,20 +10452,20 @@ "event": "SWEEP", "params": { "block_index": 194, - "destination": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "destination": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "source": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "status": "valid", - "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", + "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", "tx_index": 60, - "block_time": 1730150109, + "block_time": 1730152588, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "d08080ef8a4c96045fd5eedc16be9278ee7d6928f2fee9e5f8f30b2bbc462813", + "tx_hash": "2c7ae8f6e4701927ddcbe44081605a47255ab492749f67fbd114ecf1a8a65b35", "block_index": 194, - "block_time": 1730150109 + "block_time": 1730152588 } ], "next_cursor": null, @@ -10439,15 +10482,15 @@ "dividend_asset": "XCP", "fee_paid": 40000, "quantity_per_unit": 100000000, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "status": "valid", - "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", + "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", "tx_index": 41, - "block_time": 1730149962, + "block_time": 1730152419, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -10461,9 +10504,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00040000" }, - "tx_hash": "930885b5436b3986c5cccf37bed050c6b42ac548f1e283c5fa70e3de62d92d9a", + "tx_hash": "7372f146a3d2b2f8ed86192a8116aa167602a212012c7e629321341896e9a2ab", "block_index": 154, - "block_time": 1730149962 + "block_time": 1730152419 } ], "next_cursor": null, @@ -10484,11 +10527,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 201, - "block_time": 1730150139 + "block_time": 1730152620 }, - "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", + "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", "block_index": 201, - "block_time": 1730150139 + "block_time": 1730152620 } ], "next_cursor": 567, @@ -10511,22 +10554,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "status": "valid", "transfer": false, - "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", + "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", "tx_index": 68, - "block_time": 1730150139, + "block_time": 1730152620, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "0c4baded5ff20b77f3830592e62cc44f1edda38701099ee29984d228422d2305", + "tx_hash": "4828af32a199e79551813e98f231b88c18fce171b1aa13a0a36ebd89438480eb", "block_index": 201, - "block_time": 1730150139 + "block_time": 1730152620 } ], "next_cursor": 568, @@ -10541,12 +10584,12 @@ "asset": "XCP", "block_index": 195, "quantity": 1, - "source": "bcrt1q8j0zxh92t0jtuparm7lhxrfpcztvv5lzk00zxa", + "source": "bcrt1q97tatapulknzlg4e9l3d9vwump6wgad5ymx9e2", "status": "valid", "tag": "64657374726f79", - "tx_hash": "c00a1d1e74c94dc85120712a15a6b62760a12590f92814b3ab2725b9b992038c", + "tx_hash": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282", "tx_index": 61, - "block_time": 1730150114, + "block_time": 1730152592, "asset_info": { "divisible": true, "asset_longname": null, @@ -10556,9 +10599,9 @@ }, "quantity_normalized": "0.00000001" }, - "tx_hash": "c00a1d1e74c94dc85120712a15a6b62760a12590f92814b3ab2725b9b992038c", + "tx_hash": "3e84acc0f23dd773d7d0cc0544d2c4b2bcbfda1339e01039af739967efe46282", "block_index": 195, - "block_time": 1730150114 + "block_time": 1730152592 } ], "next_cursor": 157, @@ -10583,11 +10626,11 @@ "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "status": "open", - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "tx_index": 74, - "block_time": 1730150162, + "block_time": 1730152654, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -10611,9 +10654,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_time": 1730150162 + "block_time": 1730152654 } ], "next_cursor": 529, @@ -10631,20 +10674,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 3000, - "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "match_expire_index": 208, "status": "pending", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "tx0_block_index": 186, "tx0_expiration": 21, - "tx0_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", + "tx0_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", "tx0_index": 51, - "tx1_address": "bcrt1q86mj5sfkxgawj994u5gagw5klen0shz4sl5dmk", + "tx1_address": "bcrt1q5at3p97ylw8x4098j8lsyxr64m8c2v8vwr8se2", "tx1_block_index": 188, "tx1_expiration": 21, - "tx1_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "tx1_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "tx1_index": 54, - "block_time": 1730150087, + "block_time": 1730152544, "forward_asset_info": { "divisible": true, "asset_longname": null, @@ -10663,9 +10706,9 @@ "backward_quantity_normalized": "0.00003000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "f9012ae8be9d657fbc8bdcaefab2b68526be4c693f111299c5a71b2ef6a128b1", + "tx_hash": "68448d7e0d182d502c502ccbc5b9eabfb074623e4f38bb66e6d9e450fb20a2b8", "block_index": 188, - "block_time": 1730150087 + "block_time": 1730152544 } ], "next_cursor": 475, @@ -10678,11 +10721,11 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e" + "tx_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144" }, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_time": 1730150162 + "block_time": 1730152654 } ], "next_cursor": 521, @@ -10695,11 +10738,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0" + "tx_hash": "f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59" }, - "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", + "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", "block_index": 187, - "block_time": 1730150084 + "block_time": 1730152540 } ], "next_cursor": null, @@ -10711,13 +10754,13 @@ "event_index": 481, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", - "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", + "id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", "status": "completed" }, - "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", + "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", "block_index": 187, - "block_time": 1730150084 + "block_time": 1730152540 } ], "next_cursor": 454, @@ -10731,18 +10774,18 @@ "params": { "block_index": 187, "btc_amount": 2000, - "destination": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "order_match_id": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e_82566d402ba2c3b7ea70a82fc0e5ad84f79cb3ba4cfcd9fbf8fbcab888607ff0", - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "destination": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "order_match_id": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144_f7024b6b96a9c8db3d046e4f3dd2af284061b63febc2052b0800be5871413c59", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "status": "valid", - "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", + "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", "tx_index": 53, - "block_time": 1730150084, + "block_time": 1730152540, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "6f4c3f29ace2a62a25786d329f299ca4f03747107729738ef5b84e7208b7e32f", + "tx_hash": "f3a0189ad2bd8680dd5c64aeae6f5a424aa5d1b866503aba86543c94639b8a29", "block_index": 187, - "block_time": 1730150084 + "block_time": 1730152540 } ], "next_cursor": null, @@ -10755,16 +10798,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 192, - "offer_hash": "0674432f2aa22fb07588d87c080ed61f1366ee7077abead4abe93ac3e7d6037a", - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "offer_hash": "5c60fdbd8e12b558b37692f338ed060f1b08aa4280e7910c72df925b8447fe4e", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "status": "valid", - "tx_hash": "273b62eaf8de41c504f5b4619412ccadacc70cff6b889cb2396189018c05d81c", + "tx_hash": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7", "tx_index": 58, - "block_time": 1730150102 + "block_time": 1730152570 }, - "tx_hash": "273b62eaf8de41c504f5b4619412ccadacc70cff6b889cb2396189018c05d81c", + "tx_hash": "fc1d3b6add00941ff5311825d425d39e5178a68bd3815f6b3a798e5c6b666cf7", "block_index": 192, - "block_time": 1730150102 + "block_time": 1730152570 } ], "next_cursor": null, @@ -10777,13 +10820,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 207, - "order_hash": "bee56b9bc3b9302c19377219571624c1d6cb61a937af2f16f232af774003f82e", - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "block_time": 1730150162 + "order_hash": "0be548116da7ae37d3a66bd1e2b457c84b5cee1922a832b11833442ca4367144", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "block_time": 1730152654 }, - "tx_hash": "affb4812faba088943378d3988885b35fe17964be15370cb283a08f6495c8830", + "tx_hash": "94d28536c36f8921ec535d5a3e2c538fea2e0eaf96f18f56fe628a2467b3cd5b", "block_index": 207, - "block_time": 1730150162 + "block_time": 1730152654 } ], "next_cursor": 462, @@ -10796,14 +10839,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 184, - "order_match_id": "2cca2b4624ee472376700f46ca9e48115bfd9d776f6c0f207120b8f505dadb97_caba5bb8dad02c37418f327edc41ebce15f8723d1542498d296337deded8437e", - "tx0_address": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "tx1_address": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", - "block_time": 1730150014 + "order_match_id": "e526d2697a8a05b800974f9c210fa510da6ab47751c34779b7ac367e9b4b6a4f_838658b3ae97b7aecafb85513c22563fafe5393feb711e3baeb216d4575933e2", + "tx0_address": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx1_address": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", + "block_time": 1730152467 }, "tx_hash": null, "block_index": 184, - "block_time": 1730150014 + "block_time": 1730152467 } ], "next_cursor": null, @@ -10822,17 +10865,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "origin": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "satoshirate": 1, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "status": 0, - "tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", + "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", "tx_index": 62, - "block_time": 1730150117, + "block_time": 1730152595, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -10841,9 +10884,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "2e18493e7649de6d7897a999903ac0ecadb8b1fc41ed8340a5e8b6b1ad0392a9", + "tx_hash": "a66401c0c7f18461dcb757685e287c5257f065eed4bb1ab2202bc6f94f1ee648", "block_index": 196, - "block_time": 1730150117 + "block_time": 1730152595 } ], "next_cursor": 272, @@ -10858,9 +10901,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "status": 0, - "tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", + "tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", "asset_info": { "divisible": true, "asset_longname": null, @@ -10870,9 +10913,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 560, @@ -10886,13 +10929,13 @@ "params": { "asset": "XCP", "block_index": 144, - "destination": "mxVik5RWM3aheqn4VPBhE4NkDjFECW4vt5", + "destination": "msW5ha2RLW5GPidCb4bcBfLpepfjUcMUQU", "dispense_quantity": 10, - "dispenser_tx_hash": "3075db3fd894fb4982759d08c57ccf5915c726f7f2c2de2eb1cb9b695ac565b3", - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", - "tx_hash": "656b01275a930a61d0c415f3f560f4dbfb0448295939aea387a818440b8467d5", + "dispenser_tx_hash": "79936cc3125e5007430b2d0bf21f27fde011aa3b3cbe455ef38d4e924e0efb2c", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", + "tx_hash": "c80fe863f3a38f0c594cc61d791ca06e52b16f9078039de69a47424eba880aea", "tx_index": 31, - "block_time": 1730149925, + "block_time": 1730152380, "asset_info": { "divisible": true, "asset_longname": null, @@ -10902,9 +10945,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "656b01275a930a61d0c415f3f560f4dbfb0448295939aea387a818440b8467d5", + "tx_hash": "c80fe863f3a38f0c594cc61d791ca06e52b16f9078039de69a47424eba880aea", "block_index": 144, - "block_time": 1730149925 + "block_time": 1730152380 } ], "next_cursor": null, @@ -10919,14 +10962,14 @@ "asset": "XCP", "block_index": 208, "btc_amount": 1000, - "destination": "bcrt1qvhysf06a6pu0rkml7a0f6qshnstk4vys4efu57", + "destination": "bcrt1qtc6z2xrm9ddug26rw89s68m469np4k2gl56jph", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "371335ba8eb4c9d3be0285936f784df0a49ee18c3751c4cc9f3b90b0627084ba", - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "dispenser_tx_hash": "89960b7bbc039e600d6f9646dee903b065b2b4b2a06a9341471044b97be7dc00", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -10937,9 +10980,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 561, @@ -10954,19 +10997,19 @@ "block_index": 138, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qnc7h8nccp26x2tc5u3wkm5tszts5g2cq52c0nw", + "source": "bcrt1ql8mkrhn2y6ecep4r74z5xanqql9tdcc03gw7jw", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc", + "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", "tx_index": 25, "value": 66600.0, - "block_time": 1730149891, + "block_time": 1730152360, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "e4e40c80d131a0e39c923faf08adea8ab709aa41cb725e00d5a35a477a44facc", + "tx_hash": "26aaab7c527ed95b491bf2daa22f1342cdd5f0ddcb7d9258c93f6eb27d184cf4", "block_index": 138, - "block_time": 1730149891 + "block_time": 1730152360 } ], "next_cursor": 213, @@ -10997,12 +11040,12 @@ "quantity_by_price": 5, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "source": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "start_block": 0, "status": "open", - "tx_hash": "93dee74a73fd75a2b609a0b4cd62839d0d254025bf44bcb5513cad7d35bfa6f3", + "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", "tx_index": 42, - "block_time": 1730149965, + "block_time": 1730152422, "price_normalized": "0.00000001", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -11010,9 +11053,9 @@ "max_mint_per_tx_normalized": "0.00000000", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "93dee74a73fd75a2b609a0b4cd62839d0d254025bf44bcb5513cad7d35bfa6f3", + "tx_hash": "26539725e06907af8de0d1566e600341a0e33f7489250c5638c4fc997807d55b", "block_index": 155, - "block_time": 1730149965 + "block_time": 1730152422 } ], "next_cursor": 196, @@ -11025,11 +11068,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "0e2c46ac44f390ff6b06d99469bca85858fa064feb09b8c2ef799039d36dfa3f" + "tx_hash": "6ac387e7a4732b3b47f0a44d4265bf5b9e977878f765bf98458be3555cade1d0" }, "tx_hash": null, "block_index": 130, - "block_time": 1730149860 + "block_time": 1730152319 } ], "next_cursor": 110, @@ -11045,17 +11088,17 @@ "block_index": 136, "commission": 0, "earn_quantity": 40, - "fairminter_tx_hash": "bcf29c0e837090a7e6c580ad967e8dcfe4a06b30a14dfdc434c2878ae3674ab5", + "fairminter_tx_hash": "7bf87f6bffa46a3fcb072996b272f354e8b8bcb62d27b5ab21bf9290781edbf4", "paid_quantity": 34, - "source": "bcrt1q6ccdga7lpahq07g739y5xvcsgq9kphf4ynv2se", + "source": "bcrt1q25glra5pnw22qz2dxwrfgeqvhmjm395aahm20g", "status": "valid", - "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", + "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", "tx_index": 23, - "block_time": 1730149883, + "block_time": 1730152352, "asset_info": { "asset_longname": "", "description": "", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, @@ -11063,9 +11106,9 @@ "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, - "tx_hash": "bc30508763f0a8f464e8fc53100aae214919bdf13a7d59934e1be0dd532163d7", + "tx_hash": "56b0ac88f54ca2611881f2c8478a761603f5cf942a379a757a13b52c2c193505", "block_index": 136, - "block_time": 1730149883 + "block_time": 1730152352 } ], "next_cursor": 190, @@ -11079,28 +11122,28 @@ "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "7ca7c8421c7f6b4f2a716ce81cec47f1f83d35e354651030b94b06e3bbec4711:0", + "destination": "207fdf628890c2cdfacd39769716d0a739ebe45cff3b74a01d319a60a717ff5b:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", + "source": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", "status": "valid", - "tx_hash": "7ca7c8421c7f6b4f2a716ce81cec47f1f83d35e354651030b94b06e3bbec4711", + "tx_hash": "207fdf628890c2cdfacd39769716d0a739ebe45cff3b74a01d319a60a717ff5b", "tx_index": 65, - "block_time": 1730150128, + "block_time": 1730152606, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qs9zuuhfhq6tmyq5sa39xgnuvqk4mjh0guf99qa", + "issuer": "bcrt1qmglcwnw3w540cgj4ck5dzjd6gndpckn78zfz0t", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "7ca7c8421c7f6b4f2a716ce81cec47f1f83d35e354651030b94b06e3bbec4711", + "tx_hash": "207fdf628890c2cdfacd39769716d0a739ebe45cff3b74a01d319a60a717ff5b", "block_index": 199, - "block_time": 1730150128 + "block_time": 1730152606 } ], "next_cursor": 319, @@ -11114,28 +11157,28 @@ "params": { "asset": "MYASSETA", "block_index": 151, - "destination": "bcrt1qg89hz5l72ck62vsg34dpc2fvtfgmuhna0e0t4c", + "destination": "bcrt1qgj5fzklvgauxn9cwyuxjug8eqmn24f4hhp6034", "fee_paid": 0, "msg_index": 0, "quantity": 500000000, - "source": "d94e197f2a619d264cc847eb0c6d0cc74b543b39ee3e674e770d01b6491332f0:0", + "source": "1470f4b572e577839544315fa7c74ff2ffcf96c223ad7652b4f6846af2f30a45:0", "status": "valid", - "tx_hash": "1f020eae3e44998e380ea6141659b829120b8ba595664630b4ae8d51e6eb3ff2", + "tx_hash": "275ebb242af669ad747ac00fb26a598f640937588b85799a1d47bb4a881e4c86", "tx_index": 38, - "block_time": 1730149952, + "block_time": 1730152407, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q2wkdyzuffyk9gepdsxujehpjscsydnn3ggvu70", + "issuer": "bcrt1q09nlpg9an5ecqnk04szas6dj0q4rgeap5a7u9s", "divisible": true, "locked": false }, "quantity_normalized": "5.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "1f020eae3e44998e380ea6141659b829120b8ba595664630b4ae8d51e6eb3ff2", + "tx_hash": "275ebb242af669ad747ac00fb26a598f640937588b85799a1d47bb4a881e4c86", "block_index": 151, - "block_time": 1730149952 + "block_time": 1730152407 } ], "next_cursor": null, @@ -11149,14 +11192,14 @@ "params": { "asset": "XCP", "block_index": 208, - "destination": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b:0", + "destination": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7:0", "msg_index": 1, "quantity": 1500000000, - "source": "46bff0577271d810951e4b995634f69ed5b008f9c79a236c91668cc7409a2849:1", + "source": "0abb519e0de24e0c42b3f70f2c258f5b11e73be765075ddaf0e2986774a97f76:1", "status": "valid", - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "tx_index": 75, - "block_time": 1730150176, + "block_time": 1730152668, "asset_info": { "divisible": true, "asset_longname": null, @@ -11166,9 +11209,9 @@ }, "quantity_normalized": "15.00000000" }, - "tx_hash": "ae9b5e709d4463fe7ebdf411c4911e12fde99497440f6b9e6d0bd2e5ff15295b", + "tx_hash": "24255a55d682575210bba91dad4fe8d563a81fd4b4f1756e41dc5fce8d9f88e7", "block_index": 208, - "block_time": 1730150176 + "block_time": 1730152668 } ], "next_cursor": 667, @@ -11183,17 +11226,17 @@ "block_index": 121, "burned": 50000000, "earned": 74999996667, - "source": "bcrt1qvpsk2579x0my98dh6s9fxhlmk9u454p63anff9", + "source": "bcrt1qy99t2ccel0rgwsv77j7t730c4v3xwu0q4z02rr", "status": "valid", - "tx_hash": "1d67669f030d7a8d4afa14aaefef4fe7d507c15946907c1ec3b5688d4f587ce5", + "tx_hash": "faec55ede76eee50988cf0d4f1bb25d8fe1f5c75dd94ddc9427d732ef5b65344", "tx_index": 9, - "block_time": 1730149826, + "block_time": 1730152285, "burned_normalized": "0.50000000", "earned_normalized": "749.99997000" }, - "tx_hash": "1d67669f030d7a8d4afa14aaefef4fe7d507c15946907c1ec3b5688d4f587ce5", + "tx_hash": "faec55ede76eee50988cf0d4f1bb25d8fe1f5c75dd94ddc9427d732ef5b65344", "block_index": 121, - "block_time": 1730149826 + "block_time": 1730152285 } ], "next_cursor": 65, diff --git a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py index 527146a90d..a5b93eda05 100644 --- a/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py +++ b/counterparty-core/counterpartycore/test/regtest/scenarios/scenario_last_mempool.py @@ -21,7 +21,7 @@ "params": { "dispenser": "$ADDRESS_6", "quantity": 1000, - "unspents_set": "$ATOMICSWAP_2_TX_HASH:1", + "inputs_set": "$ATOMICSWAP_2_TX_HASH:1", "exact_fee": 1, }, "expected_error": "invalid UTXO: $ATOMICSWAP_2_TX_HASH:1", @@ -34,7 +34,7 @@ "params": { "dispenser": "$ADDRESS_6", "quantity": 1000, - "unspents_set": "ATOMICSWAP_2_TX_HASH:1", + "inputs_set": "$ATOMICSWAP_2_TX_HASH:1", "use_utxos_with_balances": True, "exact_fee": 1, }, diff --git a/dredd.yml b/dredd.yml index 44afc63e85..e657201046 100644 --- a/dredd.yml +++ b/dredd.yml @@ -76,6 +76,7 @@ only: - Compose > Compose Burn > Compose Burn - Compose > Compose Cancel > Compose Cancel - Compose > Compose Destroy > Compose Destroy +- Compose > Compose Dispenser > Compose Dispenser - Compose > Compose Dividend > Compose Dividend - Compose > Compose Issuance > Compose Issuance - Compose > Compose MPMA > Compose MPMA