From e64d8c6f06b5449b0c9254c62c662a8c0560f8cf Mon Sep 17 00:00:00 2001 From: Adam Krellenstein Date: Fri, 28 Feb 2025 08:28:46 -0500 Subject: [PATCH 1/9] Tweak Release Notes --- release-notes/release-notes-v10.10.1.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/release-notes/release-notes-v10.10.1.md b/release-notes/release-notes-v10.10.1.md index 343aadd40d..8fdfe98171 100644 --- a/release-notes/release-notes-v10.10.1.md +++ b/release-notes/release-notes-v10.10.1.md @@ -3,13 +3,10 @@ # Upgrading -Breaking Changes: -The commands `get_asset_names` and `get_asset_longnames` have been removed from API v1. If you are using these commands, you must replace them with the following endpoint: `/v2/assets`. +**Breaking Changes:** +The commands `get_asset_names` and `get_asset_longnames` have been removed from API v1, as they are buggy and extremely non-performant. If you are using these endpoints, you must replace them with `/v2/assets`. -**IMPORTANT** -- If you are running a version lower than 10.9.0, you must first update to 10.9.0 and only then install v10.10.0. - -Download the latest version of `counterparty-core` and restart `counterparty-server`. +To upgrade, download the latest version of `counterparty-core` and restart `counterparty-server`. With Docker Compose: From cddb9e7a43f39df0b1376bfb7eae8575abb758ee Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 28 Feb 2025 13:59:31 +0000 Subject: [PATCH 2/9] Fix blueprint --- .../test/integrations/regtest/genapidoc.py | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/counterparty-core/counterpartycore/test/integrations/regtest/genapidoc.py b/counterparty-core/counterpartycore/test/integrations/regtest/genapidoc.py index fbd55f1618..f3a78551c0 100644 --- a/counterparty-core/counterpartycore/test/integrations/regtest/genapidoc.py +++ b/counterparty-core/counterpartycore/test/integrations/regtest/genapidoc.py @@ -233,14 +233,13 @@ def gen_blueprint(db): md += f"\n### {title} " - first_query_arg = True + query_params = [] for arg in route["args"]: if f"{{{arg['name']}}}" in blueprint_path: continue else: - prefix = "?" if first_query_arg else "&" - first_query_arg = False - blueprint_path += f"{{{prefix}{arg['name']}}}" + query_params.append(arg["name"]) + blueprint_path += f'{{?{",".join(query_params)}}}' if query_params else "" md += f"[GET {blueprint_path}]\n\n" md += route["description"].strip() @@ -273,7 +272,7 @@ def gen_blueprint(db): example_arg = ": `true`" md += f" + {arg['name']}{example_arg} ({arg['type']}, {required}) - {description}\n" if not arg["required"]: - md += f" + Default: `{arg.get('default', '')}`\n" + md += f" + Default: `{arg.get('default', '') or 'omitted'}`\n" if "members" in arg: md += " + Members\n" for member in arg["members"]: @@ -626,9 +625,9 @@ def generate_regtest_fixtures(db): print("Generating API documentation...") data_dir = sys.argv[1] if len(sys.argv) > 1 else "regtestnode" print(f"Using data directory: {data_dir}") - assert os.path.exists(f"{data_dir}/counterparty.regtest.db"), ( - f"Data directory {data_dir} does not exist." - ) + assert os.path.exists( + f"{data_dir}/counterparty.regtest.db" + ), f"Data directory {data_dir} does not exist." db = database.get_db_connection( f"{data_dir}/counterparty.regtest.db", read_only=True, check_wal=False ) From 85d9caf3c69b06b968e7dc696a65a833216c815d Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Fri, 28 Feb 2025 14:44:39 +0000 Subject: [PATCH 3/9] tweaks --- apiary.apib | 6175 +++++++++-------- .../counterpartycore/lib/api/apiserver.py | 2 +- .../integrations/regtest/apidoc/apicache.json | 4347 ++++++------ .../test/integrations/regtest/genapidoc.py | 2 +- 4 files changed, 5324 insertions(+), 5202 deletions(-) diff --git a/apiary.apib b/apiary.apib index c4fe3c267c..8516bc1441 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2025-02-25 13:28:49.443500. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2025-02-28 14:39:59.149156. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -190,15 +190,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 1029, "event": "NEW_BLOCK", "params": { - "block_hash": "44fcdffec36869bfac0fcbe3dee59bfa74c885e0fd9b7f4eb83f716eecd633fc", + "block_hash": "402a9cba4098a24fe8d8f48f8789a268d9072cbcd7ce9ec413654d1b410c2742", "block_index": 245, - "block_time": 1740490111, + "block_time": 1740753580, "difficulty": 545259519, - "previous_block_hash": "59abc6ae9e93883361d2127f5c13f5228d604f6c47f2855b3d6410f8eb826846" + "previous_block_hash": "59039ef834894a4134f1bf867cd93ab4fc3d83843d4475dc0b48e989e26c1b22" }, "tx_hash": null, "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 } ], "next_cursor": 1027, @@ -215,23 +215,23 @@ Here is a list of events classified by theme and for each an example response: "event_index": 1030, "event": "NEW_TRANSACTION", "params": { - "block_hash": "44fcdffec36869bfac0fcbe3dee59bfa74c885e0fd9b7f4eb83f716eecd633fc", + "block_hash": "402a9cba4098a24fe8d8f48f8789a268d9072cbcd7ce9ec413654d1b410c2742", "block_index": 245, - "block_time": 1740490111, + "block_time": 1740753580, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "destination": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "fee": 0, - "source": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "source": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "transaction_type": "dispense", - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121, - "utxos_info": "e1da70a78196a01b1d83828ad454578cd9ccd3a37215d0732042f9cd20028b65:1 d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0 3 1", + "utxos_info": "1ed2fd4becb681def304deac3d082b15a118778c325034d0274bf89ef24c648e:1 cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0 3 1", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 } ], "next_cursor": 1020, @@ -250,16 +250,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 245, "btc_amount": 1000, - "destination": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "destination": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "out_index": 0, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121, - "block_time": 1740490111, + "block_time": 1740753580, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 } ], "next_cursor": 981, @@ -277,15 +277,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 245, - "ledger_hash": "b9137879674322b25ee447b5c225d662c1acf3be0757f8b5e365950c1478ed55", - "messages_hash": "a49feef7ed0848b13a8640617cd2f1339afe84eca2fa74e11a09d16cfe074612", + "ledger_hash": "169427d6d77a9483240539b2eb6deb5a55eccf2c8c228d362ad1e608642da0d6", + "messages_hash": "1721cf767e2ced8a6111698e0f26f3a291dc76980c733ba659607b17df4f261b", "transaction_count": 1, - "txlist_hash": "54253e0fb81873afdb56f96b0951b0600ee982e8ad70c7e45270dcc9ed2f1bbb", - "block_time": 1740490111 + "txlist_hash": "aed4a8ef0b8646530b8b439c9d87f4d92338544701b22c0bc085c8c541fcb676", + "block_time": 1740753580 }, "tx_hash": null, "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 } ], "next_cursor": 1028, @@ -303,12 +303,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121 }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 } ], "next_cursor": 1025, @@ -331,12 +331,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 245, - "event": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "event": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "quantity": 2000000000, "tx_index": 121, - "utxo": "e1da70a78196a01b1d83828ad454578cd9ccd3a37215d0732042f9cd20028b65:1", - "utxo_address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", - "block_time": 1740490111, + "utxo": "1ed2fd4becb681def304deac3d082b15a118778c325034d0274bf89ef24c648e:1", + "utxo_address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -347,9 +347,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 } ], "next_cursor": 1032, @@ -366,16 +366,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 1038, "event": "CREDIT", "params": { - "address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "asset": "XCP", "block_index": 245, "calling_function": "dispense", - "event": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "event": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "quantity": 66, "tx_index": 121, "utxo": null, "utxo_address": null, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -386,9 +386,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 } ], "next_cursor": 1036, @@ -407,29 +407,29 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "memo": null, "msg_index": 0, "quantity": 1000, "send_type": "send", - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "status": "valid", - "tx_hash": "0022913062f0470672f6b471ff669c43b45ce767fa522bcd64b909f606d59cd0", + "tx_hash": "395d0055fa629e8b903f7a69f5823dbb937bb3444b939d9dfcfad2439b0c3a2a", "tx_index": 77, - "block_time": 1740489923, + "block_time": 1740753397, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00001000" }, - "tx_hash": "0022913062f0470672f6b471ff669c43b45ce767fa522bcd64b909f606d59cd0", + "tx_hash": "395d0055fa629e8b903f7a69f5823dbb937bb3444b939d9dfcfad2439b0c3a2a", "block_index": 201, - "block_time": 1740489923 + "block_time": 1740753397 } ], "next_cursor": 528, @@ -448,16 +448,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "destination": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "memo": "memo1", "msg_index": 2, "quantity": 10, "send_type": "send", - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "status": "valid", - "tx_hash": "10823d6a8b3b44da8361e887a02942fa28973b782e59ec26ece5a7c88b8d974d", + "tx_hash": "0fcfb7c950c395c49f32db5d575d9e5caabfdd2cb83d82b67c3bcdd58f75caf2", "tx_index": 81, - "block_time": 1740489939, + "block_time": 1740753411, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -468,9 +468,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "10823d6a8b3b44da8361e887a02942fa28973b782e59ec26ece5a7c88b8d974d", + "tx_hash": "0fcfb7c950c395c49f32db5d575d9e5caabfdd2cb83d82b67c3bcdd58f75caf2", "block_index": 205, - "block_time": 1740489939 + "block_time": 1740753411 } ], "next_cursor": 712, @@ -508,20 +508,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 190, - "destination": "bcrt1qndrj8uy6the35p3gpjuuss7l29hwe0npylexmz", + "destination": "bcrt1qlcwsn76fxk7x4ptkx6rz99efcvj2np6c8j4ugh", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", + "source": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", "status": "valid", - "tx_hash": "e0043724de46115717f26d5126665cd592e152dc397d4ecbcd7e41809a575b49", + "tx_hash": "8147d0b6ade433cc41f566d17ffb795496b06717b221c9b6e5491a73d12186b3", "tx_index": 65, - "block_time": 1740489877, + "block_time": 1740753350, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "e0043724de46115717f26d5126665cd592e152dc397d4ecbcd7e41809a575b49", + "tx_hash": "8147d0b6ade433cc41f566d17ffb795496b06717b221c9b6e5491a73d12186b3", "block_index": 190, - "block_time": 1740489877 + "block_time": 1740753350 } ], "next_cursor": null, @@ -543,18 +543,18 @@ Here is a list of events classified by theme and for each an example response: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "status": "valid", - "tx_hash": "6404a2478fe98ef828070b2da13ef824ea7cebae41e377cfdee911728b8c926a", + "tx_hash": "a816b85352c7030e2d21125a6684830b03e16eea3e72f9987245c7f2b90eb2ab", "tx_index": 42, - "block_time": 1740489729, + "block_time": 1740753202, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "dividend_asset_info": { "asset_longname": null, @@ -567,9 +567,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.00020000" }, - "tx_hash": "6404a2478fe98ef828070b2da13ef824ea7cebae41e377cfdee911728b8c926a", + "tx_hash": "a816b85352c7030e2d21125a6684830b03e16eea3e72f9987245c7f2b90eb2ab", "block_index": 146, - "block_time": 1740489729 + "block_time": 1740753202 } ], "next_cursor": null, @@ -598,22 +598,22 @@ Here is a list of events classified by theme and for each an example response: "description": "", "divisible": true, "fee_paid": 0, - "issuer": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg", + "issuer": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr", "locked": false, "quantity": 1200000000, "reset": true, - "source": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg", + "source": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr", "status": "valid", "transfer": false, - "tx_hash": "49aaaa4a39e9fd16889036cae02cf2fdb65f96d4447a92dce1c811b959105a85", + "tx_hash": "1d28ac142d28f1fe544a134f24a6dc3e78610f27b2e5b95ad983e8109b1e1378", "tx_index": 117, - "block_time": 1740490091, + "block_time": 1740753560, "quantity_normalized": "12.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "49aaaa4a39e9fd16889036cae02cf2fdb65f96d4447a92dce1c811b959105a85", + "tx_hash": "1d28ac142d28f1fe544a134f24a6dc3e78610f27b2e5b95ad983e8109b1e1378", "block_index": 240, - "block_time": 1740490091 + "block_time": 1740753560 } ], "next_cursor": null, @@ -634,11 +634,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "OPENFAIR", "block_index": 243, - "block_time": 1740490102 + "block_time": 1740753571 }, - "tx_hash": "c6043e9ceafa1ced581e48b9bb273a6b703ad6717ff27494f1a137dfcd039321", + "tx_hash": "e38cc7d9b866c06f5f25de76734390b0b60a949310563c61719a23200bae0a13", "block_index": 243, - "block_time": 1740490102 + "block_time": 1740753571 } ], "next_cursor": 992, @@ -666,22 +666,22 @@ Here is a list of events classified by theme and for each an example response: "divisible": true, "fair_minting": true, "fee_paid": 50000000.0, - "issuer": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "issuer": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "status": "valid", "transfer": false, - "tx_hash": "c6043e9ceafa1ced581e48b9bb273a6b703ad6717ff27494f1a137dfcd039321", + "tx_hash": "e38cc7d9b866c06f5f25de76734390b0b60a949310563c61719a23200bae0a13", "tx_index": 120, - "block_time": 1740490102, + "block_time": 1740753571, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "c6043e9ceafa1ced581e48b9bb273a6b703ad6717ff27494f1a137dfcd039321", + "tx_hash": "e38cc7d9b866c06f5f25de76734390b0b60a949310563c61719a23200bae0a13", "block_index": 243, - "block_time": 1740490102 + "block_time": 1740753571 } ], "next_cursor": 993, @@ -701,25 +701,25 @@ Here is a list of events classified by theme and for each an example response: "asset": "RESET", "block_index": 240, "quantity": 12, - "source": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg", + "source": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr", "status": "valid", "tag": "reset", - "tx_hash": "49aaaa4a39e9fd16889036cae02cf2fdb65f96d4447a92dce1c811b959105a85", + "tx_hash": "1d28ac142d28f1fe544a134f24a6dc3e78610f27b2e5b95ad983e8109b1e1378", "tx_index": 117, - "block_time": 1740490091, + "block_time": 1740753560, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg", + "issuer": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr", "divisible": true, "locked": false, - "owner": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg" + "owner": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr" }, "quantity_normalized": "0.00000012" }, - "tx_hash": "49aaaa4a39e9fd16889036cae02cf2fdb65f96d4447a92dce1c811b959105a85", + "tx_hash": "1d28ac142d28f1fe544a134f24a6dc3e78610f27b2e5b95ad983e8109b1e1378", "block_index": 240, - "block_time": 1740490091 + "block_time": 1740753560 } ], "next_cursor": 885, @@ -751,11 +751,11 @@ Here is a list of events classified by theme and for each an example response: "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "status": "open", - "tx_hash": "896df8fca70776cb0b38bd40c0f30d6cf657a8e5a62fb5542597d23bca4cbcd2", + "tx_hash": "b71f67bf112fd318618ae99ab06e71211fc512da76f78a7e353f79e537479149", "tx_index": 119, - "block_time": 1740490099, + "block_time": 1740753567, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -766,10 +766,10 @@ Here is a list of events classified by theme and for each an example response: "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qs8qhqqz7us7w5kt08wqmxmqsl8h6jknlejhyru", + "issuer": "bcrt1qs4cea2gsc008ph5jngs447jnr4ls5ky0tsu92h", "divisible": true, "locked": false, - "owner": "bcrt1qs8qhqqz7us7w5kt08wqmxmqsl8h6jknlejhyru" + "owner": "bcrt1qs4cea2gsc008ph5jngs447jnr4ls5ky0tsu92h" }, "give_quantity_normalized": "0.00001000", "get_quantity_normalized": "0.00001000", @@ -780,9 +780,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": "896df8fca70776cb0b38bd40c0f30d6cf657a8e5a62fb5542597d23bca4cbcd2", + "tx_hash": "b71f67bf112fd318618ae99ab06e71211fc512da76f78a7e353f79e537479149", "block_index": 242, - "block_time": 1740490099 + "block_time": 1740753567 } ], "next_cursor": 1008, @@ -805,27 +805,27 @@ Here is a list of events classified by theme and for each an example response: "fee_paid": 0, "forward_asset": "UTXOASSET", "forward_quantity": 1000, - "id": "a420cfa1fd7462a7c3ed97e8f1ce5784e74a29c16ef5e371c51591c325999106_896df8fca70776cb0b38bd40c0f30d6cf657a8e5a62fb5542597d23bca4cbcd2", + "id": "8ebafefc195cb5f7d0be126be226bb0c73d0cfcd99f269e90bf58342aa2ae29b_b71f67bf112fd318618ae99ab06e71211fc512da76f78a7e353f79e537479149", "match_expire_index": 262, "status": "pending", - "tx0_address": "bcrt1qs8qhqqz7us7w5kt08wqmxmqsl8h6jknlejhyru", + "tx0_address": "bcrt1qs4cea2gsc008ph5jngs447jnr4ls5ky0tsu92h", "tx0_block_index": 241, "tx0_expiration": 21, - "tx0_hash": "a420cfa1fd7462a7c3ed97e8f1ce5784e74a29c16ef5e371c51591c325999106", + "tx0_hash": "8ebafefc195cb5f7d0be126be226bb0c73d0cfcd99f269e90bf58342aa2ae29b", "tx0_index": 118, - "tx1_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "tx1_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "tx1_block_index": 242, "tx1_expiration": 21, - "tx1_hash": "896df8fca70776cb0b38bd40c0f30d6cf657a8e5a62fb5542597d23bca4cbcd2", + "tx1_hash": "b71f67bf112fd318618ae99ab06e71211fc512da76f78a7e353f79e537479149", "tx1_index": 119, - "block_time": 1740490099, + "block_time": 1740753567, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qs8qhqqz7us7w5kt08wqmxmqsl8h6jknlejhyru", + "issuer": "bcrt1qs4cea2gsc008ph5jngs447jnr4ls5ky0tsu92h", "divisible": true, "locked": false, - "owner": "bcrt1qs8qhqqz7us7w5kt08wqmxmqsl8h6jknlejhyru" + "owner": "bcrt1qs4cea2gsc008ph5jngs447jnr4ls5ky0tsu92h" }, "backward_asset_info": { "divisible": true, @@ -838,9 +838,9 @@ Here is a list of events classified by theme and for each an example response: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "896df8fca70776cb0b38bd40c0f30d6cf657a8e5a62fb5542597d23bca4cbcd2", + "tx_hash": "b71f67bf112fd318618ae99ab06e71211fc512da76f78a7e353f79e537479149", "block_index": 242, - "block_time": 1740490099 + "block_time": 1740753567 } ], "next_cursor": 691, @@ -862,13 +862,13 @@ Here is a list of events classified by theme and for each an example response: "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "896df8fca70776cb0b38bd40c0f30d6cf657a8e5a62fb5542597d23bca4cbcd2", + "tx_hash": "b71f67bf112fd318618ae99ab06e71211fc512da76f78a7e353f79e537479149", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "896df8fca70776cb0b38bd40c0f30d6cf657a8e5a62fb5542597d23bca4cbcd2", + "tx_hash": "b71f67bf112fd318618ae99ab06e71211fc512da76f78a7e353f79e537479149", "block_index": 242, - "block_time": 1740490099 + "block_time": 1740753567 } ], "next_cursor": 1014, @@ -886,11 +886,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "16693d3e8624b05db62587be692a301eba7dc962293096694f84142bc3bfc5fd" + "tx_hash": "f436f8eb83ec710d9911e7b4c2e1881866b35ff2a9c7a3ac2298ed35252cb8d2" }, - "tx_hash": "5752b590a88afde0a2481b5ca3de5c7cc18ccb4d6ebcfc87e4c59512324d399e", + "tx_hash": "c8540aaed6617f7a2d6104ff8ee4efe3fb96f86087c2950f30df083f9039f9b8", "block_index": 182, - "block_time": 1740489847 + "block_time": 1740753323 } ], "next_cursor": null, @@ -907,13 +907,13 @@ Here is a list of events classified by theme and for each an example response: "event_index": 859, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "9198a9256ee36ffaa1c68b2098d9920bf461858924c70baa1e2e616814a81c54_c0b993f438e82940a24a6f2e74bca15b60d197c7afa93aea4d0f82b02cc89f96", - "order_match_id": "9198a9256ee36ffaa1c68b2098d9920bf461858924c70baa1e2e616814a81c54_c0b993f438e82940a24a6f2e74bca15b60d197c7afa93aea4d0f82b02cc89f96", + "id": "2eb60efb2a97a30c075217d0b87f6d98107655bc29264bf51bc4a537262001ea_35bd0d52757f66df9b6afcc40ea13d66c4a7f3d4e667a2ae42765c4e35517e86", + "order_match_id": "2eb60efb2a97a30c075217d0b87f6d98107655bc29264bf51bc4a537262001ea_35bd0d52757f66df9b6afcc40ea13d66c4a7f3d4e667a2ae42765c4e35517e86", "status": "expired" }, - "tx_hash": "3672a9093ed26f6be9b0f343040f560e1986e2ad87d26b05fc56b45061b87010", + "tx_hash": "e19939d8482318a35e5a0a6df5866e2f443518138e34658cee050e0cc503bdb6", "block_index": 225, - "block_time": 1740490010 + "block_time": 1740753479 } ], "next_cursor": 685, @@ -932,18 +932,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 182, "btc_amount": 2000, - "destination": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "order_match_id": "6a8b04722b5121498713e9ca34b3a634f0ef5f0cf3ee9a0753bd79b8c3f0cc10_16693d3e8624b05db62587be692a301eba7dc962293096694f84142bc3bfc5fd", - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "destination": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "order_match_id": "85ccadf57afa24a41e99d4828fdf2523b15ead1e4325a35a0754e21b540a6a7b_f436f8eb83ec710d9911e7b4c2e1881866b35ff2a9c7a3ac2298ed35252cb8d2", + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "status": "valid", - "tx_hash": "5752b590a88afde0a2481b5ca3de5c7cc18ccb4d6ebcfc87e4c59512324d399e", + "tx_hash": "c8540aaed6617f7a2d6104ff8ee4efe3fb96f86087c2950f30df083f9039f9b8", "tx_index": 57, - "block_time": 1740489847, + "block_time": 1740753323, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "5752b590a88afde0a2481b5ca3de5c7cc18ccb4d6ebcfc87e4c59512324d399e", + "tx_hash": "c8540aaed6617f7a2d6104ff8ee4efe3fb96f86087c2950f30df083f9039f9b8", "block_index": 182, - "block_time": 1740489847 + "block_time": 1740753323 } ], "next_cursor": null, @@ -961,16 +961,16 @@ Here is a list of events classified by theme and for each an example response: "event": "CANCEL_ORDER", "params": { "block_index": 188, - "offer_hash": "6514dc909d289a00f85ba5b8db7b7198c6fafe5ed2e140773835a3fe73615f94", - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "offer_hash": "4ea533fa77d8457a9bb9ee4b72f9c139d91cb88dd2e85163ca9decee2d8b4ef3", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "status": "valid", - "tx_hash": "f93a585e39ef051fa3b8ece892fc7e7c312af255705851e42df9fbb47f0983b0", + "tx_hash": "cdb4face76245fc9dd5c1d0b7976d667db7225727711a2988068a6a19ae18260", "tx_index": 63, - "block_time": 1740489870 + "block_time": 1740753344 }, - "tx_hash": "f93a585e39ef051fa3b8ece892fc7e7c312af255705851e42df9fbb47f0983b0", + "tx_hash": "cdb4face76245fc9dd5c1d0b7976d667db7225727711a2988068a6a19ae18260", "block_index": 188, - "block_time": 1740489870 + "block_time": 1740753344 } ], "next_cursor": null, @@ -988,13 +988,13 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "9198a9256ee36ffaa1c68b2098d9920bf461858924c70baa1e2e616814a81c54", - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "block_time": 1740489959 + "order_hash": "2eb60efb2a97a30c075217d0b87f6d98107655bc29264bf51bc4a537262001ea", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "block_time": 1740753432 }, - "tx_hash": "1a71a7497b56636da3130da795d86244e4bf66cc5fb4a0c3779caa71c7abb167", + "tx_hash": "5fba5595e04dd6f5e16eaca9f042f2a71b4dac18477214212ab17a7fb8c5ea1a", "block_index": 211, - "block_time": 1740489959 + "block_time": 1740753432 } ], "next_cursor": 705, @@ -1012,14 +1012,14 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "9198a9256ee36ffaa1c68b2098d9920bf461858924c70baa1e2e616814a81c54_c0b993f438e82940a24a6f2e74bca15b60d197c7afa93aea4d0f82b02cc89f96", - "tx0_address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "tx1_address": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", - "block_time": 1740490010 + "order_match_id": "2eb60efb2a97a30c075217d0b87f6d98107655bc29264bf51bc4a537262001ea_35bd0d52757f66df9b6afcc40ea13d66c4a7f3d4e667a2ae42765c4e35517e86", + "tx0_address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "tx1_address": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", + "block_time": 1740753479 }, - "tx_hash": "3672a9093ed26f6be9b0f343040f560e1986e2ad87d26b05fc56b45061b87010", + "tx_hash": "e19939d8482318a35e5a0a6df5866e2f443518138e34658cee050e0cc503bdb6", "block_index": 225, - "block_time": 1740490010 + "block_time": 1740753479 } ], "next_cursor": 688, @@ -1045,13 +1045,13 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 5000, "oracle_address": null, - "origin": "bcrt1qv82qg4jp6nn6wahdnx2d2u6cdfxyc2zuw7u9mv", + "origin": "bcrt1qtxlcgyaaap8jttl3hxycjvmeyfck6v5dpz5fet", "satoshirate": 1, - "source": "bcrt1qv82qg4jp6nn6wahdnx2d2u6cdfxyc2zuw7u9mv", + "source": "bcrt1qtxlcgyaaap8jttl3hxycjvmeyfck6v5dpz5fet", "status": 0, - "tx_hash": "c54957b9cbb662e2cc9eee1c09950f7365365a09abad1bdf1afb3cca05d63705", + "tx_hash": "89008f5718c5f916913ab4305f7a2e92c5206576bc15f232760329c909734735", "tx_index": 114, - "block_time": 1740490077, + "block_time": 1740753547, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1065,9 +1065,9 @@ Here is a list of events classified by theme and for each an example response: "escrow_quantity_normalized": "0.00005000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "c54957b9cbb662e2cc9eee1c09950f7365365a09abad1bdf1afb3cca05d63705", + "tx_hash": "89008f5718c5f916913ab4305f7a2e92c5206576bc15f232760329c909734735", "block_index": 236, - "block_time": 1740490077 + "block_time": 1740753547 } ], "next_cursor": 587, @@ -1087,9 +1087,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": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "status": 0, - "tx_hash": "1e6f693fe2759c736df4febc587f45124e79e5d8d1ce2b79f8c0bbf0f18fd87d", + "tx_hash": "f92b8a2cd1841f4bccd9efe24777307f0956dac1a8ffd7ae805361c230b6b9d0", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1100,9 +1100,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 } ], "next_cursor": 983, @@ -1121,13 +1121,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 135, - "destination": "mzKzGcYgawRDhSwKMs48ivyc7kq6eDFnxX", + "destination": "mvrb4Z4fN5XmTvMpAtvypC5WR82s4HqYvE", "dispense_quantity": 10, - "dispenser_tx_hash": "d1c103ac8f76875e2c7f2ff452e9c73ec80534fd6513ae02abc9ca5bca4bcdb4", - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "tx_hash": "cb40de33d4321bfb96d78e0ed8873b8dcd2e696825da637b73b8e91618285b79", + "dispenser_tx_hash": "5e822aad64a42fe28c61d6fec3350f56b81d5705b548af8eb9a023084292f21e", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "tx_hash": "ce464a251e83387b96c3258c46f043b88f896f805466ee42b7b430c718e9a605", "tx_index": 31, - "block_time": 1740489688, + "block_time": 1740753160, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1138,9 +1138,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "cb40de33d4321bfb96d78e0ed8873b8dcd2e696825da637b73b8e91618285b79", + "tx_hash": "ce464a251e83387b96c3258c46f043b88f896f805466ee42b7b430c718e9a605", "block_index": 135, - "block_time": 1740489688 + "block_time": 1740753160 } ], "next_cursor": null, @@ -1160,14 +1160,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 245, "btc_amount": 1000, - "destination": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "destination": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "1e6f693fe2759c736df4febc587f45124e79e5d8d1ce2b79f8c0bbf0f18fd87d", - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "dispenser_tx_hash": "f92b8a2cd1841f4bccd9efe24777307f0956dac1a8ffd7ae805361c230b6b9d0", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1179,9 +1179,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": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 } ], "next_cursor": 984, @@ -1203,19 +1203,19 @@ Here is a list of events classified by theme and for each an example response: "block_index": 129, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "e730b05d65034f972ffd6833c069ea0b65aaf6edf2cd4a4388b21d2889a3280f", + "tx_hash": "12883463bed50820d349847399001a1dd0b8da9052df6599446624b6178d062c", "tx_index": 25, "value": 66600.0, - "block_time": 1740489665, + "block_time": 1740753139, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "e730b05d65034f972ffd6833c069ea0b65aaf6edf2cd4a4388b21d2889a3280f", + "tx_hash": "12883463bed50820d349847399001a1dd0b8da9052df6599446624b6178d062c", "block_index": 129, - "block_time": 1740489665 + "block_time": 1740753139 } ], "next_cursor": 205, @@ -1253,12 +1253,12 @@ Here is a list of events classified by theme and for each an example response: "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "start_block": 0, "status": "open", - "tx_hash": "c6043e9ceafa1ced581e48b9bb273a6b703ad6717ff27494f1a137dfcd039321", + "tx_hash": "e38cc7d9b866c06f5f25de76734390b0b60a949310563c61719a23200bae0a13", "tx_index": 120, - "block_time": 1740490102, + "block_time": 1740753571, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1266,9 +1266,9 @@ Here is a list of events classified by theme and for each an example response: "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "c6043e9ceafa1ced581e48b9bb273a6b703ad6717ff27494f1a137dfcd039321", + "tx_hash": "e38cc7d9b866c06f5f25de76734390b0b60a949310563c61719a23200bae0a13", "block_index": 243, - "block_time": 1740490102 + "block_time": 1740753571 } ], "next_cursor": 874, @@ -1286,11 +1286,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "0b85ece9496719a0822cb5b2d262896ad04c7ba9da111b4a240e1f9f5b5630d6" + "tx_hash": "7ab5843978c6be38b2cf181d1da4f444c7281ad00f53f790ab1044627bf00557" }, "tx_hash": null, "block_index": 228, - "block_time": 1740490019 + "block_time": 1740753490 } ], "next_cursor": 869, @@ -1311,28 +1311,28 @@ Here is a list of events classified by theme and for each an example response: "block_index": 221, "commission": 20000000, "earn_quantity": 80000000, - "fairminter_tx_hash": "2efa348123c9d59037cd1352f1074a77e6c56630f04c6a742623c0d403824cb8", + "fairminter_tx_hash": "15a3ae28b67e570b5f5f1c5bcc2f0b2f83ce61d6a4064808c11a302d84116820", "paid_quantity": 100000000, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "status": "valid", - "tx_hash": "f008cc467441d6088b240484737bc7c3a9665fca802126e7724a0e297fec8adc", + "tx_hash": "1ffd9a637ab9135f1ed4d76c3c4f72e4890edec39cc418c2108b1ade43c92080", "tx_index": 97, - "block_time": 1740489996, + "block_time": 1740753466, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg", + "issuer": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr", "divisible": true, "locked": true, - "owner": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg" + "owner": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr" }, "earn_quantity_normalized": "0.80000000", "commission_normalized": "0.20000000", "paid_quantity_normalized": "1.00000000" }, - "tx_hash": "f008cc467441d6088b240484737bc7c3a9665fca802126e7724a0e297fec8adc", + "tx_hash": "1ffd9a637ab9135f1ed4d76c3c4f72e4890edec39cc418c2108b1ade43c92080", "block_index": 221, - "block_time": 1740489996 + "block_time": 1740753466 } ], "next_cursor": 816, @@ -1353,31 +1353,31 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "DETACHA", "block_index": 235, - "destination": "a702c044a28ed7855dac07e2dd7b9c5925db98cae259cfb2ca1c29158149b5d6:0", - "destination_address": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg", + "destination": "999b5986f89d32f3369c3fc006bd7d7b7a7794d4eb8b01cba13fee3f0e54efbf:0", + "destination_address": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr", "fee_paid": 0, "msg_index": 0, "quantity": 100000000, "send_type": "attach", - "source": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg", + "source": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr", "status": "valid", - "tx_hash": "a702c044a28ed7855dac07e2dd7b9c5925db98cae259cfb2ca1c29158149b5d6", + "tx_hash": "999b5986f89d32f3369c3fc006bd7d7b7a7794d4eb8b01cba13fee3f0e54efbf", "tx_index": 112, - "block_time": 1740490071, + "block_time": 1740753541, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg", + "issuer": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr", "divisible": true, "locked": false, - "owner": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg" + "owner": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr" }, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "a702c044a28ed7855dac07e2dd7b9c5925db98cae259cfb2ca1c29158149b5d6", + "tx_hash": "999b5986f89d32f3369c3fc006bd7d7b7a7794d4eb8b01cba13fee3f0e54efbf", "block_index": 235, - "block_time": 1740490071 + "block_time": 1740753541 } ], "next_cursor": 944, @@ -1396,31 +1396,31 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "DETACHB", "block_index": 234, - "destination": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg", + "destination": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr", "fee_paid": 0, "msg_index": 1, "quantity": 100000000, "send_type": "detach", - "source": "20c0fc221da530e6e260f1ee566d166e62abc63cb109a4b309b1a76a06aaa7a5:0", - "source_address": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg", + "source": "2d8a67809a6685095b83de680e85dd9314a06208b7420d1be3f65b5f12082794:0", + "source_address": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr", "status": "valid", - "tx_hash": "0d1319c529b7c96f1df0c028a6b1fcb99341b7ecb0dbd8f5626ad9afad76b1c8", + "tx_hash": "b6be2c257415be98ba53e7e7395843acd2fab4297ab089ff5e6ac1ac7fac4b6d", "tx_index": 111, - "block_time": 1740490068, + "block_time": 1740753537, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg", + "issuer": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr", "divisible": true, "locked": false, - "owner": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg" + "owner": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr" }, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "0d1319c529b7c96f1df0c028a6b1fcb99341b7ecb0dbd8f5626ad9afad76b1c8", + "tx_hash": "b6be2c257415be98ba53e7e7395843acd2fab4297ab089ff5e6ac1ac7fac4b6d", "block_index": 234, - "block_time": 1740490068 + "block_time": 1740753537 } ], "next_cursor": 954, @@ -1439,17 +1439,17 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 245, - "destination": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0", - "destination_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "destination": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0", + "destination_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "msg_index": 1, "quantity": 2000000000, "send_type": "move", - "source": "e1da70a78196a01b1d83828ad454578cd9ccd3a37215d0732042f9cd20028b65:1", - "source_address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "source": "1ed2fd4becb681def304deac3d082b15a118778c325034d0274bf89ef24c648e:1", + "source_address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "status": "valid", - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1460,9 +1460,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 } ], "next_cursor": 1034, @@ -1484,17 +1484,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 112, "burned": 50000000, "earned": 74999998167, - "source": "bcrt1qqus708ucy6kecks0w8pykqmghard6kqf8tus06", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "status": "valid", - "tx_hash": "beda70b3db805311a89d8cd707eac784473ce3a6d7e7b6230b6533a7a242c0db", + "tx_hash": "5ca833028d5d598d9610aba72d0dd5c265fb27a57f936fa7a834a0bde7683f9c", "tx_index": 9, - "block_time": 1740489603, + "block_time": 1740753074, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, - "tx_hash": "beda70b3db805311a89d8cd707eac784473ce3a6d7e7b6230b6533a7a242c0db", + "tx_hash": "5ca833028d5d598d9610aba72d0dd5c265fb27a57f936fa7a834a0bde7683f9c", "block_index": 112, - "block_time": 1740489603 + "block_time": 1740753074 } ], "next_cursor": 58, @@ -1534,17 +1534,17 @@ Unconfirmed transactions are considered unordered and each one is parsed indepen ## Group Blocks -### Get Blocks [GET /v2/blocks{?cursor}{&limit}{&offset}{&verbose}] +### Get Blocks [GET /v2/blocks{?cursor,limit,offset,verbose}] Returns the list of the last ten blocks + Parameters + cursor: `245` (str, optional) - The index of the most recent block to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The number of blocks to return + Default: `10` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -1555,56 +1555,56 @@ Returns the list of the last ten blocks "result": [ { "block_index": 245, - "block_hash": "44fcdffec36869bfac0fcbe3dee59bfa74c885e0fd9b7f4eb83f716eecd633fc", - "block_time": 1740490111, - "ledger_hash": "b9137879674322b25ee447b5c225d662c1acf3be0757f8b5e365950c1478ed55", - "txlist_hash": "54253e0fb81873afdb56f96b0951b0600ee982e8ad70c7e45270dcc9ed2f1bbb", - "messages_hash": "a49feef7ed0848b13a8640617cd2f1339afe84eca2fa74e11a09d16cfe074612", - "previous_block_hash": "59abc6ae9e93883361d2127f5c13f5228d604f6c47f2855b3d6410f8eb826846", + "block_hash": "402a9cba4098a24fe8d8f48f8789a268d9072cbcd7ce9ec413654d1b410c2742", + "block_time": 1740753580, + "ledger_hash": "169427d6d77a9483240539b2eb6deb5a55eccf2c8c228d362ad1e608642da0d6", + "txlist_hash": "aed4a8ef0b8646530b8b439c9d87f4d92338544701b22c0bc085c8c541fcb676", + "messages_hash": "1721cf767e2ced8a6111698e0f26f3a291dc76980c733ba659607b17df4f261b", + "previous_block_hash": "59039ef834894a4134f1bf867cd93ab4fc3d83843d4475dc0b48e989e26c1b22", "difficulty": 545259519, "transaction_count": 1 }, { "block_index": 244, - "block_hash": "59abc6ae9e93883361d2127f5c13f5228d604f6c47f2855b3d6410f8eb826846", - "block_time": 1740490105, - "ledger_hash": "7fed50b3951df996f161009a6069791fec11c4ae8deea6a93765ded7160ae69f", - "txlist_hash": "389cc49dc24b7263b22e06557573f666f3a0488b491e69d12d35d8938a29686c", - "messages_hash": "cf6397c19916bd9c89433867a3fea591a39ac8f4bb81b0ed06ab13fd87904a0b", - "previous_block_hash": "12d4f9dd3786b1c71eb33af5170df7a0adb67864ea43afa06da43431972140c6", + "block_hash": "59039ef834894a4134f1bf867cd93ab4fc3d83843d4475dc0b48e989e26c1b22", + "block_time": 1740753575, + "ledger_hash": "330529d22fc2718bbecde599ffa8d5a749559fc9caf47a84bdad728673bc32f8", + "txlist_hash": "8fd5a9a8902733b7eecbeef05560ff7c86dfa869a6654f3e50048e7081bb0e9f", + "messages_hash": "729aa221466443f465b6a16b6333b8d5d8be3a292df9ef27944bd1afe7030c43", + "previous_block_hash": "0f89d2f5f9838877f87f99bc9b1b38b56a6be4d2c8b79f3b8234f7eace2e9f00", "difficulty": 545259519, "transaction_count": 0 }, { "block_index": 243, - "block_hash": "12d4f9dd3786b1c71eb33af5170df7a0adb67864ea43afa06da43431972140c6", - "block_time": 1740490102, - "ledger_hash": "3de385b0f3e90e527064422c1fd6d674e9365daf9637d337337d0d2b439e202e", - "txlist_hash": "0f5e83a92d6cd8b3b621efd4d762472f219feea92ee6f5909ddb2929847c5250", - "messages_hash": "fd9704ed65591d9a2060f35d184993bce62a7148def67749a45aefc9dca92335", - "previous_block_hash": "535e3df082a630fbd8213a240a46545bd1bc7b94346c2b337dbe86265f72b50f", + "block_hash": "0f89d2f5f9838877f87f99bc9b1b38b56a6be4d2c8b79f3b8234f7eace2e9f00", + "block_time": 1740753571, + "ledger_hash": "5646e05e4feefc124720d81c880afd1969b6aead7d034094a903135e65aa94a1", + "txlist_hash": "8ee27e98adce925256bcf41b0d60459ad4403e488405084c9b97accd872057fc", + "messages_hash": "1a83f98d6ba1b16fc4ea01e74d05bf60265473460595eababb109555479da1d6", + "previous_block_hash": "5b6308284e60e19e4dbd3a9f98113810cc1f50279c6556bb2a65e02c947dafec", "difficulty": 545259519, "transaction_count": 1 }, { "block_index": 242, - "block_hash": "535e3df082a630fbd8213a240a46545bd1bc7b94346c2b337dbe86265f72b50f", - "block_time": 1740490099, - "ledger_hash": "2ddd2079b238f1e0c394a657b267baebe1c0196c53f37bf734a96bfb8d6dd17f", - "txlist_hash": "844cd40ad6fd2868fd0482d7aeb3379d6832c5aff037150426032512d999ec85", - "messages_hash": "e45226d562642906dc393fa820a8130ec520d05c8f36db37e7ac0e0da9200c9e", - "previous_block_hash": "7842890bfb89f95456258b0a4ddf608559a50a845e23b9e9c0ee9d8d62468742", + "block_hash": "5b6308284e60e19e4dbd3a9f98113810cc1f50279c6556bb2a65e02c947dafec", + "block_time": 1740753567, + "ledger_hash": "9f695ecc045d429fab7cf0547fe6a273663e58b32d0147fa39bdbe7664f93bbc", + "txlist_hash": "bb6ffa38fd460f98ef11c67242587bf66f7432f99ae687047131d6a4f8d7a3e1", + "messages_hash": "f1694a4d1e38103a439118bbb33cf3e56d6e141fac6a4f6ece4b8e5cc91f2abe", + "previous_block_hash": "69eb4a81c8ac1fd0b9e497cd9635aaec2594e5093306f5e4e1e75239feb43d62", "difficulty": 545259519, "transaction_count": 1 }, { "block_index": 241, - "block_hash": "7842890bfb89f95456258b0a4ddf608559a50a845e23b9e9c0ee9d8d62468742", - "block_time": 1740490094, - "ledger_hash": "66ffe0376d748bf907cb2964943ba10c0b4877dac752c039994a596a10fa6cc4", - "txlist_hash": "acd6ba42a10fa3f0944faa4f6d74158a5a277d9597df134d424165a3d5f82c76", - "messages_hash": "bfde5efbed61be01fe764fda114d7e2adc06000cbc630313cad82e0fefab0dd9", - "previous_block_hash": "2d83010c2269342ae95a9f94f19429b42ca16c40d4c17b843e62bf722a556452", + "block_hash": "69eb4a81c8ac1fd0b9e497cd9635aaec2594e5093306f5e4e1e75239feb43d62", + "block_time": 1740753563, + "ledger_hash": "4b31b3b1f5293d2b4d15aacc0daff8ef2f0e8615bc41d7286875380159d7c936", + "txlist_hash": "e1ab864a8b51b8fd9f81d7f78c08e51497b3ebd684a68606a8adb18f31cc2482", + "messages_hash": "e3d891a5f8276b37b9637aea717606cdc4e4c31ba89091d5cd1f3109eab07e2a", + "previous_block_hash": "545399a660d8944c8773cfd92e81f6e73e7070d4dae0b246901ed812a1ee76c4", "difficulty": 545259519, "transaction_count": 1 } @@ -1628,12 +1628,12 @@ Return the information of the last block { "result": { "block_index": 245, - "block_hash": "44fcdffec36869bfac0fcbe3dee59bfa74c885e0fd9b7f4eb83f716eecd633fc", - "block_time": 1740490111, - "ledger_hash": "b9137879674322b25ee447b5c225d662c1acf3be0757f8b5e365950c1478ed55", - "txlist_hash": "54253e0fb81873afdb56f96b0951b0600ee982e8ad70c7e45270dcc9ed2f1bbb", - "messages_hash": "a49feef7ed0848b13a8640617cd2f1339afe84eca2fa74e11a09d16cfe074612", - "previous_block_hash": "59abc6ae9e93883361d2127f5c13f5228d604f6c47f2855b3d6410f8eb826846", + "block_hash": "402a9cba4098a24fe8d8f48f8789a268d9072cbcd7ce9ec413654d1b410c2742", + "block_time": 1740753580, + "ledger_hash": "169427d6d77a9483240539b2eb6deb5a55eccf2c8c228d362ad1e608642da0d6", + "txlist_hash": "aed4a8ef0b8646530b8b439c9d87f4d92338544701b22c0bc085c8c541fcb676", + "messages_hash": "1721cf767e2ced8a6111698e0f26f3a291dc76980c733ba659607b17df4f261b", + "previous_block_hash": "59039ef834894a4134f1bf867cd93ab4fc3d83843d4475dc0b48e989e26c1b22", "difficulty": 545259519, "transaction_count": 1 } @@ -1655,12 +1655,12 @@ Return the information of a block { "result": { "block_index": 245, - "block_hash": "44fcdffec36869bfac0fcbe3dee59bfa74c885e0fd9b7f4eb83f716eecd633fc", - "block_time": 1740490111, - "ledger_hash": "b9137879674322b25ee447b5c225d662c1acf3be0757f8b5e365950c1478ed55", - "txlist_hash": "54253e0fb81873afdb56f96b0951b0600ee982e8ad70c7e45270dcc9ed2f1bbb", - "messages_hash": "a49feef7ed0848b13a8640617cd2f1339afe84eca2fa74e11a09d16cfe074612", - "previous_block_hash": "59abc6ae9e93883361d2127f5c13f5228d604f6c47f2855b3d6410f8eb826846", + "block_hash": "402a9cba4098a24fe8d8f48f8789a268d9072cbcd7ce9ec413654d1b410c2742", + "block_time": 1740753580, + "ledger_hash": "169427d6d77a9483240539b2eb6deb5a55eccf2c8c228d362ad1e608642da0d6", + "txlist_hash": "aed4a8ef0b8646530b8b439c9d87f4d92338544701b22c0bc085c8c541fcb676", + "messages_hash": "1721cf767e2ced8a6111698e0f26f3a291dc76980c733ba659607b17df4f261b", + "previous_block_hash": "59039ef834894a4134f1bf867cd93ab4fc3d83843d4475dc0b48e989e26c1b22", "difficulty": 545259519, "transaction_count": 1 } @@ -1672,7 +1672,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `44fcdffec36869bfac0fcbe3dee59bfa74c885e0fd9b7f4eb83f716eecd633fc` (str, required) - The index of the block to return + + block_hash: `402a9cba4098a24fe8d8f48f8789a268d9072cbcd7ce9ec413654d1b410c2742` (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` @@ -1682,19 +1682,19 @@ Return the information of a block { "result": { "block_index": 245, - "block_hash": "44fcdffec36869bfac0fcbe3dee59bfa74c885e0fd9b7f4eb83f716eecd633fc", - "block_time": 1740490111, - "ledger_hash": "b9137879674322b25ee447b5c225d662c1acf3be0757f8b5e365950c1478ed55", - "txlist_hash": "54253e0fb81873afdb56f96b0951b0600ee982e8ad70c7e45270dcc9ed2f1bbb", - "messages_hash": "a49feef7ed0848b13a8640617cd2f1339afe84eca2fa74e11a09d16cfe074612", - "previous_block_hash": "59abc6ae9e93883361d2127f5c13f5228d604f6c47f2855b3d6410f8eb826846", + "block_hash": "402a9cba4098a24fe8d8f48f8789a268d9072cbcd7ce9ec413654d1b410c2742", + "block_time": 1740753580, + "ledger_hash": "169427d6d77a9483240539b2eb6deb5a55eccf2c8c228d362ad1e608642da0d6", + "txlist_hash": "aed4a8ef0b8646530b8b439c9d87f4d92338544701b22c0bc085c8c541fcb676", + "messages_hash": "1721cf767e2ced8a6111698e0f26f3a291dc76980c733ba659607b17df4f261b", + "previous_block_hash": "59039ef834894a4134f1bf867cd93ab4fc3d83843d4475dc0b48e989e26c1b22", "difficulty": 545259519, "transaction_count": 1 } } ``` -### Get Transactions By Block [GET /v2/blocks/{block_index}/transactions{?type}{&show_unconfirmed}{&cursor}{&limit}{&offset}{&verbose}] +### Get Transactions By Block [GET /v2/blocks/{block_index}/transactions{?type,show_unconfirmed,cursor,limit,offset,verbose}] Returns the transactions of a block @@ -1727,13 +1727,13 @@ Returns the transactions of a block + `utxomove` + `unknown` + show_unconfirmed (bool, optional) - Show unconfirmed transactions - + Default: `False` + + Default: `null` + cursor: `121` (str, optional) - The last transaction index to return - + Default: `None` + + Default: `null` + 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` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -1744,17 +1744,17 @@ Returns the transactions of a block "result": [ { "tx_index": 121, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_hash": "44fcdffec36869bfac0fcbe3dee59bfa74c885e0fd9b7f4eb83f716eecd633fc", - "block_time": 1740490111, - "source": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", - "destination": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "block_hash": "402a9cba4098a24fe8d8f48f8789a268d9072cbcd7ce9ec413654d1b410c2742", + "block_time": 1740753580, + "source": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", + "destination": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e1da70a78196a01b1d83828ad454578cd9ccd3a37215d0732042f9cd20028b65:1 d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0 3 1", + "utxos_info": "1ed2fd4becb681def304deac3d082b15a118778c325034d0274bf89ef24c648e:1 cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0 3 1", "transaction_type": "dispense", "events": [ { @@ -1763,30 +1763,30 @@ Returns the transactions of a block "params": { "asset": "MYASSETA", "block_index": 245, - "destination": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0", - "destination_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "destination": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0", + "destination_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "msg_index": 0, "quantity": 2000000000, "send_type": "move", - "source": "e1da70a78196a01b1d83828ad454578cd9ccd3a37215d0732042f9cd20028b65:1", - "source_address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "source": "1ed2fd4becb681def304deac3d082b15a118778c325034d0274bf89ef24c648e:1", + "source_address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "status": "valid", - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 }, { "event_index": 1037, @@ -1794,17 +1794,17 @@ Returns the transactions of a block "params": { "asset": "XCP", "block_index": 245, - "destination": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0", - "destination_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "destination": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0", + "destination_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "msg_index": 1, "quantity": 2000000000, "send_type": "move", - "source": "e1da70a78196a01b1d83828ad454578cd9ccd3a37215d0732042f9cd20028b65:1", - "source_address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "source": "1ed2fd4becb681def304deac3d082b15a118778c325034d0274bf89ef24c648e:1", + "source_address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "status": "valid", - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1815,9 +1815,9 @@ Returns the transactions of a block }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 }, { "event_index": 1039, @@ -1826,9 +1826,9 @@ Returns the transactions of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "status": 0, - "tx_hash": "1e6f693fe2759c736df4febc587f45124e79e5d8d1ce2b79f8c0bbf0f18fd87d", + "tx_hash": "f92b8a2cd1841f4bccd9efe24777307f0956dac1a8ffd7ae805361c230b6b9d0", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1839,9 +1839,9 @@ Returns the transactions of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 }, { "event_index": 1040, @@ -1850,14 +1850,14 @@ Returns the transactions of a block "asset": "XCP", "block_index": 245, "btc_amount": 1000, - "destination": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "destination": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "1e6f693fe2759c736df4febc587f45124e79e5d8d1ce2b79f8c0bbf0f18fd87d", - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "dispenser_tx_hash": "f92b8a2cd1841f4bccd9efe24777307f0956dac1a8ffd7ae805361c230b6b9d0", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1869,9 +1869,9 @@ Returns the transactions of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 } ], "unpacked_data": { @@ -1889,14 +1889,14 @@ Returns the transactions of a block } ``` -### Get Transaction Types Count By Block [GET /v2/blocks/{block_index}/transactions/counts{?count_unconfirmed}{&verbose}] +### Get Transaction Types Count By Block [GET /v2/blocks/{block_index}/transactions/counts{?count_unconfirmed,verbose}] Returns the count of each transaction type + Parameters + block_index: `121` (int, required) - The index of the block to return + count_unconfirmed (bool, optional) - Count unconfirmed transactions - + Default: `False` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -1910,20 +1910,20 @@ Returns the count of each transaction type } ``` -### Get Events By Block [GET /v2/blocks/{block_index}/events{?event_name}{&cursor}{&limit}{&offset}{&verbose}] +### Get Events By Block [GET /v2/blocks/{block_index}/events{?event_name,cursor,limit,offset,verbose}] Returns the events of a block + Parameters + block_index: `245` (int, required) - The index of the block to return + event_name (str, optional) - Comma separated list of events to return - + Default: `None` + + Default: `null` + cursor: `1042` (str, optional) - The last event index to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -1937,11 +1937,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 245, - "ledger_hash": "b9137879674322b25ee447b5c225d662c1acf3be0757f8b5e365950c1478ed55", - "messages_hash": "a49feef7ed0848b13a8640617cd2f1339afe84eca2fa74e11a09d16cfe074612", + "ledger_hash": "169427d6d77a9483240539b2eb6deb5a55eccf2c8c228d362ad1e608642da0d6", + "messages_hash": "1721cf767e2ced8a6111698e0f26f3a291dc76980c733ba659607b17df4f261b", "transaction_count": 1, - "txlist_hash": "54253e0fb81873afdb56f96b0951b0600ee982e8ad70c7e45270dcc9ed2f1bbb", - "block_time": 1740490111 + "txlist_hash": "aed4a8ef0b8646530b8b439c9d87f4d92338544701b22c0bc085c8c541fcb676", + "block_time": 1740753580 }, "tx_hash": null }, @@ -1950,10 +1950,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121 }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3" + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef" }, { "event_index": 1040, @@ -1962,14 +1962,14 @@ Returns the events of a block "asset": "XCP", "block_index": 245, "btc_amount": 1000, - "destination": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "destination": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "1e6f693fe2759c736df4febc587f45124e79e5d8d1ce2b79f8c0bbf0f18fd87d", - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "dispenser_tx_hash": "f92b8a2cd1841f4bccd9efe24777307f0956dac1a8ffd7ae805361c230b6b9d0", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1981,7 +1981,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3" + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef" }, { "event_index": 1039, @@ -1990,9 +1990,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "status": 0, - "tx_hash": "1e6f693fe2759c736df4febc587f45124e79e5d8d1ce2b79f8c0bbf0f18fd87d", + "tx_hash": "f92b8a2cd1841f4bccd9efe24777307f0956dac1a8ffd7ae805361c230b6b9d0", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2003,22 +2003,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3" + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef" }, { "event_index": 1038, "event": "CREDIT", "params": { - "address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "asset": "XCP", "block_index": 245, "calling_function": "dispense", - "event": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "event": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "quantity": 66, "tx_index": 121, "utxo": null, "utxo_address": null, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2029,7 +2029,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3" + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef" } ], "next_cursor": 1037, @@ -2037,18 +2037,18 @@ Returns the events of a block } ``` -### Get Event Counts By Block [GET /v2/blocks/{block_index}/events/counts{?cursor}{&limit}{&offset}{&verbose}] +### Get Event Counts By Block [GET /v2/blocks/{block_index}/events/counts{?cursor,limit,offset,verbose}] Returns the event counts of a block + Parameters + block_index: `245` (int, required) - The index of the block to return + cursor (str, optional) - The last event index to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2083,7 +2083,7 @@ Returns the event counts of a block } ``` -### Get Events By Block And Event [GET /v2/blocks/{block_index}/events/{event}{?cursor}{&limit}{&offset}{&verbose}] +### Get Events By Block And Event [GET /v2/blocks/{block_index}/events/{event}{?cursor,limit,offset,verbose}] Returns the events of a block filtered by event @@ -2091,11 +2091,11 @@ Returns the events of a block filtered by event + block_index: `245` (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` + + Default: `null` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2108,16 +2108,16 @@ Returns the events of a block filtered by event "event_index": 1038, "event": "CREDIT", "params": { - "address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "asset": "XCP", "block_index": 245, "calling_function": "dispense", - "event": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "event": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "quantity": 66, "tx_index": 121, "utxo": null, "utxo_address": null, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2128,7 +2128,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3" + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef" }, { "event_index": 1036, @@ -2138,12 +2138,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 245, "calling_function": "utxo move", - "event": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "event": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "quantity": 2000000000, "tx_index": 121, - "utxo": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0", - "utxo_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "block_time": 1740490111, + "utxo": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0", + "utxo_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2154,7 +2154,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3" + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef" }, { "event_index": 1033, @@ -2164,23 +2164,23 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 245, "calling_function": "utxo move", - "event": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "event": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "quantity": 2000000000, "tx_index": 121, - "utxo": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0", - "utxo_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "block_time": 1740490111, + "utxo": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0", + "utxo_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3" + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef" } ], "next_cursor": null, @@ -2188,14 +2188,14 @@ Returns the events of a block filtered by event } ``` -### Get Credits By Block [GET /v2/blocks/{block_index}/credits{?action}{&cursor}{&limit}{&offset}{&verbose}] +### Get Credits By Block [GET /v2/blocks/{block_index}/credits{?action,cursor,limit,offset,verbose}] Returns the credits of a block + Parameters + block_index: `245` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by - + Default: `None` + + Default: `null` + Members + `None` + `Closed: Max dispenses reached` @@ -2226,11 +2226,11 @@ Returns the credits of a block + `sweep` + `wins` + cursor (str, optional) - The last credit index to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of credits to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2241,15 +2241,15 @@ Returns the credits of a block "result": [ { "block_index": 245, - "address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "event": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121, "utxo": null, "utxo_address": null, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2266,11 +2266,11 @@ Returns the credits of a block "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "event": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121, - "utxo": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0", - "utxo_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "block_time": 1740490111, + "utxo": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0", + "utxo_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2287,18 +2287,18 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "event": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121, - "utxo": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0", - "utxo_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "block_time": 1740490111, + "utxo": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0", + "utxo_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "20.00000000" } @@ -2308,14 +2308,14 @@ Returns the credits of a block } ``` -### Get Debits By Block [GET /v2/blocks/{block_index}/debits{?action}{&cursor}{&limit}{&offset}{&verbose}] +### Get Debits By Block [GET /v2/blocks/{block_index}/debits{?action,cursor,limit,offset,verbose}] Returns the debits of a block + Parameters + block_index: `245` (int, required) - The index of the block to return + action (enum[str], optional) - The action to filter by - + Default: `None` + + Default: `null` + Members + `None` + `bet` @@ -2335,11 +2335,11 @@ Returns the debits of a block + `sweep` + `sweep fee` + cursor (str, optional) - The last index of the debits to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of debits to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2354,11 +2354,11 @@ Returns the debits of a block "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "event": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121, - "utxo": "e1da70a78196a01b1d83828ad454578cd9ccd3a37215d0732042f9cd20028b65:1", - "utxo_address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", - "block_time": 1740490111, + "utxo": "1ed2fd4becb681def304deac3d082b15a118778c325034d0274bf89ef24c648e:1", + "utxo_address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2375,18 +2375,18 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "event": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121, - "utxo": "e1da70a78196a01b1d83828ad454578cd9ccd3a37215d0732042f9cd20028b65:1", - "utxo_address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", - "block_time": 1740490111, + "utxo": "1ed2fd4becb681def304deac3d082b15a118778c325034d0274bf89ef24c648e:1", + "utxo_address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "20.00000000" } @@ -2396,18 +2396,18 @@ Returns the debits of a block } ``` -### Get Expirations [GET /v2/blocks/{block_index}/expirations{?cursor}{&limit}{&offset}{&verbose}] +### Get Expirations [GET /v2/blocks/{block_index}/expirations{?cursor,limit,offset,verbose}] Returns the expirations of a block + Parameters + block_index: `211` (int, required) - The index of the block to return + cursor (str, optional) - The last index of the expirations to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of expirations to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2418,9 +2418,9 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "9198a9256ee36ffaa1c68b2098d9920bf461858924c70baa1e2e616814a81c54", + "object_id": "2eb60efb2a97a30c075217d0b87f6d98107655bc29264bf51bc4a537262001ea", "block_index": 211, - "block_time": 1740489959 + "block_time": 1740753432 } ], "next_cursor": null, @@ -2428,18 +2428,18 @@ Returns the expirations of a block } ``` -### Get Cancels [GET /v2/blocks/{block_index}/cancels{?cursor}{&limit}{&offset}{&verbose}] +### Get Cancels [GET /v2/blocks/{block_index}/cancels{?cursor,limit,offset,verbose}] Returns the cancels of a block + Parameters + block_index: `188` (int, required) - The index of the block to return + cursor (str, optional) - The last index of the cancels to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of cancels to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2450,12 +2450,12 @@ Returns the cancels of a block "result": [ { "tx_index": 63, - "tx_hash": "f93a585e39ef051fa3b8ece892fc7e7c312af255705851e42df9fbb47f0983b0", + "tx_hash": "cdb4face76245fc9dd5c1d0b7976d667db7225727711a2988068a6a19ae18260", "block_index": 188, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "offer_hash": "6514dc909d289a00f85ba5b8db7b7198c6fafe5ed2e140773835a3fe73615f94", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "offer_hash": "4ea533fa77d8457a9bb9ee4b72f9c139d91cb88dd2e85163ca9decee2d8b4ef3", "status": "valid", - "block_time": 1740489870 + "block_time": 1740753344 } ], "next_cursor": null, @@ -2463,18 +2463,18 @@ Returns the cancels of a block } ``` -### Get Valid Destructions By Block [GET /v2/blocks/{block_index}/destructions{?cursor}{&limit}{&offset}{&verbose}] +### Get Valid Destructions By Block [GET /v2/blocks/{block_index}/destructions{?cursor,limit,offset,verbose}] Returns the destructions of a block + Parameters + block_index: `240` (int, required) - The index of the block to return + cursor (str, optional) - The last index of the destructions to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of destructions to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2485,21 +2485,21 @@ Returns the destructions of a block "result": [ { "tx_index": 117, - "tx_hash": "49aaaa4a39e9fd16889036cae02cf2fdb65f96d4447a92dce1c811b959105a85", + "tx_hash": "1d28ac142d28f1fe544a134f24a6dc3e78610f27b2e5b95ad983e8109b1e1378", "block_index": 240, - "source": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg", + "source": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr", "asset": "RESET", "quantity": 12, "tag": "reset", "status": "valid", - "block_time": 1740490091, + "block_time": 1740753560, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg", + "issuer": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr", "divisible": true, "locked": false, - "owner": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg" + "owner": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr" }, "quantity_normalized": "0.00000012" } @@ -2509,7 +2509,7 @@ Returns the destructions of a block } ``` -### Get Issuances By Block [GET /v2/blocks/{block_index}/issuances{?asset_events}{&cursor}{&limit}{&offset}{&verbose}] +### Get Issuances By Block [GET /v2/blocks/{block_index}/issuances{?asset_events,cursor,limit,offset,verbose}] Returns the issuances of a block @@ -2529,11 +2529,11 @@ Returns the issuances of a block + `fairmint` + `lock_description` + cursor (str, optional) - The last index of the issuances to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of issuances to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2544,14 +2544,14 @@ Returns the issuances of a block "result": [ { "tx_index": 120, - "tx_hash": "c6043e9ceafa1ced581e48b9bb273a6b703ad6717ff27494f1a137dfcd039321", + "tx_hash": "e38cc7d9b866c06f5f25de76734390b0b60a949310563c61719a23200bae0a13", "msg_index": 0, "block_index": 243, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "issuer": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "issuer": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "transfer": false, "callable": false, "call_date": 0, @@ -2565,7 +2565,7 @@ Returns the issuances of a block "asset_events": "open_fairminter", "locked": false, "reset": false, - "block_time": 1740490102, + "block_time": 1740753571, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -2575,7 +2575,7 @@ Returns the issuances of a block } ``` -### Get Sends By Block [GET /v2/blocks/{block_index}/sends{?send_type}{&cursor}{&limit}{&offset}{&verbose}] +### Get Sends By Block [GET /v2/blocks/{block_index}/sends{?send_type,cursor,limit,offset,verbose}] Returns the sends, include Enhanced and MPMA sends, of a block @@ -2590,11 +2590,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block + `move` + `detach` + cursor (str, optional) - The last index of the debits to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of debits to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2605,10 +2605,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 121, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "source": "e1da70a78196a01b1d83828ad454578cd9ccd3a37215d0732042f9cd20028b65:1", - "destination": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0", + "source": "1ed2fd4becb681def304deac3d082b15a118778c325034d0274bf89ef24c648e:1", + "destination": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -2616,9 +2616,9 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "send_type": "move", - "source_address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", - "destination_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "block_time": 1740490111, + "source_address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", + "destination_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2632,10 +2632,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 121, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "source": "e1da70a78196a01b1d83828ad454578cd9ccd3a37215d0732042f9cd20028b65:1", - "destination": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0", + "source": "1ed2fd4becb681def304deac3d082b15a118778c325034d0274bf89ef24c648e:1", + "destination": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -2643,16 +2643,16 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "send_type": "move", - "source_address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", - "destination_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "block_time": 1740490111, + "source_address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", + "destination_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "20.00000000", "fee_paid_normalized": "0.00000000" @@ -2663,18 +2663,18 @@ Returns the sends, include Enhanced and MPMA sends, of a block } ``` -### Get Dispenses By Block [GET /v2/blocks/{block_index}/dispenses{?cursor}{&limit}{&offset}{&verbose}] +### Get Dispenses By Block [GET /v2/blocks/{block_index}/dispenses{?cursor,limit,offset,verbose}] Returns the dispenses of a block + Parameters + block_index: `245` (int, required) - The index of the block to return + cursor (str, optional) - The last index of the dispenses to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of dispenses to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2686,26 +2686,26 @@ Returns the dispenses of a block { "tx_index": 121, "dispense_index": 0, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "destination": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "destination": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "1e6f693fe2759c736df4febc587f45124e79e5d8d1ce2b79f8c0bbf0f18fd87d", + "dispenser_tx_hash": "f92b8a2cd1841f4bccd9efe24777307f0956dac1a8ffd7ae805361c230b6b9d0", "btc_amount": 1000, "dispenser": { "tx_index": 33, "block_index": 245, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "oracle_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "last_status_tx_hash": null, - "origin": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "origin": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2720,7 +2720,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2738,18 +2738,18 @@ Returns the dispenses of a block } ``` -### Get Sweeps By Block [GET /v2/blocks/{block_index}/sweeps{?cursor}{&limit}{&offset}{&verbose}] +### Get Sweeps By Block [GET /v2/blocks/{block_index}/sweeps{?cursor,limit,offset,verbose}] Returns the sweeps of a block + Parameters + block_index: `190` (int, required) - The index of the block to return + cursor (str, optional) - The last index of the sweeps to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of sweeps to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2760,15 +2760,15 @@ Returns the sweeps of a block "result": [ { "tx_index": 65, - "tx_hash": "e0043724de46115717f26d5126665cd592e152dc397d4ecbcd7e41809a575b49", + "tx_hash": "8147d0b6ade433cc41f566d17ffb795496b06717b221c9b6e5491a73d12186b3", "block_index": 190, - "source": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", - "destination": "bcrt1qndrj8uy6the35p3gpjuuss7l29hwe0npylexmz", + "source": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", + "destination": "bcrt1qlcwsn76fxk7x4ptkx6rz99efcvj2np6c8j4ugh", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, - "block_time": 1740489877, + "block_time": 1740753350, "fee_paid_normalized": "0.00600000" } ], @@ -2777,7 +2777,7 @@ Returns the sweeps of a block } ``` -### Get Fairminters By Block [GET /v2/blocks/{block_index}/fairminters{?status}{&cursor}{&limit}{&offset}{&verbose}] +### Get Fairminters By Block [GET /v2/blocks/{block_index}/fairminters{?status,cursor,limit,offset,verbose}] Returns the fairminters by its block index @@ -2791,11 +2791,11 @@ Returns the fairminters by its block index + `closed` + `pending` + cursor (str, optional) - The last index of the fairminter to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of fairminter to return + Default: `100` + offset (int, optional) - The number of lines to skip before - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2805,10 +2805,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "c6043e9ceafa1ced581e48b9bb273a6b703ad6717ff27494f1a137dfcd039321", + "tx_hash": "e38cc7d9b866c06f5f25de76734390b0b60a949310563c61719a23200bae0a13", "tx_index": 120, "block_index": 243, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "asset": "OPENFAIR", "asset_parent": null, "asset_longname": null, @@ -2832,7 +2832,7 @@ Returns the fairminters by its block index "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1740490102, + "block_time": 1740753571, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2846,18 +2846,18 @@ Returns the fairminters by its block index } ``` -### Get Fairmints By Block [GET /v2/blocks/{block_index}/fairmints{?cursor}{&limit}{&offset}{&verbose}] +### Get Fairmints By Block [GET /v2/blocks/{block_index}/fairmints{?cursor,limit,offset,verbose}] Returns the fairmints by its block index + Parameters + block_index: `221` (int, required) - The block index of the fairmint to return + cursor (str, optional) - The last index of the fairmint to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of fairmint to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -2867,24 +2867,24 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "f008cc467441d6088b240484737bc7c3a9665fca802126e7724a0e297fec8adc", + "tx_hash": "1ffd9a637ab9135f1ed4d76c3c4f72e4890edec39cc418c2108b1ade43c92080", "tx_index": 97, "block_index": 221, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "fairminter_tx_hash": "2efa348123c9d59037cd1352f1074a77e6c56630f04c6a742623c0d403824cb8", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "fairminter_tx_hash": "15a3ae28b67e570b5f5f1c5bcc2f0b2f83ce61d6a4064808c11a302d84116820", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", - "block_time": 1740489996, + "block_time": 1740753466, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg", + "issuer": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr", "divisible": true, "locked": true, - "owner": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg" + "owner": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr" }, "earn_quantity_normalized": "0.80000000", "commission_normalized": "0.20000000", @@ -2923,17 +2923,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "e730b05d65034f972ffd6833c069ea0b65aaf6edf2cd4a4388b21d2889a3280f", + "tx_hash": "12883463bed50820d349847399001a1dd0b8da9052df6599446624b6178d062c", "block_index": 129, - "block_hash": "2f6beeca7a85a3166bbc95fa33b02a6fc236a558931b468f8e57bc3ebeeb9756", - "block_time": 1740489665, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "block_hash": "0fc946d368ea6bc567fbf9cb0207c921e08934cc231ce2567db93db4b7931d35", + "block_time": 1740753139, + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " e730b05d65034f972ffd6833c069ea0b65aaf6edf2cd4a4388b21d2889a3280f:1 2 0", + "utxos_info": " 12883463bed50820d349847399001a1dd0b8da9052df6599446624b6178d062c:1 2 0", "transaction_type": "broadcast", "confirmed": true, "btc_amount_normalized": "0.00000000" @@ -2947,17 +2947,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "5752b590a88afde0a2481b5ca3de5c7cc18ccb4d6ebcfc87e4c59512324d399e", + "tx_hash": "c8540aaed6617f7a2d6104ff8ee4efe3fb96f86087c2950f30df083f9039f9b8", "block_index": 182, - "block_hash": "39753694feb9f7bc681f3a0accadd8ead562b18596198566b443596c4b3ba4ef", - "block_time": 1740489847, - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", - "destination": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "block_hash": "77217b76d6d96f5d69cedd38bf3b0796a855a511e0fd6a8764732d04e47a07b1", + "block_time": 1740753323, + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", + "destination": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "btc_amount": 2000, "fee": 10000, - "data": "0b6a8b04722b5121498713e9ca34b3a634f0ef5f0cf3ee9a0753bd79b8c3f0cc1016693d3e8624b05db62587be692a301eba7dc962293096694f84142bc3bfc5fd", + "data": "0b85ccadf57afa24a41e99d4828fdf2523b15ead1e4325a35a0754e21b540a6a7bf436f8eb83ec710d9911e7b4c2e1881866b35ff2a9c7a3ac2298ed35252cb8d2", "supported": true, - "utxos_info": " 5752b590a88afde0a2481b5ca3de5c7cc18ccb4d6ebcfc87e4c59512324d399e:0 3 1", + "utxos_info": " c8540aaed6617f7a2d6104ff8ee4efe3fb96f86087c2950f30df083f9039f9b8:0 3 1", "transaction_type": "btcpay", "confirmed": true, "btc_amount_normalized": "0.00002000" @@ -2971,17 +2971,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "f93a585e39ef051fa3b8ece892fc7e7c312af255705851e42df9fbb47f0983b0", + "tx_hash": "cdb4face76245fc9dd5c1d0b7976d667db7225727711a2988068a6a19ae18260", "block_index": 188, - "block_hash": "0f6dded4798fb8eae76b84df6174b9ddb7a308e48ba6ccdef8409cf05dd6a6aa", - "block_time": 1740489870, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "block_hash": "28cdd0da87e4eaa34b8da673c24c498bb02facef6cb2b5ea6c23d1e0b985aa3f", + "block_time": 1740753344, + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "466514dc909d289a00f85ba5b8db7b7198c6fafe5ed2e140773835a3fe73615f94", + "data": "464ea533fa77d8457a9bb9ee4b72f9c139d91cb88dd2e85163ca9decee2d8b4ef3", "supported": true, - "utxos_info": " f93a585e39ef051fa3b8ece892fc7e7c312af255705851e42df9fbb47f0983b0:1 2 0", + "utxos_info": " cdb4face76245fc9dd5c1d0b7976d667db7225727711a2988068a6a19ae18260:1 2 0", "transaction_type": "cancel", "confirmed": true, "btc_amount_normalized": "0.00000000" @@ -2995,17 +2995,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 117, - "tx_hash": "49aaaa4a39e9fd16889036cae02cf2fdb65f96d4447a92dce1c811b959105a85", + "tx_hash": "1d28ac142d28f1fe544a134f24a6dc3e78610f27b2e5b95ad983e8109b1e1378", "block_index": 240, - "block_hash": "2d83010c2269342ae95a9f94f19429b42ca16c40d4c17b843e62bf722a556452", - "block_time": 1740490091, - "source": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg", + "block_hash": "545399a660d8944c8773cfd92e81f6e73e7070d4dae0b246901ed812a1ee76c4", + "block_time": 1740753560, + "source": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr", "destination": null, "btc_amount": 0, "fee": 0, "data": "16000000000077ccb30000000047868c00010001c04e554c4c", "supported": true, - "utxos_info": " 49aaaa4a39e9fd16889036cae02cf2fdb65f96d4447a92dce1c811b959105a85:1 2 0", + "utxos_info": " 1d28ac142d28f1fe544a134f24a6dc3e78610f27b2e5b95ad983e8109b1e1378:1 2 0", "transaction_type": "issuance", "confirmed": true, "btc_amount_normalized": "0.00000000" @@ -3019,17 +3019,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 114, - "tx_hash": "c54957b9cbb662e2cc9eee1c09950f7365365a09abad1bdf1afb3cca05d63705", + "tx_hash": "89008f5718c5f916913ab4305f7a2e92c5206576bc15f232760329c909734735", "block_index": 236, - "block_hash": "2a55cafdaa4f1055aed6a18240c52a710f3da0cbffd88990a7422e9f09c7ee14", - "block_time": 1740490077, - "source": "bcrt1qv82qg4jp6nn6wahdnx2d2u6cdfxyc2zuw7u9mv", + "block_hash": "6365d0d1723485c8d743cee231a73726312504323fcaff19492bd893175800f0", + "block_time": 1740753547, + "source": "bcrt1qtxlcgyaaap8jttl3hxycjvmeyfck6v5dpz5fet", "destination": null, "btc_amount": 0, "fee": 0, "data": "0c000000000000000100000000000000010000000000001388000000000000000100", "supported": true, - "utxos_info": " c54957b9cbb662e2cc9eee1c09950f7365365a09abad1bdf1afb3cca05d63705:1 2 0", + "utxos_info": " 89008f5718c5f916913ab4305f7a2e92c5206576bc15f232760329c909734735:1 2 0", "transaction_type": "dispenser", "confirmed": true, "btc_amount_normalized": "0.00000000" @@ -3043,17 +3043,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 121, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_hash": "44fcdffec36869bfac0fcbe3dee59bfa74c885e0fd9b7f4eb83f716eecd633fc", - "block_time": 1740490111, - "source": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", - "destination": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "block_hash": "402a9cba4098a24fe8d8f48f8789a268d9072cbcd7ce9ec413654d1b410c2742", + "block_time": 1740753580, + "source": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", + "destination": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e1da70a78196a01b1d83828ad454578cd9ccd3a37215d0732042f9cd20028b65:1 d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0 3 1", + "utxos_info": "1ed2fd4becb681def304deac3d082b15a118778c325034d0274bf89ef24c648e:1 cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0 3 1", "transaction_type": "dispense", "confirmed": true, "btc_amount_normalized": "0.00001000" @@ -3067,17 +3067,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "6404a2478fe98ef828070b2da13ef824ea7cebae41e377cfdee911728b8c926a", + "tx_hash": "a816b85352c7030e2d21125a6684830b03e16eea3e72f9987245c7f2b90eb2ab", "block_index": 146, - "block_hash": "44acd57a637e2c5c4cefb2893d2652cce8b732950c25e9e68f5ca73ffe043a73", - "block_time": 1740489729, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "block_hash": "1f079b2c3625fccccbbf6797b4b60a8d2816f1d22331a8da8f8dfebe701c8404", + "block_time": 1740753202, + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " 6404a2478fe98ef828070b2da13ef824ea7cebae41e377cfdee911728b8c926a:1 2 0", + "utxos_info": " a816b85352c7030e2d21125a6684830b03e16eea3e72f9987245c7f2b90eb2ab:1 2 0", "transaction_type": "dividend", "confirmed": true, "btc_amount_normalized": "0.00000000" @@ -3091,17 +3091,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 120, - "tx_hash": "c6043e9ceafa1ced581e48b9bb273a6b703ad6717ff27494f1a137dfcd039321", + "tx_hash": "e38cc7d9b866c06f5f25de76734390b0b60a949310563c61719a23200bae0a13", "block_index": 243, - "block_hash": "12d4f9dd3786b1c71eb33af5170df7a0adb67864ea43afa06da43431972140c6", - "block_time": 1740490102, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "block_hash": "0f89d2f5f9838877f87f99bc9b1b38b56a6be4d2c8b79f3b8234f7eace2e9f00", + "block_time": 1740753571, + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " c6043e9ceafa1ced581e48b9bb273a6b703ad6717ff27494f1a137dfcd039321:1 2 0", + "utxos_info": " e38cc7d9b866c06f5f25de76734390b0b60a949310563c61719a23200bae0a13:1 2 0", "transaction_type": "fairminter", "confirmed": true, "btc_amount_normalized": "0.00000000" @@ -3115,17 +3115,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 119, - "tx_hash": "896df8fca70776cb0b38bd40c0f30d6cf657a8e5a62fb5542597d23bca4cbcd2", + "tx_hash": "b71f67bf112fd318618ae99ab06e71211fc512da76f78a7e353f79e537479149", "block_index": 242, - "block_hash": "535e3df082a630fbd8213a240a46545bd1bc7b94346c2b337dbe86265f72b50f", - "block_time": 1740490099, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "block_hash": "5b6308284e60e19e4dbd3a9f98113810cc1f50279c6556bb2a65e02c947dafec", + "block_time": 1740753567, + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000000000000000003e8000003f1a69ea1d300000000000003e800150000000000000000", "supported": true, - "utxos_info": " 896df8fca70776cb0b38bd40c0f30d6cf657a8e5a62fb5542597d23bca4cbcd2:1 2 0", + "utxos_info": " b71f67bf112fd318618ae99ab06e71211fc512da76f78a7e353f79e537479149:1 2 0", "transaction_type": "order", "confirmed": true, "btc_amount_normalized": "0.00000000" @@ -3139,17 +3139,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "0022913062f0470672f6b471ff669c43b45ce767fa522bcd64b909f606d59cd0", + "tx_hash": "395d0055fa629e8b903f7a69f5823dbb937bb3444b939d9dfcfad2439b0c3a2a", "block_index": 201, - "block_hash": "690f6bce9c2313f15d4a73c04123437539a88fee9827cee78c01e572e7763647", - "block_time": 1740489923, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "block_hash": "636ece371973ee68fccb0851ab6f2dc310ff4968f0053ff3319d7947fad5c1d1", + "block_time": 1740753397, + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8806cab8b7c91fbb7207dbe0f34f070bb2211bd066d", + "data": "02000000178d82231300000000000003e880d4ac3fb6a909682da43dbe9b8ff3a98e09a949c1", "supported": true, - "utxos_info": " 0022913062f0470672f6b471ff669c43b45ce767fa522bcd64b909f606d59cd0:1 2 0", + "utxos_info": " 395d0055fa629e8b903f7a69f5823dbb937bb3444b939d9dfcfad2439b0c3a2a:1 2 0", "transaction_type": "enhanced_send", "confirmed": true, "btc_amount_normalized": "0.00000000" @@ -3163,17 +3163,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 81, - "tx_hash": "10823d6a8b3b44da8361e887a02942fa28973b782e59ec26ece5a7c88b8d974d", + "tx_hash": "0fcfb7c950c395c49f32db5d575d9e5caabfdd2cb83d82b67c3bcdd58f75caf2", "block_index": 205, - "block_hash": "638370e27b741fc8f6114d475dd54cff84cd548ac9b54db3656691469f7dc7d0", - "block_time": 1740489939, - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "block_hash": "24adcdf214fa8923f336b7f7cdbf377af8c380828cf6f4a5c904267af0346ece", + "block_time": 1740753411, + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380293ba4d53f14e5d071a5294a216269c455519f1180978506450cf51f83ec6f5648b40686ccd56ce921809b4723f09a5df31a06280cb9c843df516eecbe6188746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807c93e2a5d8bc1b1ccb5bd21be114d0179c58174080477fccd3c26b0ee407fa80ad7da75746f75e588080fe1d09fb4935bc6a85763686229729c324a9875888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 10823d6a8b3b44da8361e887a02942fa28973b782e59ec26ece5a7c88b8d974d:0 4 ", + "utxos_info": " 0fcfb7c950c395c49f32db5d575d9e5caabfdd2cb83d82b67c3bcdd58f75caf2:0 4 ", "transaction_type": "mpma", "confirmed": true, "btc_amount_normalized": "0.00000000" @@ -3187,17 +3187,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 65, - "tx_hash": "e0043724de46115717f26d5126665cd592e152dc397d4ecbcd7e41809a575b49", + "tx_hash": "8147d0b6ade433cc41f566d17ffb795496b06717b221c9b6e5491a73d12186b3", "block_index": 190, - "block_hash": "087f4452c91e442691c3fb858ab875282ef1745cf59643c4d6682ac8747636cd", - "block_time": 1740489877, - "source": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", + "block_hash": "50860fcaf38dde069f79d1441ba7c6292b8f7191e6a5d02dc4e81eab345e7c5f", + "block_time": 1740753350, + "source": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04809b4723f09a5df31a06280cb9c843df516eecbe61017377656570206d7920617373657473", + "data": "0480fe1d09fb4935bc6a85763686229729c324a98758017377656570206d7920617373657473", "supported": true, - "utxos_info": " e0043724de46115717f26d5126665cd592e152dc397d4ecbcd7e41809a575b49:1 2 0", + "utxos_info": " 8147d0b6ade433cc41f566d17ffb795496b06717b221c9b6e5491a73d12186b3:1 2 0", "transaction_type": "sweep", "confirmed": true, "btc_amount_normalized": "0.00000000" @@ -3211,17 +3211,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 112, - "tx_hash": "a702c044a28ed7855dac07e2dd7b9c5925db98cae259cfb2ca1c29158149b5d6", + "tx_hash": "999b5986f89d32f3369c3fc006bd7d7b7a7794d4eb8b01cba13fee3f0e54efbf", "block_index": 235, - "block_hash": "1dcf4d83398780796c32281acdaeb0820694f3e24720dfc04dc99f72fb3058f7", - "block_time": 1740490071, - "source": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg", - "destination": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg", + "block_hash": "0e14a4833098c06f9a2830f172a4f5d5c20c6b846f72baa091d7291159e99429", + "block_time": 1740753541, + "source": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr", + "destination": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr", "btc_amount": 10000, "fee": 10000, "data": "65444554414348417c3130303030303030307c", "supported": true, - "utxos_info": " a702c044a28ed7855dac07e2dd7b9c5925db98cae259cfb2ca1c29158149b5d6:0 3 1", + "utxos_info": " 999b5986f89d32f3369c3fc006bd7d7b7a7794d4eb8b01cba13fee3f0e54efbf:0 3 1", "transaction_type": "attach", "confirmed": true, "btc_amount_normalized": "0.00010000" @@ -3235,17 +3235,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 111, - "tx_hash": "0d1319c529b7c96f1df0c028a6b1fcb99341b7ecb0dbd8f5626ad9afad76b1c8", + "tx_hash": "b6be2c257415be98ba53e7e7395843acd2fab4297ab089ff5e6ac1ac7fac4b6d", "block_index": 234, - "block_hash": "7eae4ca21212152b9fe419cb9796a6c8a248fef4cefcab3841411b2adb974875", - "block_time": 1740490068, - "source": "bcrt1qyyjgcgnjrxkznrdk8pc9dwp98twx5qesptttlg", + "block_hash": "7deac92001b350865d7329abb49ae6a194e9c79effb3a1791dd80a82f77dbf93", + "block_time": 1740753537, + "source": "bcrt1qxdg7f67n89nkjjrm4tdglnjkld3suvdmjwantr", "destination": null, "btc_amount": 0, "fee": 0, "data": "6630", "supported": true, - "utxos_info": "20c0fc221da530e6e260f1ee566d166e62abc63cb109a4b309b1a76a06aaa7a5:0 0d1319c529b7c96f1df0c028a6b1fcb99341b7ecb0dbd8f5626ad9afad76b1c8:1 2 0", + "utxos_info": "2d8a67809a6685095b83de680e85dd9314a06208b7420d1be3f65b5f12082794:0 b6be2c257415be98ba53e7e7395843acd2fab4297ab089ff5e6ac1ac7fac4b6d:1 2 0", "transaction_type": "detach", "confirmed": true, "btc_amount_normalized": "0.00000000" @@ -3253,7 +3253,7 @@ Here is sample API output for each of these transactions: } ``` -### Get Transactions [GET /v2/transactions{?type}{&show_unconfirmed}{&cursor}{&limit}{&offset}{&verbose}] +### Get Transactions [GET /v2/transactions{?type,show_unconfirmed,cursor,limit,offset,verbose}] Returns the list of the last ten transactions @@ -3285,13 +3285,13 @@ Returns the list of the last ten transactions + `utxomove` + `unknown` + show_unconfirmed (bool, optional) - Show unconfirmed transactions - + Default: `False` + + Default: `null` + cursor: `121` (str, optional) - The index of the most recent transactions to return - + Default: `None` + + Default: `null` + limit: `2` (int, optional) - The 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` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -3302,17 +3302,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 121, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_hash": "44fcdffec36869bfac0fcbe3dee59bfa74c885e0fd9b7f4eb83f716eecd633fc", - "block_time": 1740490111, - "source": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", - "destination": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "block_hash": "402a9cba4098a24fe8d8f48f8789a268d9072cbcd7ce9ec413654d1b410c2742", + "block_time": 1740753580, + "source": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", + "destination": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e1da70a78196a01b1d83828ad454578cd9ccd3a37215d0732042f9cd20028b65:1 d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0 3 1", + "utxos_info": "1ed2fd4becb681def304deac3d082b15a118778c325034d0274bf89ef24c648e:1 cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0 3 1", "transaction_type": "dispense", "events": [ { @@ -3321,30 +3321,30 @@ Returns the list of the last ten transactions "params": { "asset": "MYASSETA", "block_index": 245, - "destination": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0", - "destination_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "destination": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0", + "destination_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "msg_index": 0, "quantity": 2000000000, "send_type": "move", - "source": "e1da70a78196a01b1d83828ad454578cd9ccd3a37215d0732042f9cd20028b65:1", - "source_address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "source": "1ed2fd4becb681def304deac3d082b15a118778c325034d0274bf89ef24c648e:1", + "source_address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "status": "valid", - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 }, { "event_index": 1037, @@ -3352,17 +3352,17 @@ Returns the list of the last ten transactions "params": { "asset": "XCP", "block_index": 245, - "destination": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0", - "destination_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "destination": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0", + "destination_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "msg_index": 1, "quantity": 2000000000, "send_type": "move", - "source": "e1da70a78196a01b1d83828ad454578cd9ccd3a37215d0732042f9cd20028b65:1", - "source_address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "source": "1ed2fd4becb681def304deac3d082b15a118778c325034d0274bf89ef24c648e:1", + "source_address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "status": "valid", - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3373,9 +3373,9 @@ Returns the list of the last ten transactions }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 }, { "event_index": 1039, @@ -3384,9 +3384,9 @@ Returns the list of the last ten transactions "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "status": 0, - "tx_hash": "1e6f693fe2759c736df4febc587f45124e79e5d8d1ce2b79f8c0bbf0f18fd87d", + "tx_hash": "f92b8a2cd1841f4bccd9efe24777307f0956dac1a8ffd7ae805361c230b6b9d0", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3397,9 +3397,9 @@ Returns the list of the last ten transactions }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 }, { "event_index": 1040, @@ -3408,14 +3408,14 @@ Returns the list of the last ten transactions "asset": "XCP", "block_index": 245, "btc_amount": 1000, - "destination": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "destination": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "1e6f693fe2759c736df4febc587f45124e79e5d8d1ce2b79f8c0bbf0f18fd87d", - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "dispenser_tx_hash": "f92b8a2cd1841f4bccd9efe24777307f0956dac1a8ffd7ae805361c230b6b9d0", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3427,9 +3427,9 @@ Returns the list of the last ten transactions "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 } ], "unpacked_data": { @@ -3443,17 +3443,17 @@ Returns the list of the last ten transactions }, { "tx_index": 120, - "tx_hash": "c6043e9ceafa1ced581e48b9bb273a6b703ad6717ff27494f1a137dfcd039321", + "tx_hash": "e38cc7d9b866c06f5f25de76734390b0b60a949310563c61719a23200bae0a13", "block_index": 243, - "block_hash": "12d4f9dd3786b1c71eb33af5170df7a0adb67864ea43afa06da43431972140c6", - "block_time": 1740490102, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "block_hash": "0f89d2f5f9838877f87f99bc9b1b38b56a6be4d2c8b79f3b8234f7eace2e9f00", + "block_time": 1740753571, + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " c6043e9ceafa1ced581e48b9bb273a6b703ad6717ff27494f1a137dfcd039321:1 2 0", + "utxos_info": " e38cc7d9b866c06f5f25de76734390b0b60a949310563c61719a23200bae0a13:1 2 0", "transaction_type": "fairminter", "events": [ { @@ -3479,12 +3479,12 @@ Returns the list of the last ten transactions "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "start_block": 0, "status": "open", - "tx_hash": "c6043e9ceafa1ced581e48b9bb273a6b703ad6717ff27494f1a137dfcd039321", + "tx_hash": "e38cc7d9b866c06f5f25de76734390b0b60a949310563c61719a23200bae0a13", "tx_index": 120, - "block_time": 1740490102, + "block_time": 1740753571, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -3492,9 +3492,9 @@ Returns the list of the last ten transactions "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "c6043e9ceafa1ced581e48b9bb273a6b703ad6717ff27494f1a137dfcd039321", + "tx_hash": "e38cc7d9b866c06f5f25de76734390b0b60a949310563c61719a23200bae0a13", "block_index": 243, - "block_time": 1740490102 + "block_time": 1740753571 }, { "event_index": 1022, @@ -3504,11 +3504,11 @@ Returns the list of the last ten transactions "asset_longname": null, "asset_name": "OPENFAIR", "block_index": 243, - "block_time": 1740490102 + "block_time": 1740753571 }, - "tx_hash": "c6043e9ceafa1ced581e48b9bb273a6b703ad6717ff27494f1a137dfcd039321", + "tx_hash": "e38cc7d9b866c06f5f25de76734390b0b60a949310563c61719a23200bae0a13", "block_index": 243, - "block_time": 1740490102 + "block_time": 1740753571 }, { "event_index": 1023, @@ -3525,22 +3525,22 @@ Returns the list of the last ten transactions "divisible": true, "fair_minting": true, "fee_paid": 50000000.0, - "issuer": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "issuer": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "status": "valid", "transfer": false, - "tx_hash": "c6043e9ceafa1ced581e48b9bb273a6b703ad6717ff27494f1a137dfcd039321", + "tx_hash": "e38cc7d9b866c06f5f25de76734390b0b60a949310563c61719a23200bae0a13", "tx_index": 120, - "block_time": 1740490102, + "block_time": 1740753571, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "c6043e9ceafa1ced581e48b9bb273a6b703ad6717ff27494f1a137dfcd039321", + "tx_hash": "e38cc7d9b866c06f5f25de76734390b0b60a949310563c61719a23200bae0a13", "block_index": 243, - "block_time": 1740490102 + "block_time": 1740753571 } ], "unpacked_data": { @@ -3671,14 +3671,14 @@ Returns the count of each transaction type } ``` -### Info [GET /v2/transactions/info{?rawtransaction}{&block_index}{&verbose}] +### Info [GET /v2/transactions/info{?rawtransaction,block_index,verbose}] Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000101c9161f323b5c3c48c0971953515bdc677f5ed840de441bf48cc3ddac2755f9fe0200000000ffffffff02b80b000000000000160014293ba4d53f14e5d071a5294a216269c455519f1100d50727010000001600146cab8b7c91fbb7207dbe0f34f070bb2211bd066d02473044022008abf013f5a0ba1ab9e17d73753bb84beac12831ce30a7931324e95cdd3dd61902203f97c50a8f9779e5439204a9b4dc089d4c166cd489ea99669fb40570289a3856012102bd54ab1d8cc9637ed9c6ca863d02f0420f6b89ba40d93da176bd8e1d2217832200000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000101ce66f01a026022b6a0e8eb85040a0b28695d3dcec60ac027a7ed60b8d84baf740200000000ffffffff02b80b0000000000001600147c93e2a5d8bc1b1ccb5bd21be114d0179c58174000d5072701000000160014d4ac3fb6a909682da43dbe9b8ff3a98e09a949c10247304402203ba285175ba41573dc8bcd9c6e4c24e3b8e6650b307842f17e46b23d9c21e19c02203921e671c6121d58f58e1375ebbd572a18c14a1441204769dd7713f75df4c8a40121039f9d2687f690d7f4e7e8bd0e350be579507fe2e89bd0e0f1d3ff63454ca5b3d700000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -3696,36 +3696,36 @@ Returns Counterparty information from a raw transaction in hex format. "segwit": true, "coinbase": false, "lock_time": 0, - "tx_id": "83950e052c2fe3e4f8aacd9e06b0abe1cffb81c9ed13452953684b3508515bd7", - "tx_hash": "83950e052c2fe3e4f8aacd9e06b0abe1cffb81c9ed13452953684b3508515bd7", + "tx_id": "622628bf565637fc3f9e8e1b3c48bb4e0fa81b957a0a36971f686e3ca5dc13db", + "tx_hash": "622628bf565637fc3f9e8e1b3c48bb4e0fa81b957a0a36971f686e3ca5dc13db", "vtxinwit": [ [ - "3044022008abf013f5a0ba1ab9e17d73753bb84beac12831ce30a7931324e95cdd3dd61902203f97c50a8f9779e5439204a9b4dc089d4c166cd489ea99669fb40570289a385601", - "02bd54ab1d8cc9637ed9c6ca863d02f0420f6b89ba40d93da176bd8e1d22178322" + "304402203ba285175ba41573dc8bcd9c6e4c24e3b8e6650b307842f17e46b23d9c21e19c02203921e671c6121d58f58e1375ebbd572a18c14a1441204769dd7713f75df4c8a401", + "039f9d2687f690d7f4e7e8bd0e350be579507fe2e89bd0e0f1d3ff63454ca5b3d7" ] ], "parsed_vouts": [ [ - "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6" + "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd" ], 4949795000, -4949795000, "", [ [ - "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", 3000 ], [ - "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", 4949792000 ] ] ], "vin": [ { - "hash": "fef95527acddc38cf41b44de40d85e7f67dc5b51531997c0483c5c3b321f16c9", + "hash": "74af4bd8b860eda727c00ac6ce3d5d69280b0a0485ebe8a0b62260021af066ce", "n": 2, "sequence": 4294967295, "script_sig": "", @@ -3735,11 +3735,11 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 3000, - "script_pub_key": "0014293ba4d53f14e5d071a5294a216269c455519f11" + "script_pub_key": "00147c93e2a5d8bc1b1ccb5bd21be114d0179c581740" }, { "value": 4949792000, - "script_pub_key": "00146cab8b7c91fbb7207dbe0f34f070bb2211bd066d" + "script_pub_key": "0014d4ac3fb6a909682da43dbe9b8ff3a98e09a949c1" } ] }, @@ -3754,7 +3754,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `0ab945476155bacbb733e71fe0fe435cdb13c4954a1231bfcabc678c0ec790eb` (str, required) - Transaction hash + + tx_hash: `9fb3352d25badde72f6eaeedb05fe509a27db18b022527688cbc7c8ce4e38a49` (str, required) - Transaction hash + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -3763,7 +3763,7 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qndrj8uy6the35p3gpjuuss7l29hwe0npylexmz", + "source": "bcrt1qlcwsn76fxk7x4ptkx6rz99efcvj2np6c8j4ugh", "destination": null, "btc_amount": 0, "fee": 10000, @@ -3772,39 +3772,39 @@ Returns Counterparty information from a transaction hash. "segwit": true, "coinbase": false, "lock_time": 0, - "tx_id": "0ab945476155bacbb733e71fe0fe435cdb13c4954a1231bfcabc678c0ec790eb", - "tx_hash": "0ab945476155bacbb733e71fe0fe435cdb13c4954a1231bfcabc678c0ec790eb", + "tx_id": "9fb3352d25badde72f6eaeedb05fe509a27db18b022527688cbc7c8ce4e38a49", + "tx_hash": "9fb3352d25badde72f6eaeedb05fe509a27db18b022527688cbc7c8ce4e38a49", "vtxinwit": [ [ - "304402201aa98398ba13d22385b29a6e043813b07fa05c723ac09463565e726c04b7506f02207292c5c1a3742f180dc5284c5054b0186cc80c0510e14cc0024c4ae558b7d40601", - "021a4ef5e6eacef0bd6d568db42cb2b89261b427c401519ff4e5c4d74b5eb8edd0" + "304402202219f7355a4cd1de93815d5aa89335009b4407ff4be941216166ea8ae708a7bd022050130632a1fa4ba087587e28cc260226854ae5fb3bbdfc5d3a8ec885c5146eaf01", + "035f5c50cf0b7a036fbfabf7da88414c952ff203fe015247b3e14f091f786ccc87" ] ], "parsed_vouts": [ [], 0, -4949940000, - "020000000000000001000000000000271080978506450cf51f83ec6f5648b40686ccd56ce921", + "020000000000000001000000000000271080477fccd3c26b0ee407fa80ad7da75746f75e5880", [ [ null, null ], [ - "bcrt1qndrj8uy6the35p3gpjuuss7l29hwe0npylexmz", + "bcrt1qlcwsn76fxk7x4ptkx6rz99efcvj2np6c8j4ugh", 4949940000 ] ] ], "vin": [ { - "hash": "361c12f0621cfb9d6fdc1bff4647705909256ce8ae74028af623e8a68328917b", + "hash": "c13c9f96e38c278dba22d0f89d729a2c6b3e01590184021f0acb2826cd23a7f4", "n": 1, "sequence": 4294967295, "script_sig": "", "info": { "value": 4949950000, - "script_pub_key": "00149b4723f09a5df31a06280cb9c843df516eecbe61", + "script_pub_key": "0014fe1d09fb4935bc6a85763686229729c324a98758", "is_segwit": true } } @@ -3812,22 +3812,22 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e3f8f5fcd3b5230d72e7448cc419a3debfefaf5656cc64a6b13e27b381c3c1aec7aa419984b6e6fae169ca7fd9230" + "script_pub_key": "6a2e39943e446b4fafb002bd27f2a8206f646d2167bdaf973c4d756ecfce859ce76bdb5d9b870bc4d8e96a3b9700e31f" }, { "value": 4949940000, - "script_pub_key": "00149b4723f09a5df31a06280cb9c843df516eecbe61" + "script_pub_key": "0014fe1d09fb4935bc6a85763686229729c324a98758" } ] }, - "data": "020000000000000001000000000000271080978506450cf51f83ec6f5648b40686ccd56ce921", + "data": "020000000000000001000000000000271080477fccd3c26b0ee407fa80ad7da75746f75e5880", "unpacked_data": { "message_type": "enhanced_send", "message_type_id": 2, "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", + "address": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", "memo": null, "asset_info": { "asset_longname": null, @@ -3845,14 +3845,14 @@ Returns Counterparty information from a transaction hash. } ``` -### Unpack [GET /v2/transactions/unpack{?datahex}{&block_index}{&verbose}] +### Unpack [GET /v2/transactions/unpack{?datahex,block_index,verbose}] Unpacks Counterparty data in hex format and returns the message type and data. + Parameters + datahex: `020000000001016a65c1624e53f4d33ce02e726a6606faed60cc014d5b1a578ba3e09b4b3f8f890100000000ffffffff020000000000000000176a150d55e8b6118808b7b663b365473f142274028b8af60245092701000000160014a3df8a5a83d4e2827b59b43f5ce6ce5d2e52093f0247304402204b7a2859cbce34e725a1132fec2dd4b075503dadff0a0c407ae7c22a7712fe4d0220563ceb2ceebdf649343bb24819fc808639cce7781305b4588ffbe4a20390d2780121020ace9adf60fe4ec05dab922ccdc5727cbf664cafc7cdb845de534855266314c800000000` (str, required) - Data in hex format + block_index (int, optional) - Block index of the transaction containing this data - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -3885,17 +3885,17 @@ Returns a transaction by its index. { "result": { "tx_index": 121, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_hash": "44fcdffec36869bfac0fcbe3dee59bfa74c885e0fd9b7f4eb83f716eecd633fc", - "block_time": 1740490111, - "source": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", - "destination": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "block_hash": "402a9cba4098a24fe8d8f48f8789a268d9072cbcd7ce9ec413654d1b410c2742", + "block_time": 1740753580, + "source": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", + "destination": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e1da70a78196a01b1d83828ad454578cd9ccd3a37215d0732042f9cd20028b65:1 d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0 3 1", + "utxos_info": "1ed2fd4becb681def304deac3d082b15a118778c325034d0274bf89ef24c648e:1 cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0 3 1", "transaction_type": "dispense", "confirmed": true, "btc_amount_normalized": "0.00001000" @@ -3908,7 +3908,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3` (str, required) - The hash of the transaction + + tx_hash: `cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef` (str, required) - The hash of the transaction + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -3918,17 +3918,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 121, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_hash": "44fcdffec36869bfac0fcbe3dee59bfa74c885e0fd9b7f4eb83f716eecd633fc", - "block_time": 1740490111, - "source": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", - "destination": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "block_hash": "402a9cba4098a24fe8d8f48f8789a268d9072cbcd7ce9ec413654d1b410c2742", + "block_time": 1740753580, + "source": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", + "destination": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "e1da70a78196a01b1d83828ad454578cd9ccd3a37215d0732042f9cd20028b65:1 d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0 3 1", + "utxos_info": "1ed2fd4becb681def304deac3d082b15a118778c325034d0274bf89ef24c648e:1 cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0 3 1", "transaction_type": "dispense", "confirmed": true, "btc_amount_normalized": "0.00001000" @@ -3936,20 +3936,20 @@ Returns a transaction by its hash. } ``` -### Get Events By Transaction Index [GET /v2/transactions/{tx_index}/events{?event_name}{&cursor}{&limit}{&offset}{&verbose}] +### Get Events By Transaction Index [GET /v2/transactions/{tx_index}/events{?event_name,cursor,limit,offset,verbose}] Returns the events of a transaction + Parameters + tx_index: `121` (int, required) - The index of the transaction to return + event_name (str, optional) - Comma separated list of events to return - + Default: `None` + + Default: `null` + cursor (str, optional) - The last event index to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -3963,12 +3963,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121 }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 }, { "event_index": 1040, @@ -3977,14 +3977,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 245, "btc_amount": 1000, - "destination": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "destination": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "1e6f693fe2759c736df4febc587f45124e79e5d8d1ce2b79f8c0bbf0f18fd87d", - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "dispenser_tx_hash": "f92b8a2cd1841f4bccd9efe24777307f0956dac1a8ffd7ae805361c230b6b9d0", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3996,9 +3996,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 }, { "event_index": 1039, @@ -4007,9 +4007,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "status": 0, - "tx_hash": "1e6f693fe2759c736df4febc587f45124e79e5d8d1ce2b79f8c0bbf0f18fd87d", + "tx_hash": "f92b8a2cd1841f4bccd9efe24777307f0956dac1a8ffd7ae805361c230b6b9d0", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4020,24 +4020,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 }, { "event_index": 1038, "event": "CREDIT", "params": { - "address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "asset": "XCP", "block_index": 245, "calling_function": "dispense", - "event": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "event": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "quantity": 66, "tx_index": 121, "utxo": null, "utxo_address": null, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4048,9 +4048,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 }, { "event_index": 1037, @@ -4058,17 +4058,17 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 245, - "destination": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0", - "destination_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "destination": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0", + "destination_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "msg_index": 1, "quantity": 2000000000, "send_type": "move", - "source": "e1da70a78196a01b1d83828ad454578cd9ccd3a37215d0732042f9cd20028b65:1", - "source_address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "source": "1ed2fd4becb681def304deac3d082b15a118778c325034d0274bf89ef24c648e:1", + "source_address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "status": "valid", - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4079,9 +4079,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 } ], "next_cursor": 1036, @@ -4089,20 +4089,20 @@ Returns the events of a transaction } ``` -### Get Events By Transaction Hash [GET /v2/transactions/{tx_hash}/events{?event_name}{&cursor}{&limit}{&offset}{&verbose}] +### Get Events By Transaction Hash [GET /v2/transactions/{tx_hash}/events{?event_name,cursor,limit,offset,verbose}] Returns the events of a transaction + Parameters - + tx_hash: `d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3` (str, required) - The hash of the transaction to return + + tx_hash: `cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return - + Default: `None` + + Default: `null` + cursor: `1042` (str, optional) - The last event index to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -4116,12 +4116,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121 }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 }, { "event_index": 1040, @@ -4130,14 +4130,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 245, "btc_amount": 1000, - "destination": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "destination": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "1e6f693fe2759c736df4febc587f45124e79e5d8d1ce2b79f8c0bbf0f18fd87d", - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "dispenser_tx_hash": "f92b8a2cd1841f4bccd9efe24777307f0956dac1a8ffd7ae805361c230b6b9d0", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4149,9 +4149,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 }, { "event_index": 1039, @@ -4160,9 +4160,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "status": 0, - "tx_hash": "1e6f693fe2759c736df4febc587f45124e79e5d8d1ce2b79f8c0bbf0f18fd87d", + "tx_hash": "f92b8a2cd1841f4bccd9efe24777307f0956dac1a8ffd7ae805361c230b6b9d0", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4173,24 +4173,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 }, { "event_index": 1038, "event": "CREDIT", "params": { - "address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "asset": "XCP", "block_index": 245, "calling_function": "dispense", - "event": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "event": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "quantity": 66, "tx_index": 121, "utxo": null, "utxo_address": null, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4201,9 +4201,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 }, { "event_index": 1037, @@ -4211,17 +4211,17 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 245, - "destination": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0", - "destination_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "destination": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0", + "destination_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "msg_index": 1, "quantity": 2000000000, "send_type": "move", - "source": "e1da70a78196a01b1d83828ad454578cd9ccd3a37215d0732042f9cd20028b65:1", - "source_address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "source": "1ed2fd4becb681def304deac3d082b15a118778c325034d0274bf89ef24c648e:1", + "source_address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "status": "valid", - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "tx_index": 121, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4232,9 +4232,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 } ], "next_cursor": 1036, @@ -4242,12 +4242,12 @@ Returns the events of a transaction } ``` -### Get Sends By Transaction Hash [GET /v2/transactions/{tx_hash}/sends{?send_type}{&cursor}{&limit}{&offset}{&verbose}] +### Get Sends By Transaction Hash [GET /v2/transactions/{tx_hash}/sends{?send_type,cursor,limit,offset,verbose}] Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3` (str, required) - The hash of the transaction to return + + tx_hash: `cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef` (str, required) - The hash of the transaction to return + send_type (enum[str], optional) - The type of the send to return + Default: `all` + Members @@ -4257,11 +4257,11 @@ Returns the sends, include Enhanced and MPMA sends, of a block + `move` + `detach` + cursor (str, optional) - The last index of the debits to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of debits to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -4272,10 +4272,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 121, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "source": "e1da70a78196a01b1d83828ad454578cd9ccd3a37215d0732042f9cd20028b65:1", - "destination": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0", + "source": "1ed2fd4becb681def304deac3d082b15a118778c325034d0274bf89ef24c648e:1", + "destination": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", @@ -4283,9 +4283,9 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "send_type": "move", - "source_address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", - "destination_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "block_time": 1740490111, + "source_address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", + "destination_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4299,10 +4299,10 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 121, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "source": "e1da70a78196a01b1d83828ad454578cd9ccd3a37215d0732042f9cd20028b65:1", - "destination": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0", + "source": "1ed2fd4becb681def304deac3d082b15a118778c325034d0274bf89ef24c648e:1", + "destination": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", @@ -4310,16 +4310,16 @@ Returns the sends, include Enhanced and MPMA sends, of a block "memo": null, "fee_paid": 0, "send_type": "move", - "source_address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", - "destination_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "block_time": 1740490111, + "source_address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", + "destination_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "20.00000000", "fee_paid_normalized": "0.00000000" @@ -4330,18 +4330,18 @@ Returns the sends, include Enhanced and MPMA sends, of a block } ``` -### Get Dispenses By Transaction Hash [GET /v2/transactions/{tx_hash}/dispenses{?cursor}{&limit}{&offset}{&verbose}] +### Get Dispenses By Transaction Hash [GET /v2/transactions/{tx_hash}/dispenses{?cursor,limit,offset,verbose}] Returns the dispenses of a block + Parameters - + tx_hash: `d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3` (str, required) - The hash of the transaction to return + + tx_hash: `cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef` (str, required) - The hash of the transaction to return + cursor (str, optional) - The last index of the dispenses to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of dispenses to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -4353,26 +4353,26 @@ Returns the dispenses of a block { "tx_index": 121, "dispense_index": 0, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "destination": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "destination": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "1e6f693fe2759c736df4febc587f45124e79e5d8d1ce2b79f8c0bbf0f18fd87d", + "dispenser_tx_hash": "f92b8a2cd1841f4bccd9efe24777307f0956dac1a8ffd7ae805361c230b6b9d0", "btc_amount": 1000, "dispenser": { "tx_index": 33, "block_index": 245, - "source": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "source": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "oracle_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "last_status_tx_hash": null, - "origin": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", + "origin": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4387,7 +4387,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4405,7 +4405,7 @@ Returns the dispenses of a block } ``` -### Get Events By Transaction Index And Event [GET /v2/transactions/{tx_index}/events/{event}{?cursor}{&limit}{&offset}{&verbose}] +### Get Events By Transaction Index And Event [GET /v2/transactions/{tx_index}/events/{event}{?cursor,limit,offset,verbose}] Returns the events of a transaction @@ -4413,11 +4413,11 @@ Returns the events of a transaction + tx_index: `121` (int, required) - The index of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `1042` (str, optional) - The last event index to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -4430,16 +4430,16 @@ Returns the events of a transaction "event_index": 1038, "event": "CREDIT", "params": { - "address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "asset": "XCP", "block_index": 245, "calling_function": "dispense", - "event": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "event": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "quantity": 66, "tx_index": 121, "utxo": null, "utxo_address": null, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4450,9 +4450,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 }, { "event_index": 1036, @@ -4462,12 +4462,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 245, "calling_function": "utxo move", - "event": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "event": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "quantity": 2000000000, "tx_index": 121, - "utxo": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0", - "utxo_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "block_time": 1740490111, + "utxo": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0", + "utxo_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4478,9 +4478,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 }, { "event_index": 1033, @@ -4490,25 +4490,25 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 245, "calling_function": "utxo move", - "event": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "event": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "quantity": 2000000000, "tx_index": 121, - "utxo": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0", - "utxo_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "block_time": 1740490111, + "utxo": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0", + "utxo_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 } ], "next_cursor": null, @@ -4516,19 +4516,19 @@ Returns the events of a transaction } ``` -### Get Events By Transaction Hash And Event [GET /v2/transactions/{tx_hash}/events/{event}{?cursor}{&limit}{&offset}{&verbose}] +### Get Events By Transaction Hash And Event [GET /v2/transactions/{tx_hash}/events/{event}{?cursor,limit,offset,verbose}] Returns the events of a transaction + Parameters - + tx_hash: `d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3` (str, required) - The hash of the transaction to return + + tx_hash: `cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `1042` (str, optional) - The last event index to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -4541,16 +4541,16 @@ Returns the events of a transaction "event_index": 1038, "event": "CREDIT", "params": { - "address": "bcrt1qwats7crkdl4z6ac6tz2fn6pz6a5dt7hxzjustu", + "address": "bcrt1qwxxkexrupc4cs839xc555fft3ujaj8wjqnrw24", "asset": "XCP", "block_index": 245, "calling_function": "dispense", - "event": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "event": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "quantity": 66, "tx_index": 121, "utxo": null, "utxo_address": null, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4561,9 +4561,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 }, { "event_index": 1036, @@ -4573,12 +4573,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 245, "calling_function": "utxo move", - "event": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "event": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "quantity": 2000000000, "tx_index": 121, - "utxo": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0", - "utxo_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "block_time": 1740490111, + "utxo": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0", + "utxo_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4589,9 +4589,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 }, { "event_index": 1033, @@ -4601,25 +4601,25 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 245, "calling_function": "utxo move", - "event": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "event": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "quantity": 2000000000, "tx_index": 121, - "utxo": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3:0", - "utxo_address": "bcrt1qquwz9xkh3dv34l49v32lk3kc283utd58ung2cn", - "block_time": 1740490111, + "utxo": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef:0", + "utxo_address": "bcrt1qrpxt8f2mv83dqthd0gcxyn0km374f735zdn99x", + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "20.00000000" }, - "tx_hash": "d66c519e0f46c35c747dcf363d3f31bf77b283c0537bd1392c3fb707b3a43ad3", + "tx_hash": "cda3ce89f8bd81d93d20b0522a3464835f3bc6ca342505b36a55c3ab188e16ef", "block_index": 245, - "block_time": 1740490111 + "block_time": 1740753580 } ], "next_cursor": null, @@ -4629,12 +4629,12 @@ Returns the events of a transaction ## Group Addresses -### Get Balances By Addresses [GET /v2/addresses/balances{?addresses}{&type}{&cursor}{&limit}{&offset}{&sort}{&verbose}] +### Get Balances By Addresses [GET /v2/addresses/balances{?addresses,type,cursor,limit,offset,sort,verbose}] Returns the balances of several addresses + Parameters - + addresses: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n,bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw,bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd` (str, required) - Comma separated list of addresses + type (enum[str], optional) - The type of balances to return + Default: `all` + Members @@ -4642,13 +4642,13 @@ Returns the balances of several addresses + `utxo` + `address` + cursor (str, optional) - The last index of the balances to return - + Default: `None` + + Default: `null` + 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` + + Default: `null` + sort: `quantity:desc` (str, optional) - The sort order of the balances to return (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -4663,7 +4663,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -4673,10 +4673,10 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "total_normalized": "1000.00000000" }, @@ -4686,7 +4686,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "address": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -4696,10 +4696,10 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "total_normalized": "5.00000000" }, @@ -4709,7 +4709,7 @@ Returns the balances of several addresses "total": 180, "addresses": [ { - "address": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "address": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "utxo": null, "utxo_address": null, "quantity": 180, @@ -4719,10 +4719,10 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "total_normalized": "0.00000180" }, @@ -4732,7 +4732,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "address": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "utxo": null, "utxo_address": null, "quantity": 40, @@ -4742,10 +4742,10 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "total_normalized": "0.00000040" }, @@ -4755,7 +4755,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "address": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "utxo": null, "utxo_address": null, "quantity": 19, @@ -4765,10 +4765,10 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "total_normalized": "0.00000019" } @@ -4778,12 +4778,12 @@ Returns the balances of several addresses } ``` -### Get Transactions By Addresses [GET /v2/addresses/transactions{?addresses}{&type}{&show_unconfirmed}{&cursor}{&limit}{&offset}{&verbose}] +### Get Transactions By Addresses [GET /v2/addresses/transactions{?addresses,type,show_unconfirmed,cursor,limit,offset,verbose}] Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n,bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw,bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd` (str, required) - Comma separated list of addresses to return + type (enum[str], optional) - The type of the transaction to return + Default: `all` + Members @@ -4811,13 +4811,13 @@ Returns the transactions of a list of addresses + `utxomove` + `unknown` + show_unconfirmed (bool, optional) - Show unconfirmed transactions - + Default: `False` + + Default: `null` + cursor: `121` (str, optional) - The last transaction index to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of transactions to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -4828,17 +4828,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 115, - "tx_hash": "fef95527acddc38cf41b44de40d85e7f67dc5b51531997c0483c5c3b321f16c9", + "tx_hash": "74af4bd8b860eda727c00ac6ce3d5d69280b0a0485ebe8a0b62260021af066ce", "block_index": 237, - "block_hash": "1c5046600a300ab52d6df5e581ad26e371cdf54ef2e4a8908154ad380263b51b", - "block_time": 1740490081, - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", - "destination": "bcrt1qv82qg4jp6nn6wahdnx2d2u6cdfxyc2zuw7u9mv", + "block_hash": "06849c8c7cfabba4da15ff4e705f07c8814f16b4904cce24c39f2c95a7f81bd3", + "block_time": 1740753550, + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", + "destination": "bcrt1qtxlcgyaaap8jttl3hxycjvmeyfck6v5dpz5fet", "btc_amount": 3000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": " fef95527acddc38cf41b44de40d85e7f67dc5b51531997c0483c5c3b321f16c9:0 3 1", + "utxos_info": " 74af4bd8b860eda727c00ac6ce3d5d69280b0a0485ebe8a0b62260021af066ce:0 3 1", "transaction_type": "dispense", "events": [ { @@ -4848,9 +4848,9 @@ Returns the transactions of a list of addresses "asset": "XCP", "dispense_count": 1, "give_remaining": 2000, - "source": "bcrt1qv82qg4jp6nn6wahdnx2d2u6cdfxyc2zuw7u9mv", + "source": "bcrt1qtxlcgyaaap8jttl3hxycjvmeyfck6v5dpz5fet", "status": 0, - "tx_hash": "c54957b9cbb662e2cc9eee1c09950f7365365a09abad1bdf1afb3cca05d63705", + "tx_hash": "89008f5718c5f916913ab4305f7a2e92c5206576bc15f232760329c909734735", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4861,9 +4861,9 @@ Returns the transactions of a list of addresses }, "give_remaining_normalized": "0.00002000" }, - "tx_hash": "fef95527acddc38cf41b44de40d85e7f67dc5b51531997c0483c5c3b321f16c9", + "tx_hash": "74af4bd8b860eda727c00ac6ce3d5d69280b0a0485ebe8a0b62260021af066ce", "block_index": 237, - "block_time": 1740490081 + "block_time": 1740753550 }, { "event_index": 984, @@ -4872,14 +4872,14 @@ Returns the transactions of a list of addresses "asset": "XCP", "block_index": 237, "btc_amount": 3000, - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "dispense_index": 0, "dispense_quantity": 3000, - "dispenser_tx_hash": "c54957b9cbb662e2cc9eee1c09950f7365365a09abad1bdf1afb3cca05d63705", - "source": "bcrt1qv82qg4jp6nn6wahdnx2d2u6cdfxyc2zuw7u9mv", - "tx_hash": "fef95527acddc38cf41b44de40d85e7f67dc5b51531997c0483c5c3b321f16c9", + "dispenser_tx_hash": "89008f5718c5f916913ab4305f7a2e92c5206576bc15f232760329c909734735", + "source": "bcrt1qtxlcgyaaap8jttl3hxycjvmeyfck6v5dpz5fet", + "tx_hash": "74af4bd8b860eda727c00ac6ce3d5d69280b0a0485ebe8a0b62260021af066ce", "tx_index": 115, - "block_time": 1740490081, + "block_time": 1740753550, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4891,9 +4891,9 @@ Returns the transactions of a list of addresses "dispense_quantity_normalized": "0.00003000", "btc_amount_normalized": "0.00003000" }, - "tx_hash": "fef95527acddc38cf41b44de40d85e7f67dc5b51531997c0483c5c3b321f16c9", + "tx_hash": "74af4bd8b860eda727c00ac6ce3d5d69280b0a0485ebe8a0b62260021af066ce", "block_index": 237, - "block_time": 1740490081 + "block_time": 1740753550 } ], "unpacked_data": { @@ -4907,17 +4907,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 81, - "tx_hash": "10823d6a8b3b44da8361e887a02942fa28973b782e59ec26ece5a7c88b8d974d", + "tx_hash": "0fcfb7c950c395c49f32db5d575d9e5caabfdd2cb83d82b67c3bcdd58f75caf2", "block_index": 205, - "block_hash": "638370e27b741fc8f6114d475dd54cff84cd548ac9b54db3656691469f7dc7d0", - "block_time": 1740489939, - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "block_hash": "24adcdf214fa8923f336b7f7cdbf377af8c380828cf6f4a5c904267af0346ece", + "block_time": 1740753411, + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380293ba4d53f14e5d071a5294a216269c455519f1180978506450cf51f83ec6f5648b40686ccd56ce921809b4723f09a5df31a06280cb9c843df516eecbe6188746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003807c93e2a5d8bc1b1ccb5bd21be114d0179c58174080477fccd3c26b0ee407fa80ad7da75746f75e588080fe1d09fb4935bc6a85763686229729c324a9875888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 10823d6a8b3b44da8361e887a02942fa28973b782e59ec26ece5a7c88b8d974d:0 4 ", + "utxos_info": " 0fcfb7c950c395c49f32db5d575d9e5caabfdd2cb83d82b67c3bcdd58f75caf2:0 4 ", "transaction_type": "mpma", "events": [ { @@ -4925,24 +4925,24 @@ Returns the transactions of a list of addresses "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "c0b993f438e82940a24a6f2e74bca15b60d197c7afa93aea4d0f82b02cc89f96" + "tx_hash": "35bd0d52757f66df9b6afcc40ea13d66c4a7f3d4e667a2ae42765c4e35517e86" }, - "tx_hash": "10823d6a8b3b44da8361e887a02942fa28973b782e59ec26ece5a7c88b8d974d", + "tx_hash": "0fcfb7c950c395c49f32db5d575d9e5caabfdd2cb83d82b67c3bcdd58f75caf2", "block_index": 205, - "block_time": 1740489939 + "block_time": 1740753411 }, { "event_index": 705, "event": "ORDER_EXPIRATION", "params": { "block_index": 205, - "order_hash": "c0b993f438e82940a24a6f2e74bca15b60d197c7afa93aea4d0f82b02cc89f96", - "source": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", - "block_time": 1740489939 + "order_hash": "35bd0d52757f66df9b6afcc40ea13d66c4a7f3d4e667a2ae42765c4e35517e86", + "source": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", + "block_time": 1740753411 }, - "tx_hash": "10823d6a8b3b44da8361e887a02942fa28973b782e59ec26ece5a7c88b8d974d", + "tx_hash": "0fcfb7c950c395c49f32db5d575d9e5caabfdd2cb83d82b67c3bcdd58f75caf2", "block_index": 205, - "block_time": 1740489939 + "block_time": 1740753411 }, { "event_index": 711, @@ -4950,29 +4950,29 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", + "destination": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", "memo": "the memo", "msg_index": 0, "quantity": 10, "send_type": "send", - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "status": "valid", - "tx_hash": "10823d6a8b3b44da8361e887a02942fa28973b782e59ec26ece5a7c88b8d974d", + "tx_hash": "0fcfb7c950c395c49f32db5d575d9e5caabfdd2cb83d82b67c3bcdd58f75caf2", "tx_index": 81, - "block_time": 1740489939, + "block_time": 1740753411, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "10823d6a8b3b44da8361e887a02942fa28973b782e59ec26ece5a7c88b8d974d", + "tx_hash": "0fcfb7c950c395c49f32db5d575d9e5caabfdd2cb83d82b67c3bcdd58f75caf2", "block_index": 205, - "block_time": 1740489939 + "block_time": 1740753411 }, { "event_index": 712, @@ -4980,29 +4980,29 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1qndrj8uy6the35p3gpjuuss7l29hwe0npylexmz", + "destination": "bcrt1qlcwsn76fxk7x4ptkx6rz99efcvj2np6c8j4ugh", "memo": "memo3", "msg_index": 1, "quantity": 10, "send_type": "send", - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "status": "valid", - "tx_hash": "10823d6a8b3b44da8361e887a02942fa28973b782e59ec26ece5a7c88b8d974d", + "tx_hash": "0fcfb7c950c395c49f32db5d575d9e5caabfdd2cb83d82b67c3bcdd58f75caf2", "tx_index": 81, - "block_time": 1740489939, + "block_time": 1740753411, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "10823d6a8b3b44da8361e887a02942fa28973b782e59ec26ece5a7c88b8d974d", + "tx_hash": "0fcfb7c950c395c49f32db5d575d9e5caabfdd2cb83d82b67c3bcdd58f75caf2", "block_index": 205, - "block_time": 1740489939 + "block_time": 1740753411 }, { "event_index": 713, @@ -5010,16 +5010,16 @@ Returns the transactions of a list of addresses "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "destination": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "memo": "memo1", "msg_index": 2, "quantity": 10, "send_type": "send", - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "status": "valid", - "tx_hash": "10823d6a8b3b44da8361e887a02942fa28973b782e59ec26ece5a7c88b8d974d", + "tx_hash": "0fcfb7c950c395c49f32db5d575d9e5caabfdd2cb83d82b67c3bcdd58f75caf2", "tx_index": 81, - "block_time": 1740489939, + "block_time": 1740753411, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5030,9 +5030,9 @@ Returns the transactions of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "10823d6a8b3b44da8361e887a02942fa28973b782e59ec26ece5a7c88b8d974d", + "tx_hash": "0fcfb7c950c395c49f32db5d575d9e5caabfdd2cb83d82b67c3bcdd58f75caf2", "block_index": 205, - "block_time": 1740489939 + "block_time": 1740753411 } ], "unpacked_data": { @@ -5041,23 +5041,23 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", + "destination": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000010" }, { "asset": "XCP", - "destination": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "destination": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -5077,30 +5077,30 @@ Returns the transactions of a list of addresses }, { "tx_index": 80, - "tx_hash": "683501e1389d756a4e8cbf76052729d941f18d450f94fe7c85f5decd64162ce7", + "tx_hash": "bbfe8f5ea366b57f93b615b23595bd2a79c413a0a7d8a42ecea79e69d65af60c", "block_index": 204, - "block_hash": "752a9447faea932344c63f7a85e25d14f471df8c8d3ce8241b4a997b044abd12", - "block_time": 1740489935, - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "block_hash": "774d69ac52d3b627c4dbe339ceb2361954b9083033addec10b5f2c5a9c51b431", + "block_time": 1740753407, + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380293ba4d53f14e5d071a5294a216269c455519f1180978506450cf51f83ec6f5648b40686ccd56ce921809b4723f09a5df31a06280cb9c843df516eecbe61c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003807c93e2a5d8bc1b1ccb5bd21be114d0179c58174080477fccd3c26b0ee407fa80ad7da75746f75e588080fe1d09fb4935bc6a85763686229729c324a98758c8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 683501e1389d756a4e8cbf76052729d941f18d450f94fe7c85f5decd64162ce7:0 4 ", + "utxos_info": " bbfe8f5ea366b57f93b615b23595bd2a79c413a0a7d8a42ecea79e69d65af60c:0 4 ", "transaction_type": "mpma", "events": [ { "event_index": 685, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "6a8b04722b5121498713e9ca34b3a634f0ef5f0cf3ee9a0753bd79b8c3f0cc10_c0b993f438e82940a24a6f2e74bca15b60d197c7afa93aea4d0f82b02cc89f96", - "order_match_id": "6a8b04722b5121498713e9ca34b3a634f0ef5f0cf3ee9a0753bd79b8c3f0cc10_c0b993f438e82940a24a6f2e74bca15b60d197c7afa93aea4d0f82b02cc89f96", + "id": "85ccadf57afa24a41e99d4828fdf2523b15ead1e4325a35a0754e21b540a6a7b_35bd0d52757f66df9b6afcc40ea13d66c4a7f3d4e667a2ae42765c4e35517e86", + "order_match_id": "85ccadf57afa24a41e99d4828fdf2523b15ead1e4325a35a0754e21b540a6a7b_35bd0d52757f66df9b6afcc40ea13d66c4a7f3d4e667a2ae42765c4e35517e86", "status": "expired" }, - "tx_hash": "683501e1389d756a4e8cbf76052729d941f18d450f94fe7c85f5decd64162ce7", + "tx_hash": "bbfe8f5ea366b57f93b615b23595bd2a79c413a0a7d8a42ecea79e69d65af60c", "block_index": 204, - "block_time": 1740489935 + "block_time": 1740753407 }, { "event_index": 687, @@ -5110,26 +5110,26 @@ Returns the transactions of a list of addresses "get_remaining": 3000, "give_remaining": 3000, "status": "open", - "tx_hash": "c0b993f438e82940a24a6f2e74bca15b60d197c7afa93aea4d0f82b02cc89f96", + "tx_hash": "35bd0d52757f66df9b6afcc40ea13d66c4a7f3d4e667a2ae42765c4e35517e86", "fee_required_remaining_normalized": "0.00000000" }, - "tx_hash": "683501e1389d756a4e8cbf76052729d941f18d450f94fe7c85f5decd64162ce7", + "tx_hash": "bbfe8f5ea366b57f93b615b23595bd2a79c413a0a7d8a42ecea79e69d65af60c", "block_index": 204, - "block_time": 1740489935 + "block_time": 1740753407 }, { "event_index": 688, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 204, - "order_match_id": "6a8b04722b5121498713e9ca34b3a634f0ef5f0cf3ee9a0753bd79b8c3f0cc10_c0b993f438e82940a24a6f2e74bca15b60d197c7afa93aea4d0f82b02cc89f96", - "tx0_address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "tx1_address": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", - "block_time": 1740489935 + "order_match_id": "85ccadf57afa24a41e99d4828fdf2523b15ead1e4325a35a0754e21b540a6a7b_35bd0d52757f66df9b6afcc40ea13d66c4a7f3d4e667a2ae42765c4e35517e86", + "tx0_address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "tx1_address": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", + "block_time": 1740753407 }, - "tx_hash": "683501e1389d756a4e8cbf76052729d941f18d450f94fe7c85f5decd64162ce7", + "tx_hash": "bbfe8f5ea366b57f93b615b23595bd2a79c413a0a7d8a42ecea79e69d65af60c", "block_index": 204, - "block_time": 1740489935 + "block_time": 1740753407 }, { "event_index": 689, @@ -5140,13 +5140,13 @@ Returns the transactions of a list of addresses "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "9198a9256ee36ffaa1c68b2098d9920bf461858924c70baa1e2e616814a81c54", + "tx_hash": "2eb60efb2a97a30c075217d0b87f6d98107655bc29264bf51bc4a537262001ea", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "683501e1389d756a4e8cbf76052729d941f18d450f94fe7c85f5decd64162ce7", + "tx_hash": "bbfe8f5ea366b57f93b615b23595bd2a79c413a0a7d8a42ecea79e69d65af60c", "block_index": 204, - "block_time": 1740489935 + "block_time": 1740753407 }, { "event_index": 690, @@ -5157,13 +5157,13 @@ Returns the transactions of a list of addresses "get_remaining": 2000, "give_remaining": 2000, "status": "open", - "tx_hash": "c0b993f438e82940a24a6f2e74bca15b60d197c7afa93aea4d0f82b02cc89f96", + "tx_hash": "35bd0d52757f66df9b6afcc40ea13d66c4a7f3d4e667a2ae42765c4e35517e86", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "683501e1389d756a4e8cbf76052729d941f18d450f94fe7c85f5decd64162ce7", + "tx_hash": "bbfe8f5ea366b57f93b615b23595bd2a79c413a0a7d8a42ecea79e69d65af60c", "block_index": 204, - "block_time": 1740489935 + "block_time": 1740753407 }, { "event_index": 691, @@ -5175,20 +5175,20 @@ Returns the transactions of a list of addresses "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "9198a9256ee36ffaa1c68b2098d9920bf461858924c70baa1e2e616814a81c54_c0b993f438e82940a24a6f2e74bca15b60d197c7afa93aea4d0f82b02cc89f96", + "id": "2eb60efb2a97a30c075217d0b87f6d98107655bc29264bf51bc4a537262001ea_35bd0d52757f66df9b6afcc40ea13d66c4a7f3d4e667a2ae42765c4e35517e86", "match_expire_index": 224, "status": "pending", - "tx0_address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "tx0_address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "tx0_block_index": 189, "tx0_expiration": 21, - "tx0_hash": "9198a9256ee36ffaa1c68b2098d9920bf461858924c70baa1e2e616814a81c54", + "tx0_hash": "2eb60efb2a97a30c075217d0b87f6d98107655bc29264bf51bc4a537262001ea", "tx0_index": 64, - "tx1_address": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", + "tx1_address": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", "tx1_block_index": 204, "tx1_expiration": 21, - "tx1_hash": "c0b993f438e82940a24a6f2e74bca15b60d197c7afa93aea4d0f82b02cc89f96", + "tx1_hash": "35bd0d52757f66df9b6afcc40ea13d66c4a7f3d4e667a2ae42765c4e35517e86", "tx1_index": 58, - "block_time": 1740489935, + "block_time": 1740753407, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5208,9 +5208,9 @@ Returns the transactions of a list of addresses "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "683501e1389d756a4e8cbf76052729d941f18d450f94fe7c85f5decd64162ce7", + "tx_hash": "bbfe8f5ea366b57f93b615b23595bd2a79c413a0a7d8a42ecea79e69d65af60c", "block_index": 204, - "block_time": 1740489935 + "block_time": 1740753407 }, { "event_index": 697, @@ -5218,29 +5218,29 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", + "destination": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", "memo": "746865206d656d6f", "msg_index": 0, "quantity": 10, "send_type": "send", - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "status": "valid", - "tx_hash": "683501e1389d756a4e8cbf76052729d941f18d450f94fe7c85f5decd64162ce7", + "tx_hash": "bbfe8f5ea366b57f93b615b23595bd2a79c413a0a7d8a42ecea79e69d65af60c", "tx_index": 80, - "block_time": 1740489935, + "block_time": 1740753407, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "683501e1389d756a4e8cbf76052729d941f18d450f94fe7c85f5decd64162ce7", + "tx_hash": "bbfe8f5ea366b57f93b615b23595bd2a79c413a0a7d8a42ecea79e69d65af60c", "block_index": 204, - "block_time": 1740489935 + "block_time": 1740753407 }, { "event_index": 698, @@ -5248,29 +5248,29 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1qndrj8uy6the35p3gpjuuss7l29hwe0npylexmz", + "destination": "bcrt1qlcwsn76fxk7x4ptkx6rz99efcvj2np6c8j4ugh", "memo": "746865206d656d6f", "msg_index": 1, "quantity": 10, "send_type": "send", - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "status": "valid", - "tx_hash": "683501e1389d756a4e8cbf76052729d941f18d450f94fe7c85f5decd64162ce7", + "tx_hash": "bbfe8f5ea366b57f93b615b23595bd2a79c413a0a7d8a42ecea79e69d65af60c", "tx_index": 80, - "block_time": 1740489935, + "block_time": 1740753407, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "683501e1389d756a4e8cbf76052729d941f18d450f94fe7c85f5decd64162ce7", + "tx_hash": "bbfe8f5ea366b57f93b615b23595bd2a79c413a0a7d8a42ecea79e69d65af60c", "block_index": 204, - "block_time": 1740489935 + "block_time": 1740753407 }, { "event_index": 699, @@ -5278,16 +5278,16 @@ Returns the transactions of a list of addresses "params": { "asset": "XCP", "block_index": 204, - "destination": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "destination": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "memo": "746865206d656d6f", "msg_index": 2, "quantity": 10, "send_type": "send", - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "status": "valid", - "tx_hash": "683501e1389d756a4e8cbf76052729d941f18d450f94fe7c85f5decd64162ce7", + "tx_hash": "bbfe8f5ea366b57f93b615b23595bd2a79c413a0a7d8a42ecea79e69d65af60c", "tx_index": 80, - "block_time": 1740489935, + "block_time": 1740753407, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5298,9 +5298,9 @@ Returns the transactions of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "683501e1389d756a4e8cbf76052729d941f18d450f94fe7c85f5decd64162ce7", + "tx_hash": "bbfe8f5ea366b57f93b615b23595bd2a79c413a0a7d8a42ecea79e69d65af60c", "block_index": 204, - "block_time": 1740489935 + "block_time": 1740753407 } ], "unpacked_data": { @@ -5309,23 +5309,23 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", + "destination": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000010" }, { "asset": "XCP", - "destination": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "destination": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true, @@ -5345,17 +5345,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 79, - "tx_hash": "a664e79129ea014f2afd994abca856dfb7a93d3e5e5a9ce076c150ddbacd6bd9", + "tx_hash": "1746ca01d596748654719c23fe4b755d61376bd5b029b86715f1de9744c49fb0", "block_index": 203, - "block_hash": "3c1630c9b791239a57b5ab83a6017c9c250bd8b19cb146f7a9e27e8a27e2ce2e", - "block_time": 1740489930, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "block_hash": "084d9a5adfd0dbf2e51ea884185377b32ff7218d0dafb9a4c99936564a0db621", + "block_time": 1740753404, + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003806cab8b7c91fbb7207dbe0f34f070bb2211bd066d80978506450cf51f83ec6f5648b40686ccd56ce921809b4723f09a5df31a06280cb9c843df516eecbe6140000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d4ac3fb6a909682da43dbe9b8ff3a98e09a949c180477fccd3c26b0ee407fa80ad7da75746f75e588080fe1d09fb4935bc6a85763686229729c324a9875840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " a664e79129ea014f2afd994abca856dfb7a93d3e5e5a9ce076c150ddbacd6bd9:0 4 ", + "utxos_info": " 1746ca01d596748654719c23fe4b755d61376bd5b029b86715f1de9744c49fb0:0 4 ", "transaction_type": "mpma", "events": [ { @@ -5364,29 +5364,29 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", + "destination": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", "memo": "memo2", "msg_index": 0, "quantity": 10, "send_type": "send", - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "status": "valid", - "tx_hash": "a664e79129ea014f2afd994abca856dfb7a93d3e5e5a9ce076c150ddbacd6bd9", + "tx_hash": "1746ca01d596748654719c23fe4b755d61376bd5b029b86715f1de9744c49fb0", "tx_index": 79, - "block_time": 1740489930, + "block_time": 1740753404, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a664e79129ea014f2afd994abca856dfb7a93d3e5e5a9ce076c150ddbacd6bd9", + "tx_hash": "1746ca01d596748654719c23fe4b755d61376bd5b029b86715f1de9744c49fb0", "block_index": 203, - "block_time": 1740489930 + "block_time": 1740753404 }, { "event_index": 679, @@ -5394,29 +5394,29 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1qndrj8uy6the35p3gpjuuss7l29hwe0npylexmz", + "destination": "bcrt1qlcwsn76fxk7x4ptkx6rz99efcvj2np6c8j4ugh", "memo": "memo3", "msg_index": 1, "quantity": 10, "send_type": "send", - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "status": "valid", - "tx_hash": "a664e79129ea014f2afd994abca856dfb7a93d3e5e5a9ce076c150ddbacd6bd9", + "tx_hash": "1746ca01d596748654719c23fe4b755d61376bd5b029b86715f1de9744c49fb0", "tx_index": 79, - "block_time": 1740489930, + "block_time": 1740753404, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a664e79129ea014f2afd994abca856dfb7a93d3e5e5a9ce076c150ddbacd6bd9", + "tx_hash": "1746ca01d596748654719c23fe4b755d61376bd5b029b86715f1de9744c49fb0", "block_index": 203, - "block_time": 1740489930 + "block_time": 1740753404 }, { "event_index": 680, @@ -5424,16 +5424,16 @@ Returns the transactions of a list of addresses "params": { "asset": "XCP", "block_index": 203, - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "memo": "memo1", "msg_index": 2, "quantity": 10, "send_type": "send", - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "status": "valid", - "tx_hash": "a664e79129ea014f2afd994abca856dfb7a93d3e5e5a9ce076c150ddbacd6bd9", + "tx_hash": "1746ca01d596748654719c23fe4b755d61376bd5b029b86715f1de9744c49fb0", "tx_index": 79, - "block_time": 1740489930, + "block_time": 1740753404, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5444,9 +5444,9 @@ Returns the transactions of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a664e79129ea014f2afd994abca856dfb7a93d3e5e5a9ce076c150ddbacd6bd9", + "tx_hash": "1746ca01d596748654719c23fe4b755d61376bd5b029b86715f1de9744c49fb0", "block_index": 203, - "block_time": 1740489930 + "block_time": 1740753404 } ], "unpacked_data": { @@ -5455,23 +5455,23 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", + "destination": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000010" }, { "asset": "XCP", - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -5491,17 +5491,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 78, - "tx_hash": "61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d", + "tx_hash": "7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d", "block_index": 202, - "block_hash": "3b59fe5cd5a64b9d6cffea87e2458d32f454bac64d320b5e448a25459d1bf47d", - "block_time": 1740489926, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "block_hash": "4969113da67d29db33376fb6a2a96a7828ccc40826ef8bbadd491a7d34817087", + "block_time": 1740753400, + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003806cab8b7c91fbb7207dbe0f34f070bb2211bd066d80978506450cf51f83ec6f5648b40686ccd56ce921809b4723f09a5df31a06280cb9c843df516eecbe6188746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d4ac3fb6a909682da43dbe9b8ff3a98e09a949c180477fccd3c26b0ee407fa80ad7da75746f75e588080fe1d09fb4935bc6a85763686229729c324a9875888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d:0 4 ", + "utxos_info": " 7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d:0 4 ", "transaction_type": "mpma", "events": [ { @@ -5509,24 +5509,24 @@ Returns the transactions of a list of addresses "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "6a8b04722b5121498713e9ca34b3a634f0ef5f0cf3ee9a0753bd79b8c3f0cc10" + "tx_hash": "85ccadf57afa24a41e99d4828fdf2523b15ead1e4325a35a0754e21b540a6a7b" }, - "tx_hash": "61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d", + "tx_hash": "7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d", "block_index": 202, - "block_time": 1740489926 + "block_time": 1740753400 }, { "event_index": 660, "event": "ORDER_EXPIRATION", "params": { "block_index": 202, - "order_hash": "6a8b04722b5121498713e9ca34b3a634f0ef5f0cf3ee9a0753bd79b8c3f0cc10", - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "block_time": 1740489926 + "order_hash": "85ccadf57afa24a41e99d4828fdf2523b15ead1e4325a35a0754e21b540a6a7b", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "block_time": 1740753400 }, - "tx_hash": "61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d", + "tx_hash": "7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d", "block_index": 202, - "block_time": 1740489926 + "block_time": 1740753400 }, { "event_index": 666, @@ -5534,29 +5534,29 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", + "destination": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", "memo": "the memo", "msg_index": 0, "quantity": 10, "send_type": "send", - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "status": "valid", - "tx_hash": "61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d", + "tx_hash": "7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d", "tx_index": 78, - "block_time": 1740489926, + "block_time": 1740753400, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d", + "tx_hash": "7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d", "block_index": 202, - "block_time": 1740489926 + "block_time": 1740753400 }, { "event_index": 667, @@ -5564,29 +5564,29 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1qndrj8uy6the35p3gpjuuss7l29hwe0npylexmz", + "destination": "bcrt1qlcwsn76fxk7x4ptkx6rz99efcvj2np6c8j4ugh", "memo": "the memo", "msg_index": 1, "quantity": 10, "send_type": "send", - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "status": "valid", - "tx_hash": "61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d", + "tx_hash": "7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d", "tx_index": 78, - "block_time": 1740489926, + "block_time": 1740753400, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d", + "tx_hash": "7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d", "block_index": 202, - "block_time": 1740489926 + "block_time": 1740753400 }, { "event_index": 668, @@ -5594,16 +5594,16 @@ Returns the transactions of a list of addresses "params": { "asset": "XCP", "block_index": 202, - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "memo": "the memo", "msg_index": 2, "quantity": 10, "send_type": "send", - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "status": "valid", - "tx_hash": "61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d", + "tx_hash": "7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d", "tx_index": 78, - "block_time": 1740489926, + "block_time": 1740753400, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5614,9 +5614,9 @@ Returns the transactions of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d", + "tx_hash": "7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d", "block_index": 202, - "block_time": 1740489926 + "block_time": 1740753400 } ], "unpacked_data": { @@ -5625,23 +5625,23 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", + "destination": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000010" }, { "asset": "XCP", - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -5665,20 +5665,20 @@ Returns the transactions of a list of addresses } ``` -### Get Events By Addresses [GET /v2/addresses/events{?addresses}{&event_name}{&cursor}{&limit}{&offset}{&verbose}] +### Get Events By Addresses [GET /v2/addresses/events{?addresses,event_name,cursor,limit,offset,verbose}] Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n,bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw,bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return - + Default: `None` + + Default: `null` + cursor: `1042` (str, optional) - The last event index to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -5694,14 +5694,14 @@ Returns the events of a list of addresses "asset": "XCP", "block_index": 237, "btc_amount": 3000, - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "dispense_index": 0, "dispense_quantity": 3000, - "dispenser_tx_hash": "c54957b9cbb662e2cc9eee1c09950f7365365a09abad1bdf1afb3cca05d63705", - "source": "bcrt1qv82qg4jp6nn6wahdnx2d2u6cdfxyc2zuw7u9mv", - "tx_hash": "fef95527acddc38cf41b44de40d85e7f67dc5b51531997c0483c5c3b321f16c9", + "dispenser_tx_hash": "89008f5718c5f916913ab4305f7a2e92c5206576bc15f232760329c909734735", + "source": "bcrt1qtxlcgyaaap8jttl3hxycjvmeyfck6v5dpz5fet", + "tx_hash": "74af4bd8b860eda727c00ac6ce3d5d69280b0a0485ebe8a0b62260021af066ce", "tx_index": 115, - "block_time": 1740490081, + "block_time": 1740753550, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5713,24 +5713,24 @@ Returns the events of a list of addresses "dispense_quantity_normalized": "0.00003000", "btc_amount_normalized": "0.00003000" }, - "tx_hash": "fef95527acddc38cf41b44de40d85e7f67dc5b51531997c0483c5c3b321f16c9", + "tx_hash": "74af4bd8b860eda727c00ac6ce3d5d69280b0a0485ebe8a0b62260021af066ce", "block_index": 237, - "block_time": 1740490081 + "block_time": 1740753550 }, { "event_index": 982, "event": "CREDIT", "params": { - "address": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "address": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "asset": "XCP", "block_index": 237, "calling_function": "dispense", - "event": "fef95527acddc38cf41b44de40d85e7f67dc5b51531997c0483c5c3b321f16c9", + "event": "74af4bd8b860eda727c00ac6ce3d5d69280b0a0485ebe8a0b62260021af066ce", "quantity": 3000, "tx_index": 115, "utxo": null, "utxo_address": null, - "block_time": 1740490081, + "block_time": 1740753550, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5741,60 +5741,60 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00003000" }, - "tx_hash": "fef95527acddc38cf41b44de40d85e7f67dc5b51531997c0483c5c3b321f16c9", + "tx_hash": "74af4bd8b860eda727c00ac6ce3d5d69280b0a0485ebe8a0b62260021af066ce", "block_index": 237, - "block_time": 1740490081 + "block_time": 1740753550 }, { "event_index": 980, "event": "NEW_TRANSACTION", "params": { - "block_hash": "1c5046600a300ab52d6df5e581ad26e371cdf54ef2e4a8908154ad380263b51b", + "block_hash": "06849c8c7cfabba4da15ff4e705f07c8814f16b4904cce24c39f2c95a7f81bd3", "block_index": 237, - "block_time": 1740490081, + "block_time": 1740753550, "btc_amount": 3000, "data": "0d00", - "destination": "bcrt1qv82qg4jp6nn6wahdnx2d2u6cdfxyc2zuw7u9mv", + "destination": "bcrt1qtxlcgyaaap8jttl3hxycjvmeyfck6v5dpz5fet", "fee": 0, - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "transaction_type": "dispense", - "tx_hash": "fef95527acddc38cf41b44de40d85e7f67dc5b51531997c0483c5c3b321f16c9", + "tx_hash": "74af4bd8b860eda727c00ac6ce3d5d69280b0a0485ebe8a0b62260021af066ce", "tx_index": 115, - "utxos_info": " fef95527acddc38cf41b44de40d85e7f67dc5b51531997c0483c5c3b321f16c9:0 3 1", + "utxos_info": " 74af4bd8b860eda727c00ac6ce3d5d69280b0a0485ebe8a0b62260021af066ce:0 3 1", "btc_amount_normalized": "0.00003000" }, - "tx_hash": "fef95527acddc38cf41b44de40d85e7f67dc5b51531997c0483c5c3b321f16c9", + "tx_hash": "74af4bd8b860eda727c00ac6ce3d5d69280b0a0485ebe8a0b62260021af066ce", "block_index": 237, - "block_time": 1740490081 + "block_time": 1740753550 }, { "event_index": 861, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "9198a9256ee36ffaa1c68b2098d9920bf461858924c70baa1e2e616814a81c54_c0b993f438e82940a24a6f2e74bca15b60d197c7afa93aea4d0f82b02cc89f96", - "tx0_address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "tx1_address": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", - "block_time": 1740490010 + "order_match_id": "2eb60efb2a97a30c075217d0b87f6d98107655bc29264bf51bc4a537262001ea_35bd0d52757f66df9b6afcc40ea13d66c4a7f3d4e667a2ae42765c4e35517e86", + "tx0_address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "tx1_address": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", + "block_time": 1740753479 }, - "tx_hash": "3672a9093ed26f6be9b0f343040f560e1986e2ad87d26b05fc56b45061b87010", + "tx_hash": "e19939d8482318a35e5a0a6df5866e2f443518138e34658cee050e0cc503bdb6", "block_index": 225, - "block_time": 1740490010 + "block_time": 1740753479 }, { "event_index": 860, "event": "CREDIT", "params": { - "address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "9198a9256ee36ffaa1c68b2098d9920bf461858924c70baa1e2e616814a81c54_c0b993f438e82940a24a6f2e74bca15b60d197c7afa93aea4d0f82b02cc89f96", + "event": "2eb60efb2a97a30c075217d0b87f6d98107655bc29264bf51bc4a537262001ea_35bd0d52757f66df9b6afcc40ea13d66c4a7f3d4e667a2ae42765c4e35517e86", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1740490010, + "block_time": 1740753479, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5805,9 +5805,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "3672a9093ed26f6be9b0f343040f560e1986e2ad87d26b05fc56b45061b87010", + "tx_hash": "e19939d8482318a35e5a0a6df5866e2f443518138e34658cee050e0cc503bdb6", "block_index": 225, - "block_time": 1740490010 + "block_time": 1740753479 } ], "next_cursor": 758, @@ -5815,16 +5815,16 @@ Returns the events of a list of addresses } ``` -### Get Mempool Events By Addresses [GET /v2/addresses/mempool{?addresses}{&event_name}{&cursor}{&limit}{&verbose}] +### Get Mempool Events By Addresses [GET /v2/addresses/mempool{?addresses,event_name,cursor,limit,verbose}] Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc,bcrt1qndrj8uy6the35p3gpjuuss7l29hwe0npylexmz` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4,bcrt1qlcwsn76fxk7x4ptkx6rz99efcvj2np6c8j4ugh` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return - + Default: `None` + + Default: `null` + cursor (str, optional) - The last event index to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of events to return + Default: `100` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -5836,19 +5836,19 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "0ab945476155bacbb733e71fe0fe435cdb13c4954a1231bfcabc678c0ec790eb", + "tx_hash": "9fb3352d25badde72f6eaeedb05fe509a27db18b022527688cbc7c8ce4e38a49", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", + "destination": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", "memo": null, "msg_index": 0, "quantity": 10000, "send_type": "send", - "source": "bcrt1qndrj8uy6the35p3gpjuuss7l29hwe0npylexmz", + "source": "bcrt1qlcwsn76fxk7x4ptkx6rz99efcvj2np6c8j4ugh", "status": "valid", - "tx_hash": "0ab945476155bacbb733e71fe0fe435cdb13c4954a1231bfcabc678c0ec790eb", + "tx_hash": "9fb3352d25badde72f6eaeedb05fe509a27db18b022527688cbc7c8ce4e38a49", "tx_index": 122, "asset_info": { "asset_longname": null, @@ -5860,22 +5860,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1740490115.3338332 + "timestamp": 1740753584.2420638 }, { - "tx_hash": "0ab945476155bacbb733e71fe0fe435cdb13c4954a1231bfcabc678c0ec790eb", + "tx_hash": "9fb3352d25badde72f6eaeedb05fe509a27db18b022527688cbc7c8ce4e38a49", "event": "CREDIT", "params": { - "address": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", + "address": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", "asset": "XCP", "block_index": 245, "calling_function": "send", - "event": "0ab945476155bacbb733e71fe0fe435cdb13c4954a1231bfcabc678c0ec790eb", + "event": "9fb3352d25badde72f6eaeedb05fe509a27db18b022527688cbc7c8ce4e38a49", "quantity": 10000, "tx_index": 122, "utxo": null, "utxo_address": null, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5886,22 +5886,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1740490115.3338332 + "timestamp": 1740753584.2420638 }, { - "tx_hash": "0ab945476155bacbb733e71fe0fe435cdb13c4954a1231bfcabc678c0ec790eb", + "tx_hash": "9fb3352d25badde72f6eaeedb05fe509a27db18b022527688cbc7c8ce4e38a49", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qndrj8uy6the35p3gpjuuss7l29hwe0npylexmz", + "address": "bcrt1qlcwsn76fxk7x4ptkx6rz99efcvj2np6c8j4ugh", "asset": "XCP", "block_index": 245, - "event": "0ab945476155bacbb733e71fe0fe435cdb13c4954a1231bfcabc678c0ec790eb", + "event": "9fb3352d25badde72f6eaeedb05fe509a27db18b022527688cbc7c8ce4e38a49", "quantity": 10000, "tx_index": 122, "utxo": null, "utxo_address": null, - "block_time": 1740490111, + "block_time": 1740753580, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5912,27 +5912,27 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1740490115.3338332 + "timestamp": 1740753584.2420638 }, { - "tx_hash": "0ab945476155bacbb733e71fe0fe435cdb13c4954a1231bfcabc678c0ec790eb", + "tx_hash": "9fb3352d25badde72f6eaeedb05fe509a27db18b022527688cbc7c8ce4e38a49", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1740490115.3338332, + "block_time": 1740753584.2420638, "btc_amount": 0, - "data": "020000000000000001000000000000271080978506450cf51f83ec6f5648b40686ccd56ce921", + "data": "020000000000000001000000000000271080477fccd3c26b0ee407fa80ad7da75746f75e5880", "destination": "", "fee": 10000, - "source": "bcrt1qndrj8uy6the35p3gpjuuss7l29hwe0npylexmz", + "source": "bcrt1qlcwsn76fxk7x4ptkx6rz99efcvj2np6c8j4ugh", "transaction_type": "enhanced_send", - "tx_hash": "0ab945476155bacbb733e71fe0fe435cdb13c4954a1231bfcabc678c0ec790eb", + "tx_hash": "9fb3352d25badde72f6eaeedb05fe509a27db18b022527688cbc7c8ce4e38a49", "tx_index": 122, - "utxos_info": " 0ab945476155bacbb733e71fe0fe435cdb13c4954a1231bfcabc678c0ec790eb:1 2 0", + "utxos_info": " 9fb3352d25badde72f6eaeedb05fe509a27db18b022527688cbc7c8ce4e38a49:1 2 0", "btc_amount_normalized": "0.00000000" }, - "timestamp": 1740490115.3338332 + "timestamp": 1740753584.2420638 } ], "next_cursor": null, @@ -5940,12 +5940,12 @@ Returns the mempool events of a list of addresses } ``` -### Get Address Balances [GET /v2/addresses/{address}/balances{?type}{&cursor}{&limit}{&offset}{&sort}{&verbose}] +### Get Address Balances [GET /v2/addresses/{address}/balances{?type,cursor,limit,offset,sort,verbose}] Returns the balances of an address + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The address to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The address to return + type (enum[str], optional) - The type of balances to return + Default: `` + Members @@ -5953,13 +5953,13 @@ Returns the balances of an address + `utxo` + `address` + cursor (str, optional) - The last index of the balances to return - + Default: `None` + + Default: `null` + 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` + + Default: `null` + sort: `quantity:desc` (str, optional) - The sort order of the balances to return (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -5969,7 +5969,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "A95428956980101314", "asset_longname": null, "quantity": 100000000000, @@ -5978,15 +5978,15 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "MPMASSET", "asset_longname": null, "quantity": 99999998960, @@ -5995,15 +5995,15 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "999.99998960" }, { - "address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "MYASSETA", "asset_longname": null, "quantity": 97999999980, @@ -6012,15 +6012,15 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "979.99999980" }, { - "address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "XCP", "asset_longname": null, "quantity": 82599966196, @@ -6037,7 +6037,7 @@ Returns the balances of an address "quantity_normalized": "825.99966196" }, { - "address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "TESTLOCKDESC", "asset_longname": null, "quantity": 9999990000, @@ -6046,10 +6046,10 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "99.99990000" } @@ -6059,12 +6059,12 @@ Returns the balances of an address } ``` -### Get Balances By Address And Asset [GET /v2/addresses/{address}/balances/{asset}{?type}{&cursor}{&limit}{&offset}{&verbose}] +### Get Balances By Address And Asset [GET /v2/addresses/{address}/balances/{asset}{?type,cursor,limit,offset,verbose}] Returns the balances of an address and asset + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The address to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The address to return + asset: `XCP` (str, required) - The asset to return + type (enum[str], optional) - The type of balances to return + Default: `all` @@ -6073,11 +6073,11 @@ Returns the balances of an address and asset + `utxo` + `address` + cursor (str, optional) - The last index of the balances to return - + Default: `None` + + Default: `null` + 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` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -6087,7 +6087,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "XCP", "asset_longname": null, "quantity": 82599966196, @@ -6109,14 +6109,14 @@ Returns the balances of an address and asset } ``` -### Get Credits By Address [GET /v2/addresses/{address}/credits{?action}{&cursor}{&limit}{&offset}{&verbose}] +### Get Credits By Address [GET /v2/addresses/{address}/credits{?action,cursor,limit,offset,verbose}] Returns the credits of an address + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The address to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The address to return + action (enum[str], optional) - The action to filter by - + Default: `None` + + Default: `null` + Members + `None` + `Closed: Max dispenses reached` @@ -6147,11 +6147,11 @@ Returns the credits of an address + `sweep` + `wins` + cursor (str, optional) - The last index of the credits to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of credits to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -6162,15 +6162,15 @@ Returns the credits of an address "result": [ { "block_index": 225, - "address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "XCP", "quantity": 1000, "calling_function": "order expired", - "event": "9198a9256ee36ffaa1c68b2098d9920bf461858924c70baa1e2e616814a81c54_c0b993f438e82940a24a6f2e74bca15b60d197c7afa93aea4d0f82b02cc89f96", + "event": "2eb60efb2a97a30c075217d0b87f6d98107655bc29264bf51bc4a537262001ea_35bd0d52757f66df9b6afcc40ea13d66c4a7f3d4e667a2ae42765c4e35517e86", "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1740490010, + "block_time": 1740753479, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6183,15 +6183,15 @@ Returns the credits of an address }, { "block_index": 205, - "address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "10823d6a8b3b44da8361e887a02942fa28973b782e59ec26ece5a7c88b8d974d", + "event": "0fcfb7c950c395c49f32db5d575d9e5caabfdd2cb83d82b67c3bcdd58f75caf2", "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1740489939, + "block_time": 1740753411, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6204,15 +6204,15 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "683501e1389d756a4e8cbf76052729d941f18d450f94fe7c85f5decd64162ce7", + "event": "bbfe8f5ea366b57f93b615b23595bd2a79c413a0a7d8a42ecea79e69d65af60c", "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1740489935, + "block_time": 1740753407, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6225,15 +6225,15 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "6a8b04722b5121498713e9ca34b3a634f0ef5f0cf3ee9a0753bd79b8c3f0cc10_c0b993f438e82940a24a6f2e74bca15b60d197c7afa93aea4d0f82b02cc89f96", + "event": "85ccadf57afa24a41e99d4828fdf2523b15ead1e4325a35a0754e21b540a6a7b_35bd0d52757f66df9b6afcc40ea13d66c4a7f3d4e667a2ae42765c4e35517e86", "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1740489935, + "block_time": 1740753407, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6246,15 +6246,15 @@ Returns the credits of an address }, { "block_index": 202, - "address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "6a8b04722b5121498713e9ca34b3a634f0ef5f0cf3ee9a0753bd79b8c3f0cc10", + "event": "85ccadf57afa24a41e99d4828fdf2523b15ead1e4325a35a0754e21b540a6a7b", "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1740489926, + "block_time": 1740753400, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6271,14 +6271,14 @@ Returns the credits of an address } ``` -### Get Debits By Address [GET /v2/addresses/{address}/debits{?action}{&cursor}{&limit}{&offset}{&verbose}] +### Get Debits By Address [GET /v2/addresses/{address}/debits{?action,cursor,limit,offset,verbose}] Returns the debits of an address + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The address to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The address to return + action (enum[str], optional) - The action to filter by - + Default: `None` + + Default: `null` + Members + `None` + `bet` @@ -6298,11 +6298,11 @@ Returns the debits of an address + `sweep` + `sweep fee` + cursor (str, optional) - The last index of the debits to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of debits to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -6313,15 +6313,15 @@ Returns the debits of an address "result": [ { "block_index": 203, - "address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "a664e79129ea014f2afd994abca856dfb7a93d3e5e5a9ce076c150ddbacd6bd9", + "event": "1746ca01d596748654719c23fe4b755d61376bd5b029b86715f1de9744c49fb0", "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1740489930, + "block_time": 1740753404, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6334,36 +6334,36 @@ Returns the debits of an address }, { "block_index": 203, - "address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "a664e79129ea014f2afd994abca856dfb7a93d3e5e5a9ce076c150ddbacd6bd9", + "event": "1746ca01d596748654719c23fe4b755d61376bd5b029b86715f1de9744c49fb0", "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1740489930, + "block_time": 1740753404, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000020" }, { "block_index": 202, - "address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d", + "event": "7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d", "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1740489926, + "block_time": 1740753400, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6376,43 +6376,43 @@ Returns the debits of an address }, { "block_index": 202, - "address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d", + "event": "7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d", "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1740489926, + "block_time": 1740753400, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000020" }, { "block_index": 201, - "address": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "address": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "0022913062f0470672f6b471ff669c43b45ce767fa522bcd64b909f606d59cd0", + "event": "395d0055fa629e8b903f7a69f5823dbb937bb3444b939d9dfcfad2439b0c3a2a", "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1740489923, + "block_time": 1740753397, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00001000" } @@ -6422,12 +6422,12 @@ Returns the debits of an address } ``` -### Get Bet By Feed [GET /v2/addresses/{address}/bets{?status}{&cursor}{&limit}{&offset}{&verbose}] +### Get Bet By Feed [GET /v2/addresses/{address}/bets{?status,cursor,limit,offset,verbose}] Returns the bets of a feed + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The address of the feed + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -6437,11 +6437,11 @@ Returns the bets of a feed + `filled` + `open` + cursor (str, optional) - The last index of the bets to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of bets to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -6455,18 +6455,18 @@ Returns the bets of a feed } ``` -### Get Broadcasts By Source [GET /v2/addresses/{address}/broadcasts{?cursor}{&limit}{&offset}{&verbose}] +### Get Broadcasts By Source [GET /v2/addresses/{address}/broadcasts{?cursor,limit,offset,verbose}] Returns the broadcasts of a source + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The address to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The address to return + cursor (str, optional) - The last index of the broadcasts to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of broadcasts to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -6477,16 +6477,16 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "bc83ab07e663168df3e35fd609b4cf82ac8729bee2abe936939a9a60a5f1e17f", + "tx_hash": "4fdc0f9f3ccafb3aa680de94aaf1886e00f2332d20727fed4c6541c6bd97b0bf", "block_index": 128, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, "text": "Hello, world!", "locked": false, "status": "valid", - "block_time": 1740489662, + "block_time": 1740753135, "fee_fraction_int_normalized": "0.00000000" } ], @@ -6495,18 +6495,18 @@ Returns the broadcasts of a source } ``` -### Get Burns By Address [GET /v2/addresses/{address}/burns{?cursor}{&limit}{&offset}{&verbose}] +### Get Burns By Address [GET /v2/addresses/{address}/burns{?cursor,limit,offset,verbose}] Returns the burns of an address + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The address to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The address to return + cursor (str, optional) - The last index of the burns to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of burns to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -6516,14 +6516,14 @@ Returns the burns of an address { "result": [ { - "tx_index": 6, - "tx_hash": "941d4b64e401987ea35a2aba14b68356311a81db0373e3a1758044db0a1400a8", + "tx_index": 9, + "tx_hash": "5ca833028d5d598d9610aba72d0dd5c265fb27a57f936fa7a834a0bde7683f9c", "block_index": 112, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1740489603, + "block_time": 1740753074, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" } @@ -6533,12 +6533,12 @@ Returns the burns of an address } ``` -### Get Sends By Address [GET /v2/addresses/{address}/sends{?send_type}{&cursor}{&limit}{&offset}{&verbose}] +### Get Sends By Address [GET /v2/addresses/{address}/sends{?send_type,cursor,limit,offset,verbose}] Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The address to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The address to return + send_type (enum[str], optional) - The type of sends to return + Default: `all` + Members @@ -6548,11 +6548,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address + `move` + `detach` + cursor (str, optional) - The last index of the sends to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of sends to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -6563,10 +6563,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 81, - "tx_hash": "10823d6a8b3b44da8361e887a02942fa28973b782e59ec26ece5a7c88b8d974d", + "tx_hash": "0fcfb7c950c395c49f32db5d575d9e5caabfdd2cb83d82b67c3bcdd58f75caf2", "block_index": 205, - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", - "destination": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", + "destination": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6576,7 +6576,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "send_type": "send", "source_address": null, "destination_address": null, - "block_time": 1740489939, + "block_time": 1740753411, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6590,10 +6590,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 80, - "tx_hash": "683501e1389d756a4e8cbf76052729d941f18d450f94fe7c85f5decd64162ce7", + "tx_hash": "bbfe8f5ea366b57f93b615b23595bd2a79c413a0a7d8a42ecea79e69d65af60c", "block_index": 204, - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", - "destination": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", + "destination": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6603,7 +6603,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "send_type": "send", "source_address": null, "destination_address": null, - "block_time": 1740489935, + "block_time": 1740753407, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6617,10 +6617,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "a664e79129ea014f2afd994abca856dfb7a93d3e5e5a9ce076c150ddbacd6bd9", + "tx_hash": "1746ca01d596748654719c23fe4b755d61376bd5b029b86715f1de9744c49fb0", "block_index": 203, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "asset": "XCP", "quantity": 10, "status": "valid", @@ -6630,7 +6630,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address "send_type": "send", "source_address": null, "destination_address": null, - "block_time": 1740489930, + "block_time": 1740753404, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6644,10 +6644,10 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "a664e79129ea014f2afd994abca856dfb7a93d3e5e5a9ce076c150ddbacd6bd9", + "tx_hash": "1746ca01d596748654719c23fe4b755d61376bd5b029b86715f1de9744c49fb0", "block_index": 203, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "destination": "bcrt1qndrj8uy6the35p3gpjuuss7l29hwe0npylexmz", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "destination": "bcrt1qlcwsn76fxk7x4ptkx6rz99efcvj2np6c8j4ugh", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -6657,24 +6657,24 @@ Returns the sends, include Enhanced and MPMA sends, of an address "send_type": "send", "source_address": null, "destination_address": null, - "block_time": 1740489930, + "block_time": 1740753404, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" }, { "tx_index": 79, - "tx_hash": "a664e79129ea014f2afd994abca856dfb7a93d3e5e5a9ce076c150ddbacd6bd9", + "tx_hash": "1746ca01d596748654719c23fe4b755d61376bd5b029b86715f1de9744c49fb0", "block_index": 203, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "destination": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "destination": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", "asset": "MPMASSET", "quantity": 10, "status": "valid", @@ -6684,14 +6684,14 @@ Returns the sends, include Enhanced and MPMA sends, of an address "send_type": "send", "source_address": null, "destination_address": null, - "block_time": 1740489930, + "block_time": 1740753404, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000010", "fee_paid_normalized": "0.00000000" @@ -6702,12 +6702,12 @@ Returns the sends, include Enhanced and MPMA sends, of an address } ``` -### Get Receive By Address [GET /v2/addresses/{address}/receives{?send_type}{&cursor}{&limit}{&offset}{&verbose}] +### Get Receive By Address [GET /v2/addresses/{address}/receives{?send_type,cursor,limit,offset,verbose}] Returns the receives of an address + Parameters - + address: `bcrt1qqus708ucy6kecks0w8pykqmghard6kqf8tus06` (str, required) - The address to return + + address: `bcrt1qqr3ytv3fzj80k7fzg8z9epl0ejnggxvsajydxe` (str, required) - The address to return + send_type (enum[str], optional) - The type of sends to return + Default: `all` + Members @@ -6717,11 +6717,11 @@ Returns the receives of an address + `move` + `detach` + cursor (str, optional) - The last index of the sends to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of sends to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -6732,10 +6732,10 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "07b10b136343dff482f4ef2fcdeeed7a8403281b76c1c449c6a0bf5e50a21896", + "tx_hash": "a9845e451ad2234ae42513ce7282724d9499d44787225401d78148b5002df37d", "block_index": 142, - "source": "d953481e654442a1ec569f4173efdf983d4efc5e6801e75074867e328e228e79:0", - "destination": "bcrt1qqus708ucy6kecks0w8pykqmghard6kqf8tus06", + "source": "bc80c22c8e76a7599cfda77c47121b981e78062049fcaae92aab2345cb336f37:0", + "destination": "bcrt1qqr3ytv3fzj80k7fzg8z9epl0ejnggxvsajydxe", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", @@ -6743,16 +6743,16 @@ Returns the receives of an address "memo": null, "fee_paid": 0, "send_type": "detach", - "source_address": "bcrt1qndrj8uy6the35p3gpjuuss7l29hwe0npylexmz", + "source_address": "bcrt1qlcwsn76fxk7x4ptkx6rz99efcvj2np6c8j4ugh", "destination_address": null, - "block_time": 1740489714, + "block_time": 1740753185, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" @@ -6763,12 +6763,12 @@ Returns the receives of an address } ``` -### Get Sends By Address And Asset [GET /v2/addresses/{address}/sends/{asset}{?send_type}{&cursor}{&limit}{&offset}{&verbose}] +### Get Sends By Address And Asset [GET /v2/addresses/{address}/sends/{asset}{?send_type,cursor,limit,offset,verbose}] Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The address to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The address to return + asset: `EXPANSIVE` (str, required) - The asset to return + send_type (enum[str], optional) - The type of sends to return + Default: `all` @@ -6779,11 +6779,11 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset + `move` + `detach` + cursor (str, optional) - The last index of the sends to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of sends to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -6797,12 +6797,12 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset } ``` -### Get Receive By Address And Asset [GET /v2/addresses/{address}/receives/{asset}{?send_type}{&cursor}{&limit}{&offset}{&verbose}] +### Get Receive By Address And Asset [GET /v2/addresses/{address}/receives/{asset}{?send_type,cursor,limit,offset,verbose}] Returns the receives of an address and asset + Parameters - + address: `bcrt1qqus708ucy6kecks0w8pykqmghard6kqf8tus06` (str, required) - The address to return + + address: `bcrt1qqr3ytv3fzj80k7fzg8z9epl0ejnggxvsajydxe` (str, required) - The address to return + asset: `EXPANSIVE` (str, required) - The asset to return + send_type (enum[str], optional) - The type of sends to return + Default: `all` @@ -6813,11 +6813,11 @@ Returns the receives of an address and asset + `move` + `detach` + cursor (str, optional) - The last index of the sends to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of sends to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -6831,18 +6831,18 @@ Returns the receives of an address and asset } ``` -### Get Valid Destructions By Address [GET /v2/addresses/{address}/destructions{?cursor}{&limit}{&offset}{&verbose}] +### Get Valid Destructions By Address [GET /v2/addresses/{address}/destructions{?cursor,limit,offset,verbose}] Returns the destructions of a block + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The address to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The address to return + cursor (str, optional) - The last index of the destructions to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of destructions to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -6853,21 +6853,21 @@ Returns the destructions of a block "result": [ { "tx_index": 14, - "tx_hash": "54da50dc04fe18ff5822c81f0f4dbf0a908912f00e788a5a9cbe2a6c0900fca9", + "tx_hash": "c2b21aeaf62317f68ca2b177c6da8283fc5d5907cbf5a268f7a909ff8e60f07b", "block_index": 121, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "FAIRMINTB", "quantity": 300000000, "tag": "soft cap not reached", "status": "valid", - "block_time": 1740489636, + "block_time": 1740753109, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "3.00000000" } @@ -6877,12 +6877,12 @@ Returns the destructions of a block } ``` -### Get Dispensers By Address [GET /v2/addresses/{address}/dispensers{?status}{&exclude_with_oracle}{&cursor}{&limit}{&offset}{&sort}{&verbose}] +### Get Dispensers By Address [GET /v2/addresses/{address}/dispensers{?status,exclude_with_oracle,cursor,limit,offset,sort,verbose}] Returns the dispensers of an address + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The address to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -6892,15 +6892,15 @@ Returns the dispensers of an address + `closing` + `open_empty_address` + exclude_with_oracle (bool, optional) - Whether to exclude dispensers with an oracle - + Default: `False` + + Default: `null` + cursor (str, optional) - The last index of the dispensers to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of dispensers to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + sort: `give_quantity:desc` (str, optional) - The sort order of the dispensers to return (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -6911,9 +6911,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 26, - "tx_hash": "41cd4920db670aef82765d2f2af44e4e44ef7d9d3efb638be176676e865bf3ae", + "tx_hash": "98e0f4900c5a0d91f5f55f89b19bac89a1d65823b04e4908386292e9c4bdb48b", "block_index": 132, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -6922,7 +6922,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "origin": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -6932,7 +6932,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1740489677, + "block_time": 1740753150, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6950,9 +6950,9 @@ Returns the dispensers of an address }, { "tx_index": 68, - "tx_hash": "d41f2c39d9b1d48cc1eb69ad013d77ab81c8298971503c6f6414291a955ae4c2", + "tx_hash": "53a75c1185385ab3c2cfa97f4b630f2cd88aff7c713ab3eab164cef8067bc2ce", "block_index": 194, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -6961,7 +6961,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "origin": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -6971,14 +6971,14 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1740489890, + "block_time": 1740753366, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00006000", @@ -6998,7 +6998,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The address to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (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` @@ -7009,9 +7009,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "41cd4920db670aef82765d2f2af44e4e44ef7d9d3efb638be176676e865bf3ae", + "tx_hash": "98e0f4900c5a0d91f5f55f89b19bac89a1d65823b04e4908386292e9c4bdb48b", "block_index": 132, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7020,7 +7020,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "origin": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7030,7 +7030,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1740489677, + "block_time": 1740753150, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7049,18 +7049,18 @@ Returns the dispenser of an address and an asset } ``` -### Get Dispenses By Source [GET /v2/addresses/{address}/dispenses/sends{?cursor}{&limit}{&offset}{&verbose}] +### Get Dispenses By Source [GET /v2/addresses/{address}/dispenses/sends{?cursor,limit,offset,verbose}] Returns the dispenses of a source + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The address to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of dispenses to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7072,18 +7072,18 @@ Returns the dispenses of a source { "tx_index": 69, "dispense_index": 0, - "tx_hash": "832f8a1eb60d96708f9123043e4f1926310d7209651c18bfa27cec0739d82574", + "tx_hash": "b0302bb956314359d4835a867ffabf972c927c613d14891686b8bc87ed9171d4", "block_index": 194, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d41f2c39d9b1d48cc1eb69ad013d77ab81c8298971503c6f6414291a955ae4c2", + "dispenser_tx_hash": "53a75c1185385ab3c2cfa97f4b630f2cd88aff7c713ab3eab164cef8067bc2ce", "btc_amount": 4000, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7091,7 +7091,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "origin": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7106,14 +7106,14 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1740489890, + "block_time": 1740753366, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" @@ -7121,18 +7121,18 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "6b57de313e045291168bd742555b44a9695a3640f691ee2d9732739e5f285f67", + "tx_hash": "6815f2668c53d016a405d66703b3c7727939feea378ba2ebb62a293f4414cd61", "block_index": 132, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "41cd4920db670aef82765d2f2af44e4e44ef7d9d3efb638be176676e865bf3ae", + "dispenser_tx_hash": "98e0f4900c5a0d91f5f55f89b19bac89a1d65823b04e4908386292e9c4bdb48b", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7140,7 +7140,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "origin": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7155,7 +7155,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1740489677, + "block_time": 1740753150, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7170,18 +7170,18 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "26bfec7d8335b6222db947c7a42b6c61459f92527a3724a2ec6f1102ff146dac", + "tx_hash": "980efaf38627b13fb67f5dabd80ee2738b7bbc63eec29a272145475fed2a8ddd", "block_index": 131, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "41cd4920db670aef82765d2f2af44e4e44ef7d9d3efb638be176676e865bf3ae", + "dispenser_tx_hash": "98e0f4900c5a0d91f5f55f89b19bac89a1d65823b04e4908386292e9c4bdb48b", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7189,7 +7189,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "origin": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7204,7 +7204,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1740489673, + "block_time": 1740753146, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7222,18 +7222,18 @@ Returns the dispenses of a source } ``` -### Get Dispenses By Destination [GET /v2/addresses/{address}/dispenses/receives{?cursor}{&limit}{&offset}{&verbose}] +### Get Dispenses By Destination [GET /v2/addresses/{address}/dispenses/receives{?cursor,limit,offset,verbose}] Returns the dispenses of a destination + Parameters - + address: `bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6` (str, required) - The address to return + + address: `bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of dispenses to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7245,18 +7245,18 @@ Returns the dispenses of a destination { "tx_index": 115, "dispense_index": 0, - "tx_hash": "fef95527acddc38cf41b44de40d85e7f67dc5b51531997c0483c5c3b321f16c9", + "tx_hash": "74af4bd8b860eda727c00ac6ce3d5d69280b0a0485ebe8a0b62260021af066ce", "block_index": 237, - "source": "bcrt1qv82qg4jp6nn6wahdnx2d2u6cdfxyc2zuw7u9mv", - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "source": "bcrt1qtxlcgyaaap8jttl3hxycjvmeyfck6v5dpz5fet", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "asset": "XCP", "dispense_quantity": 3000, - "dispenser_tx_hash": "c54957b9cbb662e2cc9eee1c09950f7365365a09abad1bdf1afb3cca05d63705", + "dispenser_tx_hash": "89008f5718c5f916913ab4305f7a2e92c5206576bc15f232760329c909734735", "btc_amount": 3000, "dispenser": { "tx_index": 114, "block_index": 237, - "source": "bcrt1qv82qg4jp6nn6wahdnx2d2u6cdfxyc2zuw7u9mv", + "source": "bcrt1qtxlcgyaaap8jttl3hxycjvmeyfck6v5dpz5fet", "give_quantity": 1, "escrow_quantity": 5000, "satoshirate": 1, @@ -7264,7 +7264,7 @@ Returns the dispenses of a destination "give_remaining": 2000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qv82qg4jp6nn6wahdnx2d2u6cdfxyc2zuw7u9mv", + "origin": "bcrt1qtxlcgyaaap8jttl3hxycjvmeyfck6v5dpz5fet", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7279,7 +7279,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1740490081, + "block_time": 1740753550, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7294,18 +7294,18 @@ Returns the dispenses of a destination { "tx_index": 69, "dispense_index": 0, - "tx_hash": "832f8a1eb60d96708f9123043e4f1926310d7209651c18bfa27cec0739d82574", + "tx_hash": "b0302bb956314359d4835a867ffabf972c927c613d14891686b8bc87ed9171d4", "block_index": 194, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "d41f2c39d9b1d48cc1eb69ad013d77ab81c8298971503c6f6414291a955ae4c2", + "dispenser_tx_hash": "53a75c1185385ab3c2cfa97f4b630f2cd88aff7c713ab3eab164cef8067bc2ce", "btc_amount": 4000, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7313,7 +7313,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "origin": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7328,14 +7328,14 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1740489890, + "block_time": 1740753366, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "dispense_quantity_normalized": "0.00004000", "btc_amount_normalized": "0.00004000" @@ -7343,18 +7343,18 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "6b57de313e045291168bd742555b44a9695a3640f691ee2d9732739e5f285f67", + "tx_hash": "6815f2668c53d016a405d66703b3c7727939feea378ba2ebb62a293f4414cd61", "block_index": 132, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "41cd4920db670aef82765d2f2af44e4e44ef7d9d3efb638be176676e865bf3ae", + "dispenser_tx_hash": "98e0f4900c5a0d91f5f55f89b19bac89a1d65823b04e4908386292e9c4bdb48b", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7362,7 +7362,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "origin": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7377,7 +7377,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1740489677, + "block_time": 1740753150, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7392,18 +7392,18 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "26bfec7d8335b6222db947c7a42b6c61459f92527a3724a2ec6f1102ff146dac", + "tx_hash": "980efaf38627b13fb67f5dabd80ee2738b7bbc63eec29a272145475fed2a8ddd", "block_index": 131, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "41cd4920db670aef82765d2f2af44e4e44ef7d9d3efb638be176676e865bf3ae", + "dispenser_tx_hash": "98e0f4900c5a0d91f5f55f89b19bac89a1d65823b04e4908386292e9c4bdb48b", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7411,7 +7411,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "origin": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7426,7 +7426,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1740489673, + "block_time": 1740753146, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7444,19 +7444,19 @@ Returns the dispenses of a destination } ``` -### Get Dispenses By Source And Asset [GET /v2/addresses/{address}/dispenses/sends/{asset}{?cursor}{&limit}{&offset}{&verbose}] +### Get Dispenses By Source And Asset [GET /v2/addresses/{address}/dispenses/sends/{asset}{?cursor,limit,offset,verbose}] Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The address to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (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` + + Default: `null` + limit: `5` (int, optional) - The maximum number of dispenses to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7468,18 +7468,18 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "6b57de313e045291168bd742555b44a9695a3640f691ee2d9732739e5f285f67", + "tx_hash": "6815f2668c53d016a405d66703b3c7727939feea378ba2ebb62a293f4414cd61", "block_index": 132, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "41cd4920db670aef82765d2f2af44e4e44ef7d9d3efb638be176676e865bf3ae", + "dispenser_tx_hash": "98e0f4900c5a0d91f5f55f89b19bac89a1d65823b04e4908386292e9c4bdb48b", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7487,7 +7487,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "origin": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7502,7 +7502,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1740489677, + "block_time": 1740753150, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7517,18 +7517,18 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "26bfec7d8335b6222db947c7a42b6c61459f92527a3724a2ec6f1102ff146dac", + "tx_hash": "980efaf38627b13fb67f5dabd80ee2738b7bbc63eec29a272145475fed2a8ddd", "block_index": 131, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "41cd4920db670aef82765d2f2af44e4e44ef7d9d3efb638be176676e865bf3ae", + "dispenser_tx_hash": "98e0f4900c5a0d91f5f55f89b19bac89a1d65823b04e4908386292e9c4bdb48b", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7536,7 +7536,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "origin": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7551,7 +7551,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1740489673, + "block_time": 1740753146, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7569,19 +7569,19 @@ Returns the dispenses of an address and an asset } ``` -### Get Dispenses By Destination And Asset [GET /v2/addresses/{address}/dispenses/receives/{asset}{?cursor}{&limit}{&offset}{&verbose}] +### Get Dispenses By Destination And Asset [GET /v2/addresses/{address}/dispenses/receives/{asset}{?cursor,limit,offset,verbose}] Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6` (str, required) - The address to return + + address: `bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd` (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` + + Default: `null` + limit: `5` (int, optional) - The maximum number of dispenses to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7593,18 +7593,18 @@ Returns the dispenses of an address and an asset { "tx_index": 115, "dispense_index": 0, - "tx_hash": "fef95527acddc38cf41b44de40d85e7f67dc5b51531997c0483c5c3b321f16c9", + "tx_hash": "74af4bd8b860eda727c00ac6ce3d5d69280b0a0485ebe8a0b62260021af066ce", "block_index": 237, - "source": "bcrt1qv82qg4jp6nn6wahdnx2d2u6cdfxyc2zuw7u9mv", - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "source": "bcrt1qtxlcgyaaap8jttl3hxycjvmeyfck6v5dpz5fet", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "asset": "XCP", "dispense_quantity": 3000, - "dispenser_tx_hash": "c54957b9cbb662e2cc9eee1c09950f7365365a09abad1bdf1afb3cca05d63705", + "dispenser_tx_hash": "89008f5718c5f916913ab4305f7a2e92c5206576bc15f232760329c909734735", "btc_amount": 3000, "dispenser": { "tx_index": 114, "block_index": 237, - "source": "bcrt1qv82qg4jp6nn6wahdnx2d2u6cdfxyc2zuw7u9mv", + "source": "bcrt1qtxlcgyaaap8jttl3hxycjvmeyfck6v5dpz5fet", "give_quantity": 1, "escrow_quantity": 5000, "satoshirate": 1, @@ -7612,7 +7612,7 @@ Returns the dispenses of an address and an asset "give_remaining": 2000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qv82qg4jp6nn6wahdnx2d2u6cdfxyc2zuw7u9mv", + "origin": "bcrt1qtxlcgyaaap8jttl3hxycjvmeyfck6v5dpz5fet", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7627,7 +7627,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1740490081, + "block_time": 1740753550, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7642,18 +7642,18 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "6b57de313e045291168bd742555b44a9695a3640f691ee2d9732739e5f285f67", + "tx_hash": "6815f2668c53d016a405d66703b3c7727939feea378ba2ebb62a293f4414cd61", "block_index": 132, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "41cd4920db670aef82765d2f2af44e4e44ef7d9d3efb638be176676e865bf3ae", + "dispenser_tx_hash": "98e0f4900c5a0d91f5f55f89b19bac89a1d65823b04e4908386292e9c4bdb48b", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7661,7 +7661,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "origin": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7676,7 +7676,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1740489677, + "block_time": 1740753150, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7691,18 +7691,18 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "26bfec7d8335b6222db947c7a42b6c61459f92527a3724a2ec6f1102ff146dac", + "tx_hash": "980efaf38627b13fb67f5dabd80ee2738b7bbc63eec29a272145475fed2a8ddd", "block_index": 131, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "41cd4920db670aef82765d2f2af44e4e44ef7d9d3efb638be176676e865bf3ae", + "dispenser_tx_hash": "98e0f4900c5a0d91f5f55f89b19bac89a1d65823b04e4908386292e9c4bdb48b", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7710,7 +7710,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "origin": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7725,7 +7725,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1740489673, + "block_time": 1740753146, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7743,18 +7743,18 @@ Returns the dispenses of an address and an asset } ``` -### Get Sweeps By Address [GET /v2/addresses/{address}/sweeps{?cursor}{&limit}{&offset}{&verbose}] +### Get Sweeps By Address [GET /v2/addresses/{address}/sweeps{?cursor,limit,offset,verbose}] Returns the sweeps of an address + Parameters - + address: `bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc` (str, required) - The address to return + + address: `bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4` (str, required) - The address to return + cursor (str, optional) - The last index of the sweeps to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of sweeps to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7765,15 +7765,15 @@ Returns the sweeps of an address "result": [ { "tx_index": 65, - "tx_hash": "e0043724de46115717f26d5126665cd592e152dc397d4ecbcd7e41809a575b49", + "tx_hash": "8147d0b6ade433cc41f566d17ffb795496b06717b221c9b6e5491a73d12186b3", "block_index": 190, - "source": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", - "destination": "bcrt1qndrj8uy6the35p3gpjuuss7l29hwe0npylexmz", + "source": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", + "destination": "bcrt1qlcwsn76fxk7x4ptkx6rz99efcvj2np6c8j4ugh", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, - "block_time": 1740489877, + "block_time": 1740753350, "fee_paid_normalized": "0.00600000" } ], @@ -7782,12 +7782,12 @@ Returns the sweeps of an address } ``` -### Get Issuances By Address [GET /v2/addresses/{address}/issuances{?asset_events}{&cursor}{&limit}{&offset}{&verbose}] +### Get Issuances By Address [GET /v2/addresses/{address}/issuances{?asset_events,cursor,limit,offset,verbose}] Returns the issuances of an address + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The address to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -7802,11 +7802,11 @@ Returns the issuances of an address + `fairmint` + `lock_description` + cursor (str, optional) - The last index of the issuances to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of issuances to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7817,14 +7817,14 @@ Returns the issuances of an address "result": [ { "tx_index": 76, - "tx_hash": "618fc9de3f53e656d35672aae92d4f5f967b0be380055402be05eb5b4616c680", + "tx_hash": "34475c5fecbf42a5ded06dcf6c6e3f2222879309aec027ea618318c90d9d6ce5", "msg_index": 0, "block_index": 200, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "transfer": false, "callable": false, "call_date": 0, @@ -7838,20 +7838,20 @@ Returns the issuances of an address "asset_events": "creation", "locked": false, "reset": false, - "block_time": 1740489919, + "block_time": 1740753393, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "6462b7c0a285d9ddeaa9882afedb1a658a587df6c774e23ba6be2e52ffc5a8db", + "tx_hash": "295bb2ee3ba065883eb0c6c36920d12e1785d7fc1cc4adc05ad511d3b3d6ff5d", "msg_index": 0, "block_index": 156, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "transfer": false, "callable": false, "call_date": 0, @@ -7865,20 +7865,20 @@ Returns the issuances of an address "asset_events": "creation", "locked": false, "reset": false, - "block_time": 1740489764, + "block_time": 1740753239, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "d1614bc6ac4ad49e83a2d1c530ec601d2700e2f024267c80355b2858665fa851", + "tx_hash": "ecc3d73794a256cf8a9b9d848298f8bc51e9128f2da759a39d4104f7693c601f", "msg_index": 0, "block_index": 155, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "transfer": false, "callable": false, "call_date": 0, @@ -7892,20 +7892,20 @@ Returns the issuances of an address "asset_events": "lock_description", "locked": false, "reset": false, - "block_time": 1740489760, + "block_time": 1740753236, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "db65ebabadbfbaa1ccd0c61a811ae5a5922472ad3f33ece8aca9a73ef76d46a1", + "tx_hash": "178f640397a80e7a4009223ac15f593dfb7fb34b2d3eaec9d0e4ea79a67f5f9f", "msg_index": 0, "block_index": 154, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "transfer": false, "callable": false, "call_date": 0, @@ -7919,20 +7919,20 @@ Returns the issuances of an address "asset_events": "creation", "locked": false, "reset": false, - "block_time": 1740489756, + "block_time": 1740753231, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "99f95ed98411f0bc6826f68854aa5e64393c6baeb043c3f7d81b052650501b1f", + "tx_hash": "26d44e349f938de59a042afddbe4ace6084b32330341fb6845de154bf4160b1d", "msg_index": 0, "block_index": 153, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "transfer": false, "callable": false, "call_date": 0, @@ -7946,7 +7946,7 @@ Returns the issuances of an address "asset_events": "creation", "locked": false, "reset": false, - "block_time": 1740489753, + "block_time": 1740753228, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -7956,20 +7956,20 @@ Returns the issuances of an address } ``` -### Get Valid Assets By Issuer Or Owner [GET /v2/addresses/{address}/assets{?named}{&cursor}{&limit}{&offset}{&verbose}] +### Get Valid Assets By Issuer Or Owner [GET /v2/addresses/{address}/assets{?named,cursor,limit,offset,verbose}] Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The issuer or owner to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets - + Default: `None` + + Default: `null` + cursor (str, optional) - The last index of the assets to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of assets to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -7982,8 +7982,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, "supply": 100000000000, @@ -7991,16 +7991,16 @@ Returns the valid assets issued or owned by an address "description_locked": false, "first_issuance_block_index": 200, "last_issuance_block_index": 200, - "first_issuance_block_time": 1740489919, - "last_issuance_block_time": 1740489919, + "first_issuance_block_time": 1740753393, + "last_issuance_block_time": 1740753393, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, "supply": 10000000000, @@ -8008,16 +8008,16 @@ Returns the valid assets issued or owned by an address "description_locked": false, "first_issuance_block_index": 153, "last_issuance_block_index": 155, - "first_issuance_block_time": 1740489753, - "last_issuance_block_time": 1740489760, + "first_issuance_block_time": 1740753228, + "last_issuance_block_time": 1740753236, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, "supply": 180, @@ -8025,16 +8025,16 @@ Returns the valid assets issued or owned by an address "description_locked": false, "first_issuance_block_index": 148, "last_issuance_block_index": 150, - "first_issuance_block_time": 1740489736, - "last_issuance_block_time": 1740489742, + "first_issuance_block_time": 1740753208, + "last_issuance_block_time": 1740753216, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, "supply": 100000000000, @@ -8042,16 +8042,16 @@ Returns the valid assets issued or owned by an address "description_locked": false, "first_issuance_block_index": 139, "last_issuance_block_index": 139, - "first_issuance_block_time": 1740489704, - "last_issuance_block_time": 1740489704, + "first_issuance_block_time": 1740753174, + "last_issuance_block_time": 1740753174, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, "supply": 40, @@ -8059,8 +8059,8 @@ Returns the valid assets issued or owned by an address "description_locked": false, "first_issuance_block_index": 126, "last_issuance_block_index": 127, - "first_issuance_block_time": 1740489654, - "last_issuance_block_time": 1740489657, + "first_issuance_block_time": 1740753127, + "last_issuance_block_time": 1740753130, "supply_normalized": "0.00000040" } ], @@ -8069,20 +8069,20 @@ Returns the valid assets issued or owned by an address } ``` -### Get Valid Assets By Issuer [GET /v2/addresses/{address}/assets/issued{?named}{&cursor}{&limit}{&offset}{&verbose}] +### Get Valid Assets By Issuer [GET /v2/addresses/{address}/assets/issued{?named,cursor,limit,offset,verbose}] Returns the valid assets issued by an address + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The issuer to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The issuer to return + named: `true` (bool, optional) - Whether to return only named assets - + Default: `None` + + Default: `null` + cursor (str, optional) - The last index of the assets to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of assets to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8095,8 +8095,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, "supply": 100000000000, @@ -8104,16 +8104,16 @@ Returns the valid assets issued by an address "description_locked": false, "first_issuance_block_index": 200, "last_issuance_block_index": 200, - "first_issuance_block_time": 1740489919, - "last_issuance_block_time": 1740489919, + "first_issuance_block_time": 1740753393, + "last_issuance_block_time": 1740753393, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, "supply": 10000000000, @@ -8121,16 +8121,16 @@ Returns the valid assets issued by an address "description_locked": false, "first_issuance_block_index": 153, "last_issuance_block_index": 155, - "first_issuance_block_time": 1740489753, - "last_issuance_block_time": 1740489760, + "first_issuance_block_time": 1740753228, + "last_issuance_block_time": 1740753236, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, "supply": 180, @@ -8138,16 +8138,16 @@ Returns the valid assets issued by an address "description_locked": false, "first_issuance_block_index": 148, "last_issuance_block_index": 150, - "first_issuance_block_time": 1740489736, - "last_issuance_block_time": 1740489742, + "first_issuance_block_time": 1740753208, + "last_issuance_block_time": 1740753216, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, "supply": 100000000000, @@ -8155,16 +8155,16 @@ Returns the valid assets issued by an address "description_locked": false, "first_issuance_block_index": 139, "last_issuance_block_index": 139, - "first_issuance_block_time": 1740489704, - "last_issuance_block_time": 1740489704, + "first_issuance_block_time": 1740753174, + "last_issuance_block_time": 1740753174, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, "supply": 40, @@ -8172,8 +8172,8 @@ Returns the valid assets issued by an address "description_locked": false, "first_issuance_block_index": 126, "last_issuance_block_index": 127, - "first_issuance_block_time": 1740489654, - "last_issuance_block_time": 1740489657, + "first_issuance_block_time": 1740753127, + "last_issuance_block_time": 1740753130, "supply_normalized": "0.00000040" } ], @@ -8182,20 +8182,20 @@ Returns the valid assets issued by an address } ``` -### Get Valid Assets By Owner [GET /v2/addresses/{address}/assets/owned{?named}{&cursor}{&limit}{&offset}{&verbose}] +### Get Valid Assets By Owner [GET /v2/addresses/{address}/assets/owned{?named,cursor,limit,offset,verbose}] Returns the valid assets owned by an address + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The owner to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets - + Default: `None` + + Default: `null` + cursor (str, optional) - The last index of the assets to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of assets to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8208,8 +8208,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, "supply": 100000000000, @@ -8217,16 +8217,16 @@ Returns the valid assets owned by an address "description_locked": false, "first_issuance_block_index": 200, "last_issuance_block_index": 200, - "first_issuance_block_time": 1740489919, - "last_issuance_block_time": 1740489919, + "first_issuance_block_time": 1740753393, + "last_issuance_block_time": 1740753393, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, "supply": 10000000000, @@ -8234,16 +8234,16 @@ Returns the valid assets owned by an address "description_locked": false, "first_issuance_block_index": 153, "last_issuance_block_index": 155, - "first_issuance_block_time": 1740489753, - "last_issuance_block_time": 1740489760, + "first_issuance_block_time": 1740753228, + "last_issuance_block_time": 1740753236, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, "supply": 180, @@ -8251,16 +8251,16 @@ Returns the valid assets owned by an address "description_locked": false, "first_issuance_block_index": 148, "last_issuance_block_index": 150, - "first_issuance_block_time": 1740489736, - "last_issuance_block_time": 1740489742, + "first_issuance_block_time": 1740753208, + "last_issuance_block_time": 1740753216, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, "supply": 100000000000, @@ -8268,16 +8268,16 @@ Returns the valid assets owned by an address "description_locked": false, "first_issuance_block_index": 139, "last_issuance_block_index": 139, - "first_issuance_block_time": 1740489704, - "last_issuance_block_time": 1740489704, + "first_issuance_block_time": 1740753174, + "last_issuance_block_time": 1740753174, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, "supply": 40, @@ -8285,8 +8285,8 @@ Returns the valid assets owned by an address "description_locked": false, "first_issuance_block_index": 126, "last_issuance_block_index": 127, - "first_issuance_block_time": 1740489654, - "last_issuance_block_time": 1740489657, + "first_issuance_block_time": 1740753127, + "last_issuance_block_time": 1740753130, "supply_normalized": "0.00000040" } ], @@ -8295,12 +8295,12 @@ Returns the valid assets owned by an address } ``` -### Get Transactions By Address [GET /v2/addresses/{address}/transactions{?type}{&show_unconfirmed}{&cursor}{&limit}{&offset}{&verbose}] +### Get Transactions By Address [GET /v2/addresses/{address}/transactions{?type,show_unconfirmed,cursor,limit,offset,verbose}] Returns the transactions of an address + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The address to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The address to return + type (enum[str], optional) - The type of the transaction to return + Default: `all` + Members @@ -8328,13 +8328,13 @@ Returns the transactions of an address + `utxomove` + `unknown` + show_unconfirmed (bool, optional) - Show unconfirmed transactions - + Default: `False` + + Default: `null` + cursor: `121` (str, optional) - The last transaction index to return - + Default: `None` + + Default: `null` + 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` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8345,17 +8345,17 @@ Returns the transactions of an address "result": [ { "tx_index": 79, - "tx_hash": "a664e79129ea014f2afd994abca856dfb7a93d3e5e5a9ce076c150ddbacd6bd9", + "tx_hash": "1746ca01d596748654719c23fe4b755d61376bd5b029b86715f1de9744c49fb0", "block_index": 203, - "block_hash": "3c1630c9b791239a57b5ab83a6017c9c250bd8b19cb146f7a9e27e8a27e2ce2e", - "block_time": 1740489930, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "block_hash": "084d9a5adfd0dbf2e51ea884185377b32ff7218d0dafb9a4c99936564a0db621", + "block_time": 1740753404, + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003806cab8b7c91fbb7207dbe0f34f070bb2211bd066d80978506450cf51f83ec6f5648b40686ccd56ce921809b4723f09a5df31a06280cb9c843df516eecbe6140000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d4ac3fb6a909682da43dbe9b8ff3a98e09a949c180477fccd3c26b0ee407fa80ad7da75746f75e588080fe1d09fb4935bc6a85763686229729c324a9875840000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " a664e79129ea014f2afd994abca856dfb7a93d3e5e5a9ce076c150ddbacd6bd9:0 4 ", + "utxos_info": " 1746ca01d596748654719c23fe4b755d61376bd5b029b86715f1de9744c49fb0:0 4 ", "transaction_type": "mpma", "events": [ { @@ -8364,29 +8364,29 @@ Returns the transactions of an address "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", + "destination": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", "memo": "memo2", "msg_index": 0, "quantity": 10, "send_type": "send", - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "status": "valid", - "tx_hash": "a664e79129ea014f2afd994abca856dfb7a93d3e5e5a9ce076c150ddbacd6bd9", + "tx_hash": "1746ca01d596748654719c23fe4b755d61376bd5b029b86715f1de9744c49fb0", "tx_index": 79, - "block_time": 1740489930, + "block_time": 1740753404, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a664e79129ea014f2afd994abca856dfb7a93d3e5e5a9ce076c150ddbacd6bd9", + "tx_hash": "1746ca01d596748654719c23fe4b755d61376bd5b029b86715f1de9744c49fb0", "block_index": 203, - "block_time": 1740489930 + "block_time": 1740753404 }, { "event_index": 679, @@ -8394,29 +8394,29 @@ Returns the transactions of an address "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1qndrj8uy6the35p3gpjuuss7l29hwe0npylexmz", + "destination": "bcrt1qlcwsn76fxk7x4ptkx6rz99efcvj2np6c8j4ugh", "memo": "memo3", "msg_index": 1, "quantity": 10, "send_type": "send", - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "status": "valid", - "tx_hash": "a664e79129ea014f2afd994abca856dfb7a93d3e5e5a9ce076c150ddbacd6bd9", + "tx_hash": "1746ca01d596748654719c23fe4b755d61376bd5b029b86715f1de9744c49fb0", "tx_index": 79, - "block_time": 1740489930, + "block_time": 1740753404, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a664e79129ea014f2afd994abca856dfb7a93d3e5e5a9ce076c150ddbacd6bd9", + "tx_hash": "1746ca01d596748654719c23fe4b755d61376bd5b029b86715f1de9744c49fb0", "block_index": 203, - "block_time": 1740489930 + "block_time": 1740753404 }, { "event_index": 680, @@ -8424,16 +8424,16 @@ Returns the transactions of an address "params": { "asset": "XCP", "block_index": 203, - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "memo": "memo1", "msg_index": 2, "quantity": 10, "send_type": "send", - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "status": "valid", - "tx_hash": "a664e79129ea014f2afd994abca856dfb7a93d3e5e5a9ce076c150ddbacd6bd9", + "tx_hash": "1746ca01d596748654719c23fe4b755d61376bd5b029b86715f1de9744c49fb0", "tx_index": 79, - "block_time": 1740489930, + "block_time": 1740753404, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8444,9 +8444,9 @@ Returns the transactions of an address }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a664e79129ea014f2afd994abca856dfb7a93d3e5e5a9ce076c150ddbacd6bd9", + "tx_hash": "1746ca01d596748654719c23fe4b755d61376bd5b029b86715f1de9744c49fb0", "block_index": 203, - "block_time": 1740489930 + "block_time": 1740753404 } ], "unpacked_data": { @@ -8455,23 +8455,23 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", + "destination": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000010" }, { "asset": "XCP", - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -8491,17 +8491,17 @@ Returns the transactions of an address }, { "tx_index": 78, - "tx_hash": "61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d", + "tx_hash": "7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d", "block_index": 202, - "block_hash": "3b59fe5cd5a64b9d6cffea87e2458d32f454bac64d320b5e448a25459d1bf47d", - "block_time": 1740489926, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "block_hash": "4969113da67d29db33376fb6a2a96a7828ccc40826ef8bbadd491a7d34817087", + "block_time": 1740753400, + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "030003806cab8b7c91fbb7207dbe0f34f070bb2211bd066d80978506450cf51f83ec6f5648b40686ccd56ce921809b4723f09a5df31a06280cb9c843df516eecbe6188746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d4ac3fb6a909682da43dbe9b8ff3a98e09a949c180477fccd3c26b0ee407fa80ad7da75746f75e588080fe1d09fb4935bc6a85763686229729c324a9875888746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d:0 4 ", + "utxos_info": " 7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d:0 4 ", "transaction_type": "mpma", "events": [ { @@ -8509,24 +8509,24 @@ Returns the transactions of an address "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "6a8b04722b5121498713e9ca34b3a634f0ef5f0cf3ee9a0753bd79b8c3f0cc10" + "tx_hash": "85ccadf57afa24a41e99d4828fdf2523b15ead1e4325a35a0754e21b540a6a7b" }, - "tx_hash": "61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d", + "tx_hash": "7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d", "block_index": 202, - "block_time": 1740489926 + "block_time": 1740753400 }, { "event_index": 660, "event": "ORDER_EXPIRATION", "params": { "block_index": 202, - "order_hash": "6a8b04722b5121498713e9ca34b3a634f0ef5f0cf3ee9a0753bd79b8c3f0cc10", - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", - "block_time": 1740489926 + "order_hash": "85ccadf57afa24a41e99d4828fdf2523b15ead1e4325a35a0754e21b540a6a7b", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", + "block_time": 1740753400 }, - "tx_hash": "61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d", + "tx_hash": "7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d", "block_index": 202, - "block_time": 1740489926 + "block_time": 1740753400 }, { "event_index": 666, @@ -8534,29 +8534,29 @@ Returns the transactions of an address "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", + "destination": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", "memo": "the memo", "msg_index": 0, "quantity": 10, "send_type": "send", - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "status": "valid", - "tx_hash": "61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d", + "tx_hash": "7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d", "tx_index": 78, - "block_time": 1740489926, + "block_time": 1740753400, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d", + "tx_hash": "7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d", "block_index": 202, - "block_time": 1740489926 + "block_time": 1740753400 }, { "event_index": 667, @@ -8564,29 +8564,29 @@ Returns the transactions of an address "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1qndrj8uy6the35p3gpjuuss7l29hwe0npylexmz", + "destination": "bcrt1qlcwsn76fxk7x4ptkx6rz99efcvj2np6c8j4ugh", "memo": "the memo", "msg_index": 1, "quantity": 10, "send_type": "send", - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "status": "valid", - "tx_hash": "61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d", + "tx_hash": "7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d", "tx_index": 78, - "block_time": 1740489926, + "block_time": 1740753400, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000010" }, - "tx_hash": "61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d", + "tx_hash": "7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d", "block_index": 202, - "block_time": 1740489926 + "block_time": 1740753400 }, { "event_index": 668, @@ -8594,16 +8594,16 @@ Returns the transactions of an address "params": { "asset": "XCP", "block_index": 202, - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "memo": "the memo", "msg_index": 2, "quantity": 10, "send_type": "send", - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "status": "valid", - "tx_hash": "61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d", + "tx_hash": "7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d", "tx_index": 78, - "block_time": 1740489926, + "block_time": 1740753400, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8614,9 +8614,9 @@ Returns the transactions of an address }, "quantity_normalized": "0.00000010" }, - "tx_hash": "61f1aee9ee7e879bd011800762de578a06213aa9fdff95ecb7a03585542bd78d", + "tx_hash": "7dd45d064339a65e357c119cca7fc30b4cc4ec9933abd963b98811acfb69f32d", "block_index": 202, - "block_time": 1740489926 + "block_time": 1740753400 } ], "unpacked_data": { @@ -8625,23 +8625,23 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qj7zsv3gv750c8mr02eytgp5xen2ke6fpak6ztc", + "destination": "bcrt1qgalue57zdv8wgpl6szkhmf6hgmm4ukyq9mnxh4", "quantity": 10, "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00000010" }, { "asset": "XCP", - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "quantity": 10, "memo": "the memo", "memo_is_hex": false, @@ -8661,17 +8661,17 @@ Returns the transactions of an address }, { "tx_index": 77, - "tx_hash": "0022913062f0470672f6b471ff669c43b45ce767fa522bcd64b909f606d59cd0", + "tx_hash": "395d0055fa629e8b903f7a69f5823dbb937bb3444b939d9dfcfad2439b0c3a2a", "block_index": 201, - "block_hash": "690f6bce9c2313f15d4a73c04123437539a88fee9827cee78c01e572e7763647", - "block_time": 1740489923, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "block_hash": "636ece371973ee68fccb0851ab6f2dc310ff4968f0053ff3319d7947fad5c1d1", + "block_time": 1740753397, + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e8806cab8b7c91fbb7207dbe0f34f070bb2211bd066d", + "data": "02000000178d82231300000000000003e880d4ac3fb6a909682da43dbe9b8ff3a98e09a949c1", "supported": true, - "utxos_info": " 0022913062f0470672f6b471ff669c43b45ce767fa522bcd64b909f606d59cd0:1 2 0", + "utxos_info": " 395d0055fa629e8b903f7a69f5823dbb937bb3444b939d9dfcfad2439b0c3a2a:1 2 0", "transaction_type": "enhanced_send", "events": [ { @@ -8680,29 +8680,29 @@ Returns the transactions of an address "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "destination": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "memo": null, "msg_index": 0, "quantity": 1000, "send_type": "send", - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "status": "valid", - "tx_hash": "0022913062f0470672f6b471ff669c43b45ce767fa522bcd64b909f606d59cd0", + "tx_hash": "395d0055fa629e8b903f7a69f5823dbb937bb3444b939d9dfcfad2439b0c3a2a", "tx_index": 77, - "block_time": 1740489923, + "block_time": 1740753397, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00001000" }, - "tx_hash": "0022913062f0470672f6b471ff669c43b45ce767fa522bcd64b909f606d59cd0", + "tx_hash": "395d0055fa629e8b903f7a69f5823dbb937bb3444b939d9dfcfad2439b0c3a2a", "block_index": 201, - "block_time": 1740489923 + "block_time": 1740753397 } ], "unpacked_data": { @@ -8711,15 +8711,15 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", + "address": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", "memo": null, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "quantity_normalized": "0.00001000" } @@ -8728,17 +8728,17 @@ Returns the transactions of an address }, { "tx_index": 76, - "tx_hash": "618fc9de3f53e656d35672aae92d4f5f967b0be380055402be05eb5b4616c680", + "tx_hash": "34475c5fecbf42a5ded06dcf6c6e3f2222879309aec027ea618318c90d9d6ce5", "block_index": 200, - "block_hash": "17676afd13547e0944c4954dbc69de86a418ce46d770f4ca973109bd95851f5d", - "block_time": 1740489919, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "block_hash": "34a865dae4d7891a60d1c5d2c0e306961f523e1bd1e055c2e62f7310968c3660", + "block_time": 1740753393, + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 618fc9de3f53e656d35672aae92d4f5f967b0be380055402be05eb5b4616c680:1 2 0", + "utxos_info": " 34475c5fecbf42a5ded06dcf6c6e3f2222879309aec027ea618318c90d9d6ce5:1 2 0", "transaction_type": "issuance", "events": [ { @@ -8749,11 +8749,11 @@ Returns the transactions of an address "asset_longname": null, "asset_name": "MPMASSET", "block_index": 200, - "block_time": 1740489919 + "block_time": 1740753393 }, - "tx_hash": "618fc9de3f53e656d35672aae92d4f5f967b0be380055402be05eb5b4616c680", + "tx_hash": "34475c5fecbf42a5ded06dcf6c6e3f2222879309aec027ea618318c90d9d6ce5", "block_index": 200, - "block_time": 1740489919 + "block_time": 1740753393 }, { "event_index": 645, @@ -8770,22 +8770,22 @@ Returns the transactions of an address "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "status": "valid", "transfer": false, - "tx_hash": "618fc9de3f53e656d35672aae92d4f5f967b0be380055402be05eb5b4616c680", + "tx_hash": "34475c5fecbf42a5ded06dcf6c6e3f2222879309aec027ea618318c90d9d6ce5", "tx_index": 76, - "block_time": 1740489919, + "block_time": 1740753393, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "618fc9de3f53e656d35672aae92d4f5f967b0be380055402be05eb5b4616c680", + "tx_hash": "34475c5fecbf42a5ded06dcf6c6e3f2222879309aec027ea618318c90d9d6ce5", "block_index": 200, - "block_time": 1740489919 + "block_time": 1740753393 } ], "unpacked_data": { @@ -8811,17 +8811,17 @@ Returns the transactions of an address }, { "tx_index": 68, - "tx_hash": "d41f2c39d9b1d48cc1eb69ad013d77ab81c8298971503c6f6414291a955ae4c2", + "tx_hash": "53a75c1185385ab3c2cfa97f4b630f2cd88aff7c713ab3eab164cef8067bc2ce", "block_index": 193, - "block_hash": "480b1525666278bb5db3d7bbe452404bcbd74393eeadcdb56883ca0ef4322aa6", - "block_time": 1740489887, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "block_hash": "7d059802f40e0eb4c60292778e772494d36859cd13afe3a88252e2bfb82ef99f", + "block_time": 1740753362, + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " d41f2c39d9b1d48cc1eb69ad013d77ab81c8298971503c6f6414291a955ae4c2:1 2 0", + "utxos_info": " 53a75c1185385ab3c2cfa97f4b630f2cd88aff7c713ab3eab164cef8067bc2ce:1 2 0", "transaction_type": "dispenser", "events": [ { @@ -8835,29 +8835,29 @@ Returns the transactions of an address "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "origin": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "satoshirate": 1, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "status": 0, - "tx_hash": "d41f2c39d9b1d48cc1eb69ad013d77ab81c8298971503c6f6414291a955ae4c2", + "tx_hash": "53a75c1185385ab3c2cfa97f4b630f2cd88aff7c713ab3eab164cef8067bc2ce", "tx_index": 68, - "block_time": 1740489887, + "block_time": 1740753362, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "give_quantity_normalized": "0.00000001", "give_remaining_normalized": "0.00010000", "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "d41f2c39d9b1d48cc1eb69ad013d77ab81c8298971503c6f6414291a955ae4c2", + "tx_hash": "53a75c1185385ab3c2cfa97f4b630f2cd88aff7c713ab3eab164cef8067bc2ce", "block_index": 193, - "block_time": 1740489887 + "block_time": 1740753362 } ], "unpacked_data": { @@ -8875,10 +8875,10 @@ Returns the transactions of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "give_quantity_normalized": "0.00000001", "escrow_quantity_normalized": "0.00010000" @@ -8892,14 +8892,14 @@ Returns the transactions of an address } ``` -### Get Transaction Types Count By Address [GET /v2/addresses/{address}/transactions/counts{?count_unconfirmed}{&verbose}] +### Get Transaction Types Count By Address [GET /v2/addresses/{address}/transactions/counts{?count_unconfirmed,verbose}] Returns the count of each transaction type + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The address to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The address to return + count_unconfirmed (bool, optional) - Count unconfirmed transactions - + Default: `False` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8958,18 +8958,18 @@ Returns the count of each transaction type } ``` -### Get Dividends Distributed By Address [GET /v2/addresses/{address}/dividends{?cursor}{&limit}{&offset}{&verbose}] +### Get Dividends Distributed By Address [GET /v2/addresses/{address}/dividends{?cursor,limit,offset,verbose}] Returns the dividends distributed by an address + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The address to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The address to return + cursor (str, optional) - The last index of the assets to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of assets to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -8980,22 +8980,22 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "6404a2478fe98ef828070b2da13ef824ea7cebae41e377cfdee911728b8c926a", + "tx_hash": "a816b85352c7030e2d21125a6684830b03e16eea3e72f9987245c7f2b90eb2ab", "block_index": 146, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", - "block_time": 1740489729, + "block_time": 1740753202, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "dividend_asset_info": { "asset_longname": null, @@ -9014,12 +9014,12 @@ Returns the dividends distributed by an address } ``` -### Get Orders By Address [GET /v2/addresses/{address}/orders{?status}{&cursor}{&limit}{&offset}{&sort}{&verbose}] +### Get Orders By Address [GET /v2/addresses/{address}/orders{?status,cursor,limit,offset,sort,verbose}] Returns the orders of an address + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The address to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -9029,13 +9029,13 @@ Returns the orders of an address + `filled` + `cancelled` + cursor (str, optional) - The last index of the orders to return - + Default: `None` + + Default: `null` + limit: `5` (int, optional) - The maximum number of orders to return + Default: `100` + offset (int, optional) - The number of lines to skip before returning results (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + sort: `expiration:desc` (str, optional) - The sort order of the orders to return (overrides the `cursor` parameter) - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -9046,9 +9046,9 @@ Returns the orders of an address "result": [ { "tx_index": 53, - "tx_hash": "2064dd5294807ea46ffdb9f82780a89424b75ec45715ea0fbc6f440b31133b66", + "tx_hash": "243544e47a9a1486290e699d01fe4f596550baf6051ccbbd870755b026b8bc90", "block_index": 179, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9064,7 +9064,7 @@ Returns the orders of an address "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1740489778, + "block_time": 1740753254, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9093,9 +9093,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "6a8b04722b5121498713e9ca34b3a634f0ef5f0cf3ee9a0753bd79b8c3f0cc10", + "tx_hash": "85ccadf57afa24a41e99d4828fdf2523b15ead1e4325a35a0754e21b540a6a7b", "block_index": 202, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9111,7 +9111,7 @@ Returns the orders of an address "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1740489926, + "block_time": 1740753400, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9140,9 +9140,9 @@ Returns the orders of an address }, { "tx_index": 62, - "tx_hash": "6514dc909d289a00f85ba5b8db7b7198c6fafe5ed2e140773835a3fe73615f94", + "tx_hash": "4ea533fa77d8457a9bb9ee4b72f9c139d91cb88dd2e85163ca9decee2d8b4ef3", "block_index": 188, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9158,7 +9158,7 @@ Returns the orders of an address "status": "cancelled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1740489870, + "block_time": 1740753344, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9187,9 +9187,9 @@ Returns the orders of an address }, { "tx_index": 64, - "tx_hash": "9198a9256ee36ffaa1c68b2098d9920bf461858924c70baa1e2e616814a81c54", + "tx_hash": "2eb60efb2a97a30c075217d0b87f6d98107655bc29264bf51bc4a537262001ea", "block_index": 211, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -9205,7 +9205,7 @@ Returns the orders of an address "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1740489959, + "block_time": 1740753432, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9238,12 +9238,12 @@ Returns the orders of an address } ``` -### Get Fairminters By Address [GET /v2/addresses/{address}/fairminters{?status}{&cursor}{&limit}{&offset}{&verbose}] +### Get Fairminters By Address [GET /v2/addresses/{address}/fairminters{?status,cursor,limit,offset,verbose}] Returns the fairminter by its source + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The source of the fairminter to return + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -9252,11 +9252,11 @@ Returns the fairminter by its source + `closed` + `pending` + cursor (str, optional) - - + Default: `None` + + Default: `null` + limit (int, optional) - + Default: `100` + offset (int, optional) - - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -9266,10 +9266,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "90cd0970da6991e63976a4bf990b252867c94d4946fa288e4fac6a8c821fcf89", + "tx_hash": "bb95119a566b7fe7751e117f0aea415d3b9c9b1a2974f7eca980551d6247ac08", "tx_index": 44, "block_index": 150, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "FREEFAIRMINT", "asset_parent": null, "asset_longname": null, @@ -9293,7 +9293,7 @@ Returns the fairminter by its source "earned_quantity": 180, "paid_quantity": 0, "commission": 0, - "block_time": 1740489742, + "block_time": 1740753216, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", @@ -9305,10 +9305,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "6737a830bd7ba3066606e467c06fb7b523c778f62051eea8529cd5fe8d40bc85", + "tx_hash": "b06d9ad4036711f0cd37c1bd3b83d4b8b53747b631d5a6da02dfc52925d4d558", "tx_index": 43, "block_index": 147, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9332,7 +9332,7 @@ Returns the fairminter by its source "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1740489732, + "block_time": 1740753205, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9341,10 +9341,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "7b9120ec72424987eb972f58ca1b8e8cd4bf8b7e06f9ff065e91ecf96fcdfa40", + "tx_hash": "22053f4657e02830c9fe31d1eb9ed84606394231b69a19fb82441eeef7662a6f", "tx_index": 22, "block_index": 126, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "FAIRMINTD", "asset_parent": null, "asset_longname": null, @@ -9368,7 +9368,7 @@ Returns the fairminter by its source "earned_quantity": 40, "paid_quantity": 34, "commission": 0, - "block_time": 1740489654, + "block_time": 1740753127, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9380,10 +9380,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "06628f5fac1af4e971bb7b2d2e0ede1cce4482ff9950b228d1603f184cc9588e", + "tx_hash": "74f8960c09ce4b06cd0739a1ddca2caa958accc721fdc4789c42843bf56d0cdf", "tx_index": 18, "block_index": 122, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "FAIRMINTC", "asset_parent": null, "asset_longname": null, @@ -9407,7 +9407,7 @@ Returns the fairminter by its source "earned_quantity": 19, "paid_quantity": 5, "commission": 0, - "block_time": 1740489640, + "block_time": 1740753112, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9419,10 +9419,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "54da50dc04fe18ff5822c81f0f4dbf0a908912f00e788a5a9cbe2a6c0900fca9", + "tx_hash": "c2b21aeaf62317f68ca2b177c6da8283fc5d5907cbf5a268f7a909ff8e60f07b", "tx_index": 14, "block_index": 121, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "FAIRMINTB", "asset_parent": null, "asset_longname": null, @@ -9446,7 +9446,7 @@ Returns the fairminter by its source "earned_quantity": 300000000, "paid_quantity": 300000000, "commission": 0, - "block_time": 1740489636, + "block_time": 1740753109, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9458,10 +9458,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "493f5c42a0285343de36fa4adf7fa48cd2c61b083addaf4e9a1d2e609c781fcc", + "tx_hash": "87e32fd8eebfcab82a5388723dd5d92f7d693becd78e93e7ccd0825fa739390f", "tx_index": 10, "block_index": 116, - "source": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "source": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "asset": "FAIRMINTA", "asset_parent": null, "asset_longname": null, @@ -9485,7 +9485,7 @@ Returns the fairminter by its source "earned_quantity": 10000000000, "paid_quantity": 10000000000, "commission": 0, - "block_time": 1740489618, + "block_time": 1740753090, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9502,18 +9502,18 @@ Returns the fairminter by its source } ``` -### Get Fairmints By Address [GET /v2/addresses/{address}/fairmints{?cursor}{&limit}{&offset}{&verbose}] +### Get Fairmints By Address [GET /v2/addresses/{address}/fairmints{?cursor,limit,offset,verbose}] Returns the mints by address + Parameters - + address: `bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6` (str, required) - The address of the mints to return + + address: `bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd` (str, required) - The address of the mints to return + cursor (str, optional) - - + Default: `None` + + Default: `null` + limit (int, optional) - + Default: `100` + offset (int, optional) - - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -9523,192 +9523,192 @@ Returns the mints by address { "result": [ { - "tx_hash": "860c65fa9ca38d56cd7c7632b7e272c419871035b7bf9b39c4ea113091c138d6", + "tx_hash": "d7372a0e53b838115d9b39c301d00304cabe1d4172fcca38743d0ca97b7b2ab3", "tx_index": 46, "block_index": 150, - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", - "fairminter_tx_hash": "90cd0970da6991e63976a4bf990b252867c94d4946fa288e4fac6a8c821fcf89", + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", + "fairminter_tx_hash": "bb95119a566b7fe7751e117f0aea415d3b9c9b1a2974f7eca980551d6247ac08", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1740489742, + "block_time": 1740753216, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "earn_quantity_normalized": "0.00000080", "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "d9a9c7f0a9d0e9f477ff1ffe84146ff9dedfdc96d138876393b5b589dec038ef", + "tx_hash": "8efa6e2e77e4e2f42dc9683d924e5fb80d994910af1192584093db3508ff4de1", "tx_index": 45, "block_index": 149, - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", - "fairminter_tx_hash": "90cd0970da6991e63976a4bf990b252867c94d4946fa288e4fac6a8c821fcf89", + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", + "fairminter_tx_hash": "bb95119a566b7fe7751e117f0aea415d3b9c9b1a2974f7eca980551d6247ac08", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1740489739, + "block_time": 1740753211, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "earn_quantity_normalized": "0.00000100", "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "f61d66eca5b1223859c208ebcd171d389c03171891d762373222b0b795d24dbc", + "tx_hash": "2dafe2bcb7eab093b9903be99f5e910e787ea9f29268696af2e549312adf0ea5", "tx_index": 23, "block_index": 127, - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", - "fairminter_tx_hash": "7b9120ec72424987eb972f58ca1b8e8cd4bf8b7e06f9ff065e91ecf96fcdfa40", + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", + "fairminter_tx_hash": "22053f4657e02830c9fe31d1eb9ed84606394231b69a19fb82441eeef7662a6f", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", - "block_time": 1740489657, + "block_time": 1740753130, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "earn_quantity_normalized": "0.00000040", "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "a62d1d25542fee85167f8f34dea8f2a9b0ab1188bfe27505cbfca0e6461e23f9", + "tx_hash": "eff2108957b682951d741af752775375f0ade22b6579926c1186657fc4ec2f29", "tx_index": 21, "block_index": 125, - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", - "fairminter_tx_hash": "06628f5fac1af4e971bb7b2d2e0ede1cce4482ff9950b228d1603f184cc9588e", + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", + "fairminter_tx_hash": "74f8960c09ce4b06cd0739a1ddca2caa958accc721fdc4789c42843bf56d0cdf", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", - "block_time": 1740489651, + "block_time": 1740753123, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "earn_quantity_normalized": "0.00000011", "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "d6689ebfed411196bb091bda6893c988336dcf45a4d2935ce560ed48b7f14166", + "tx_hash": "2b88477b1e65e4022b90e11f37ec1ecac89d96d7ca30b96dc6ef0405bfa9b84a", "tx_index": 20, "block_index": 124, - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", - "fairminter_tx_hash": "06628f5fac1af4e971bb7b2d2e0ede1cce4482ff9950b228d1603f184cc9588e", + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", + "fairminter_tx_hash": "74f8960c09ce4b06cd0739a1ddca2caa958accc721fdc4789c42843bf56d0cdf", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", - "block_time": 1740489647, + "block_time": 1740753120, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "earn_quantity_normalized": "0.00000003", "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "d037907f6e8d581d7f28044a24bdddb343b69a274713f2fc05904a1a2c603d5a", + "tx_hash": "c74d30b1e8065ba5f9c28c8b10f812987f2a88846d76ceb17c29f3a4ff2d8726", "tx_index": 19, "block_index": 123, - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", - "fairminter_tx_hash": "06628f5fac1af4e971bb7b2d2e0ede1cce4482ff9950b228d1603f184cc9588e", + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", + "fairminter_tx_hash": "74f8960c09ce4b06cd0739a1ddca2caa958accc721fdc4789c42843bf56d0cdf", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", - "block_time": 1740489643, + "block_time": 1740753115, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "earn_quantity_normalized": "0.00000005", "commission_normalized": "0.00000000", "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "ef6477790738b8d6d27bad3c8403618068e4184b59a85e0e19ffa0f729ecfbc4", + "tx_hash": "c28374e1c54a316e95c82e38aacb730e5ff21b9bc83a0830509d9b40770f5c06", "tx_index": 15, "block_index": 118, - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", - "fairminter_tx_hash": "54da50dc04fe18ff5822c81f0f4dbf0a908912f00e788a5a9cbe2a6c0900fca9", + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", + "fairminter_tx_hash": "c2b21aeaf62317f68ca2b177c6da8283fc5d5907cbf5a268f7a909ff8e60f07b", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", - "block_time": 1740489625, + "block_time": 1740753097, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "earn_quantity_normalized": "1.00000000", "commission_normalized": "0.00000000", "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "aa92fb90bc5b74cedc4cd5d4526e9208f13aed243ceec99f4560a4d7b0213de2", + "tx_hash": "a6bfc2f8d0bb0f520d4ba23d27b8f52c6b8cb35fc8e5ec4cff189eeff5430d89", "tx_index": 11, "block_index": 114, - "source": "bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6", - "fairminter_tx_hash": "493f5c42a0285343de36fa4adf7fa48cd2c61b083addaf4e9a1d2e609c781fcc", + "source": "bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd", + "fairminter_tx_hash": "87e32fd8eebfcab82a5388723dd5d92f7d693becd78e93e7ccd0825fa739390f", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", - "block_time": 1740489612, + "block_time": 1740753083, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n", + "issuer": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw", "divisible": true, "locked": false, - "owner": "bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n" + "owner": "bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw" }, "earn_quantity_normalized": "5.00000000", "commission_normalized": "0.00000000", @@ -9720,19 +9720,19 @@ Returns the mints by address } ``` -### Get Fairmints By Address And Asset [GET /v2/addresses/{address}/fairmints/{asset}{?cursor}{&limit}{&offset}{&verbose}] +### Get Fairmints By Address And Asset [GET /v2/addresses/{address}/fairmints/{asset}{?cursor,limit,offset,verbose}] Returns the mints by address and asset + Parameters - + address: `bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6` (str, required) - The address of the mints to return + + address: `bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd` (str, required) - The address of the mints to return + asset: `BURNER` (str, required) - The asset of the mints to return + cursor (str, optional) - - + Default: `None` + + Default: `null` + limit (int, optional) - + Default: `100` + offset (int, optional) - - + Default: `None` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -9748,18 +9748,18 @@ Returns the mints by address and asset ## Group Utxos -### Get Utxo Balances [GET /v2/utxos/{utxo}/balances{?cursor}{&limit}{&offset}{&verbose}] +### Get Utxo Balances [GET /v2/utxos/{utxo}/balances{?cursor,limit,offset,verbose}] Returns the balances of an utxo + Parameters - + utxo: `ecaff771fec807f55a71fea24818445ff090e7cc16d90b90c478a2b97511edcc:0` (str, required) - The utxo to return + + utxo: `e087c96e927a40329d24026bf8815e3c9e5d3b6ab3af4c7a842de38b71b3d78b:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return - + Default: `None` + + Default: `null` + 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` + + Default: `null` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -9772,15 +9772,15 @@ Returns the balances of an utxo "asset": "UTXOASSET", "asset_longname": null, "quantity": 1000000000, - "utxo": "ecaff771fec807f55a71fea24818445ff090e7cc16d90b90c478a2b97511edcc:0", - "utxo_address": "bcrt1qs8qhqqz7us7w5kt08wqmxmqsl8h6jknlejhyru", + "utxo": "e087c96e927a40329d24026bf8815e3c9e5d3b6ab3af4c7a842de38b71b3d78b:0", + "utxo_address": "bcrt1qs4cea2gsc008ph5jngs447jnr4ls5ky0tsu92h", "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qs8qhqqz7us7w5kt08wqmxmqsl8h6jknlejhyru", + "issuer": "bcrt1qs4cea2gsc008ph5jngs447jnr4ls5ky0tsu92h", "divisible": true, "locked": false, - "owner": "bcrt1qs8qhqqz7us7w5kt08wqmxmqsl8h6jknlejhyru" + "owner": "bcrt1qs4cea2gsc008ph5jngs447jnr4ls5ky0tsu92h" }, "quantity_normalized": "10.00000000" } @@ -9790,7 +9790,7 @@ Returns the balances of an utxo } ``` -### Utxos With Balances [GET /v2/utxos/withbalances{?utxos}{&verbose}] +### Utxos With Balances [GET /v2/utxos/withbalances{?utxos,verbose}] Check if the utxos have balances @@ -9842,13 +9842,13 @@ The following parameters are deprecated in the new composer and will no longer b - `p2sh_pretx_txid`: Ignored, P2SH disabled - `segwit`: Ignored, Segwit automatically detected -### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address}{&bet_type}{&deadline}{&wager_quantity}{&counterwager_quantity}{&expiration}{&leverage}{&target_value}{&encoding}{&validate}{&sat_per_vbyte}{&confirmation_target}{&exact_fee}{&max_fee}{&inputs_set}{&allow_unconfirmed_inputs}{&exclude_utxos}{&use_utxos_with_balances}{&exclude_utxos_with_balances}{&disable_utxo_locks}{&use_all_inputs_set}{&mutlisig_pubkey}{&change_address}{&more_outputs}{&pubkeys}{&verbose}{&return_only_data}{&fee_per_kb}{&fee_provided}{&unspent_tx_hash}{&dust_return_pubkey}{&return_psbt}{®ular_dust_size}{&multisig_dust_size}{&extended_tx_info}{&old_style_api}{&p2sh_pretx_txid}{&segwit}{&verbose}] +### Compose Bet [GET /v2/addresses/{address}/compose/bet{?feed_address,bet_type,deadline,wager_quantity,counterwager_quantity,expiration,leverage,target_value,encoding,validate,sat_per_vbyte,confirmation_target,exact_fee,max_fee,inputs_set,allow_unconfirmed_inputs,exclude_utxos,use_utxos_with_balances,exclude_utxos_with_balances,disable_utxo_locks,use_all_inputs_set,mutlisig_pubkey,change_address,more_outputs,pubkeys,verbose,return_only_data,fee_per_kb,fee_provided,unspent_tx_hash,dust_return_pubkey,return_psbt,regular_dust_size,multisig_dust_size,extended_tx_info,old_style_api,p2sh_pretx_txid,segwit,verbose}] Composes a transaction to issue a bet against a feed. + Parameters - + address: `bcrt1q9ya6f4flznjaqud9999zzcnfc324r8c3cqml2n` (str, required) - The address that will make the bet - + feed_address: `bcrt1qdj4ckly3lwmjqld7pu60qu9myggm6pnd58ntz6` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q0jf79fwchsd3ej6m6gd7z9xsz7w9s96q0dempw` (str, required) - The address that will make the bet + + feed_address: `bcrt1q6jkrld4fp95zmfpah6dcluaf3cy6jjwp3kdytd` (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) @@ -9857,45 +9857,45 @@ Composes a transaction to issue a bet against a feed. + leverage (int, optional) - Leverage, as a fraction of 5040 + Default: `5040` + target_value: `1000` (int, optional) - Target value for Equal/NotEqual bet - + Default: `None` + + Default: `null` + encoding (str, optional) - The encoding method to use + Default: `auto` + validate (bool, optional) - Validate the transaction + Default: `True` + sat_per_vbyte (float, optional) - The fee per vbyte in satoshis - + Default: `None` + + Default: `null` + confirmation_target (int, optional) - The number of blocks to target for confirmation + Default: `3` + exact_fee: `0` (int, optional) - The exact fee to use in satoshis - + Default: `None` + + Default: `null` + max_fee (int, optional) - The maximum fee to use in satoshis - + Default: `None` + + Default: `null` + inputs_set (str, optional) - A comma-separated list of UTXOs (`:`) to use as inputs for the transaction being created. To speed up the composition you can also use the following format for utxos: `:::`. - + Default: `None` + + Default: `null` + allow_unconfirmed_inputs (bool, optional) - Set to true to allow this transaction to utilize unconfirmed UTXOs as inputs - + Default: `False` + + Default: `null` + exclude_utxos (str, optional) - A comma-separated list of UTXO txids to exclude when selecting UTXOs to use as inputs for the transaction being created - + Default: `None` + + Default: `null` + use_utxos_with_balances (bool, optional) - Use UTXO with balances - + Default: `False` + + Default: `null` + exclude_utxos_with_balances (bool, optional) - Exclude silently UTXO with balances instead of raising an exception. Important: the `exclude_utxos_with_balances` will not exclude unconfirmed `attach` and `utxomove`. You need to explicitly exclude them with the `exclude_utxos` parameter - + Default: `False` + + Default: `null` + disable_utxo_locks (bool, optional) - By default, UTXOs utilized when creating a transaction are 'locked' for a few seconds, to prevent a case where rapidly generating create_ calls reuse UTXOs due to their spent status not being updated in bitcoind yet. Specify true for this parameter to disable this behavior, and not temporarily lock UTXOs - + Default: `False` + + Default: `null` + use_all_inputs_set (bool, optional) - Use all UTXOs provide with `inputs_set` parameter - + Default: `False` + + Default: `null` + mutlisig_pubkey (str, optional) - The reedem public key to use for multisig encoding, by default it is searched for the source address - + Default: `None` + + Default: `null` + change_address (str, optional) - The address to send the change to - + Default: `None` + + Default: `null` + more_outputs (str, optional) - Additional outputs to include in the transaction in the format `:
` or `: