From e14093221b2086d36bb43a6cd7ef4bae6be89511 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 7 Dec 2024 18:23:49 +0000 Subject: [PATCH 1/5] Fix ParentProcessChecker Thread --- .../counterpartycore/lib/api/api_server.py | 27 ++++++------------- counterparty-core/counterpartycore/server.py | 7 ++++- 2 files changed, 14 insertions(+), 20 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index 3f96684f67..3af43b9591 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -513,7 +513,7 @@ def handle_interrupt_signal(signum, frame): wsgi_server = wsgi.WSGIApplication(app, args=args) logger.info("Starting Parent Process Checker thread...") - parent_checker = ParentProcessChecker(wsgi_server) + parent_checker = ParentProcessChecker(wsgi_server, stop_event) parent_checker.start() app.app_context().push() @@ -539,11 +539,6 @@ def handle_interrupt_signal(signum, frame): watcher.stop() watcher.join() - if parent_checker is not None: - logger.trace("Stopping Parent Process Checker thread...") - parent_checker.stop() - parent_checker.join() - logger.info("API Server stopped.") @@ -551,34 +546,28 @@ def handle_interrupt_signal(signum, frame): # 1. `docker-compose stop` does not send a SIGTERM to the child processes (in this case the API v2 process) # 2. `process.terminate()` does not trigger a `KeyboardInterrupt` or execute the `finally` block. class ParentProcessChecker(threading.Thread): - def __init__(self, wsgi_server): + def __init__(self, wsgi_server, stop_event): super().__init__(name="ParentProcessChecker") self.daemon = True self.wsgi_server = wsgi_server - self.stop_event = threading.Event() + self.stop_event = stop_event def run(self): - parent_pid = os.getppid() try: while not self.stop_event.is_set(): - if os.getppid() != parent_pid: - logger.debug("Parent process is dead. Exiting...") - if self.wsgi_server is not None: - self.wsgi_server.stop() - break time.sleep(1) + logger.debug("Parent process stopped. Exiting...") + if self.wsgi_server is not None: + self.wsgi_server.stop() except KeyboardInterrupt: pass - def stop(self): - self.stop_event.set() - class APIServer(object): - def __init__(self): + def __init__(self, stop_event): self.process = None self.server_ready_value = Value("I", 0) - self.stop_event = multiprocessing.Event() + self.stop_event = stop_event def start(self, args): if self.process is not None: diff --git a/counterparty-core/counterpartycore/server.py b/counterparty-core/counterpartycore/server.py index 70b0fde4ef..7b0c51d8a7 100755 --- a/counterparty-core/counterpartycore/server.py +++ b/counterparty-core/counterpartycore/server.py @@ -4,6 +4,7 @@ import binascii import decimal import logging +import multiprocessing import os import sys import tarfile @@ -739,6 +740,7 @@ def start_all(args): follower_daemon = None asset_conservation_checker = None db = None + api_stop_event = None # Log all config parameters, sorted by key # Filter out default values #TODO: these should be set in a different way @@ -766,7 +768,8 @@ def start_all(args): check.software_version() # API Server v2 - api_server_v2 = api_v2.APIServer() + api_stop_event = multiprocessing.Event() + api_server_v2 = api_v2.APIServer(api_stop_event) api_server_v2.start(args) while not api_server_v2.is_ready() and not api_server_v2.has_stopped(): logger.trace("Waiting for API server to start...") @@ -812,6 +815,8 @@ def start_all(args): logger.error("Exception caught!", exc_info=e) finally: # Ensure all threads are stopped + if api_stop_event: + api_stop_event.set() if api_status_poller: api_status_poller.stop() if api_server_v1: From 928d2a5d78dae0da89688cb6a2909cf3f530c075 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 7 Dec 2024 18:26:55 +0000 Subject: [PATCH 2/5] update release notes --- release-notes/release-notes-v10.7.4.md | 1 + 1 file changed, 1 insertion(+) diff --git a/release-notes/release-notes-v10.7.4.md b/release-notes/release-notes-v10.7.4.md index 89ec104db3..08a37617c2 100644 --- a/release-notes/release-notes-v10.7.4.md +++ b/release-notes/release-notes-v10.7.4.md @@ -37,6 +37,7 @@ - Add `transaction_type` field in `transactions` table - Clean `block.parse_tx()`; One `TRANSACTION_PARSED` event for each `NEW_TRANSACTION` event - API Watcher checks reorg if no event to parse and not on each block +- Use `multiprocessing.Event` to stop API process when the Ledger process dies ## API From 670cfef00c5a04755be5fdc67401e74010563420 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sat, 7 Dec 2024 20:29:39 +0000 Subject: [PATCH 3/5] fix pytest --- apiary.apib | 4630 +++++++++-------- .../counterpartycore/test/conftest.py | 2 +- .../test/regtest/apidoc/apicache.json | 3960 +++++++------- .../test/regtest/testscenarios.py | 2 +- 4 files changed, 4304 insertions(+), 4290 deletions(-) diff --git a/apiary.apib b/apiary.apib index 1c47f03151..b4b4878e57 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-12-05 12:21:30.351009. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-12-08 13:02:46.546232. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -188,15 +188,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 917, "event": "NEW_BLOCK", "params": { - "block_hash": "1b6e574b3a3a5a8dc29b883784e65eda6680b34677fe0e204e3519bf4359e271", + "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", "block_index": 234, - "block_time": 1733401275, + "block_time": 1733662951, "difficulty": 545259519, - "previous_block_hash": "15431c922cae64717d58d447ed571247e24e5985e72d45551580b1b3ab30c856" + "previous_block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482" }, "tx_hash": null, "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 } ], "next_cursor": 915, @@ -213,23 +213,23 @@ Here is a list of events classified by theme and for each an example response: "event_index": 918, "event": "NEW_TRANSACTION", "params": { - "block_hash": "1b6e574b3a3a5a8dc29b883784e65eda6680b34677fe0e204e3519bf4359e271", + "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", "block_index": 234, - "block_time": 1733401275, + "block_time": 1733662951, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "fee": 0, - "source": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "transaction_type": "dispense", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "utxos_info": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1 cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0 3 1", + "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 } ], "next_cursor": 908, @@ -248,16 +248,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "out_index": 0, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 } ], "next_cursor": 592, @@ -275,15 +275,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 234, - "ledger_hash": "f17fb2b3438d2b64353b2d5e33fd35a78fc1ca73aebc1eb2974e32ea02405c83", - "messages_hash": "9045de288511ef00fbdd7f520dd0a1f54fb5fa5ab1f370178051aaa96974632c", + "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", + "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", "transaction_count": 1, - "txlist_hash": "c64de2c9e70d3c3c1dccaaf31fae1415012b6b712007e3d42fb82017798c10d1", - "block_time": 1733401275 + "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", + "block_time": 1733662951 }, "tx_hash": null, "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 } ], "next_cursor": 916, @@ -301,12 +301,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106 }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 } ], "next_cursor": 913, @@ -329,12 +329,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 234, - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 2000000000, "tx_index": 106, - "utxo": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", - "utxo_address": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", - "block_time": 1733401275, + "utxo": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "utxo_address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -344,9 +344,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 } ], "next_cursor": 920, @@ -363,16 +363,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -382,9 +382,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 } ], "next_cursor": 924, @@ -403,26 +403,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "memo": null, "quantity": 1000, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "e1ea6b36f27ff0c4cbc1476616175fd2680d975154cec056e43493e9d497d19b", + "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", "tx_index": 77, - "block_time": 1733401117, + "block_time": 1733662764, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "e1ea6b36f27ff0c4cbc1476616175fd2680d975154cec056e43493e9d497d19b", + "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", "block_index": 201, - "block_time": 1733401117 + "block_time": 1733662764 } ], "next_cursor": 528, @@ -441,15 +441,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "tx_index": 81, - "block_time": 1733401143, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -459,9 +459,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_time": 1733401143 + "block_time": 1733662789 } ], "next_cursor": 712, @@ -499,20 +499,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 190, - "destination": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "status": "valid", - "tx_hash": "3a29fd55a51576c56bec724d5093c46034cbdc50def21513e45f8e1e23b403c4", + "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", "tx_index": 65, - "block_time": 1733401078, + "block_time": 1733662722, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "3a29fd55a51576c56bec724d5093c46034cbdc50def21513e45f8e1e23b403c4", + "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", "block_index": 190, - "block_time": 1733401078 + "block_time": 1733662722 } ], "next_cursor": null, @@ -534,15 +534,15 @@ 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": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "4fd2ee5b0188ba05abe0c9e6636f27435c033150503912be11b900852d02c5be", + "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", "tx_index": 42, - "block_time": 1733400897, + "block_time": 1733662534, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -556,9 +556,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": "4fd2ee5b0188ba05abe0c9e6636f27435c033150503912be11b900852d02c5be", + "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", "block_index": 146, - "block_time": 1733400897 + "block_time": 1733662534 } ], "next_cursor": null, @@ -591,11 +591,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "OPENFAIR", "block_index": 232, - "block_time": 1733401264 + "block_time": 1733662942 }, - "tx_hash": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "block_index": 232, - "block_time": 1733401264 + "block_time": 1733662942 } ], "next_cursor": 875, @@ -623,22 +623,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": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": "valid", "transfer": false, - "tx_hash": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "tx_index": 105, - "block_time": 1733401264, + "block_time": 1733662942, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "block_index": 232, - "block_time": 1733401264 + "block_time": 1733662942 } ], "next_cursor": 890, @@ -658,16 +658,16 @@ Here is a list of events classified by theme and for each an example response: "asset": "PREMINT", "block_index": 228, "quantity": 50, - "source": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "status": "valid", "tag": "soft cap not reached", - "tx_hash": "ba087473e6ca940b71b51c1ffee99388b126be78b3a3444d9dedaecbe8db1fee", + "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", "tx_index": 101, - "block_time": 1733401251, + "block_time": 1733662918, "asset_info": { "asset_longname": null, "description": "My super description", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": false }, @@ -675,7 +675,7 @@ Here is a list of events classified by theme and for each an example response: }, "tx_hash": null, "block_index": 228, - "block_time": 1733401251 + "block_time": 1733662918 } ], "next_cursor": 832, @@ -707,11 +707,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": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": "open", - "tx_hash": "136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "tx_index": 104, - "block_time": 1733401261, + "block_time": 1733662928, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -722,7 +722,7 @@ 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": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "divisible": true, "locked": false }, @@ -735,9 +735,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": "136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "block_index": 231, - "block_time": 1733401261 + "block_time": 1733662928 } ], "next_cursor": 896, @@ -760,24 +760,24 @@ 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": "1e58a9ad4a24f44528e83d1606263c6c658c0d6c24a177675ca62f32dabc03a4_136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "id": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076_97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "match_expire_index": 251, "status": "pending", - "tx0_address": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "tx0_address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "tx0_block_index": 230, "tx0_expiration": 21, - "tx0_hash": "1e58a9ad4a24f44528e83d1606263c6c658c0d6c24a177675ca62f32dabc03a4", + "tx0_hash": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076", "tx0_index": 103, - "tx1_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "tx1_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "tx1_block_index": 231, "tx1_expiration": 21, - "tx1_hash": "136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "tx1_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "tx1_index": 104, - "block_time": 1733401261, + "block_time": 1733662928, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "divisible": true, "locked": false }, @@ -792,9 +792,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": "136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "block_index": 231, - "block_time": 1733401261 + "block_time": 1733662928 } ], "next_cursor": 691, @@ -816,13 +816,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": "136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "block_index": 231, - "block_time": 1733401261 + "block_time": 1733662928 } ], "next_cursor": 902, @@ -840,11 +840,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "b33c542f4bc1e28ca9ea34338d61d49f817d1d1c4fa42aa9c616e623d541eff5" + "tx_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15" }, - "tx_hash": "d1c93cd2a14bbd176e6249e51bde971b91bb1579f5af86a1448ccce622b8f022", + "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", "block_index": 182, - "block_time": 1733401028 + "block_time": 1733662675 } ], "next_cursor": null, @@ -861,13 +861,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": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa_cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", - "order_match_id": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa_cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", + "id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "order_match_id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "status": "expired" }, - "tx_hash": "547fe13c4bc5cf5733ab7137993f4202782ffaeae1cd6a2278fa8f19f81ce038", + "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", "block_index": 225, - "block_time": 1733401241 + "block_time": 1733662907 } ], "next_cursor": 685, @@ -886,18 +886,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 182, "btc_amount": 2000, - "destination": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "order_match_id": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7_b33c542f4bc1e28ca9ea34338d61d49f817d1d1c4fa42aa9c616e623d541eff5", - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "d1c93cd2a14bbd176e6249e51bde971b91bb1579f5af86a1448ccce622b8f022", + "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", "tx_index": 57, - "block_time": 1733401028, + "block_time": 1733662675, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "d1c93cd2a14bbd176e6249e51bde971b91bb1579f5af86a1448ccce622b8f022", + "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", "block_index": 182, - "block_time": 1733401028 + "block_time": 1733662675 } ], "next_cursor": null, @@ -915,16 +915,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": "ce89aa7599a93e412c2d5dad24c811373df8567a03584a10021d65c6e4267db3", - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "offer_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "3c9ccc05dbd365a88a95d324a11ad0d3975066ca6f28865059d18a48dd6354a0", + "tx_hash": "de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6", "tx_index": 63, - "block_time": 1733401070 + "block_time": 1733662715 }, - "tx_hash": "3c9ccc05dbd365a88a95d324a11ad0d3975066ca6f28865059d18a48dd6354a0", + "tx_hash": "de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6", "block_index": 188, - "block_time": 1733401070 + "block_time": 1733662715 } ], "next_cursor": null, @@ -942,13 +942,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": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa", - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "block_time": 1733401172 + "order_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_time": 1733662819 }, - "tx_hash": "a8f7b83cb0c0757ec8df98c6bbf6e36d6c9a88b8e10b270ff5da1d0bf753a844", + "tx_hash": "816df0c34171151d8c1947707f1c924dc6988f829038e9f0709bb2b7ab206acc", "block_index": 211, - "block_time": 1733401172 + "block_time": 1733662819 } ], "next_cursor": 705, @@ -966,14 +966,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": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa_cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", - "tx0_address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "tx1_address": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", - "block_time": 1733401241 + "order_match_id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "block_time": 1733662907 }, - "tx_hash": "547fe13c4bc5cf5733ab7137993f4202782ffaeae1cd6a2278fa8f19f81ce038", + "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", "block_index": 225, - "block_time": 1733401241 + "block_time": 1733662907 } ], "next_cursor": 688, @@ -999,17 +999,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "satoshirate": 1, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": 0, - "tx_hash": "5aa06a098c32a7d962a3a553b727c958643c7defc82229855dfd7af2d1c33e3e", + "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "tx_index": 68, - "block_time": 1733401088, + "block_time": 1733662733, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -1018,9 +1018,9 @@ Here is a list of events classified by theme and for each an example response: "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "5aa06a098c32a7d962a3a553b727c958643c7defc82229855dfd7af2d1c33e3e", + "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "block_index": 193, - "block_time": 1733401088 + "block_time": 1733662733 } ], "next_cursor": 264, @@ -1040,9 +1040,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": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": 0, - "tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1052,9 +1052,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 } ], "next_cursor": 594, @@ -1073,13 +1073,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 135, - "destination": "n3NzPVpuzhHD7xBtZUoDi9GGp1UvdJAMbJ", + "destination": "mwGrVHb495rLnPnW2W9yvMfsayfdGhBD7M", "dispense_quantity": 10, - "dispenser_tx_hash": "088c98df0c174dcc930758d4df81454d44e337a503533d1e8aa6b2565e796208", - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "tx_hash": "47c960db59f5a03be6d5f5db3c62648711fd287dca0fa7b6c18f49ebd965ad34", + "dispenser_tx_hash": "ea1a192405fa4439cd194c2dd622e088addef725cb25debbd12b34766f2140a7", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx_hash": "afb9a582e852714df40622021ba105bd464db5e07f74867a31b84ad7c34ce16f", "tx_index": 31, - "block_time": 1733400847, + "block_time": 1733662496, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1089,9 +1089,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "47c960db59f5a03be6d5f5db3c62648711fd287dca0fa7b6c18f49ebd965ad34", + "tx_hash": "afb9a582e852714df40622021ba105bd464db5e07f74867a31b84ad7c34ce16f", "block_index": 135, - "block_time": 1733400847 + "block_time": 1733662496 } ], "next_cursor": null, @@ -1111,14 +1111,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1129,9 +1129,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": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 } ], "next_cursor": 595, @@ -1153,19 +1153,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": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "74aece026f093cec323f6c5d6cfc6e59006f8ed750e4e1a9836a2c839b520137", + "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", "tx_index": 25, "value": 66600.0, - "block_time": 1733400814, + "block_time": 1733662474, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "74aece026f093cec323f6c5d6cfc6e59006f8ed750e4e1a9836a2c839b520137", + "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", "block_index": 129, - "block_time": 1733400814 + "block_time": 1733662474 } ], "next_cursor": 205, @@ -1203,12 +1203,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": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "start_block": 0, "status": "open", - "tx_hash": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "tx_index": 105, - "block_time": 1733401264, + "block_time": 1733662942, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1216,9 +1216,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": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "block_index": 232, - "block_time": 1733401264 + "block_time": 1733662942 } ], "next_cursor": 874, @@ -1236,11 +1236,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "ba087473e6ca940b71b51c1ffee99388b126be78b3a3444d9dedaecbe8db1fee" + "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb" }, "tx_hash": null, "block_index": 228, - "block_time": 1733401251 + "block_time": 1733662918 } ], "next_cursor": 869, @@ -1261,17 +1261,17 @@ 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": "ba5874ce453e1bfd8eec026a5acb6a2a78950be77f7fadf9b3ea9289390dbcc6", + "fairminter_tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", "paid_quantity": 100000000, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": "valid", - "tx_hash": "8f72fd2d9f30ebaec2706d529d3ccde7380f2d38125b4460344726bd5a33181f", + "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", "tx_index": 97, - "block_time": 1733401218, + "block_time": 1733662883, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -1279,9 +1279,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.20000000", "paid_quantity_normalized": "1.00000000" }, - "tx_hash": "8f72fd2d9f30ebaec2706d529d3ccde7380f2d38125b4460344726bd5a33181f", + "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", "block_index": 221, - "block_time": 1733401218 + "block_time": 1733662883 } ], "next_cursor": 816, @@ -1302,28 +1302,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "10311f341af41ef60d1f4929a09b23d1d9cc15a94a0aa0e9dbb58bbabe3661c9:0", + "destination": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "source": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "status": "valid", - "tx_hash": "10311f341af41ef60d1f4929a09b23d1d9cc15a94a0aa0e9dbb58bbabe3661c9", + "tx_hash": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", "tx_index": 75, - "block_time": 1733401110, + "block_time": 1733662757, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "10311f341af41ef60d1f4929a09b23d1d9cc15a94a0aa0e9dbb58bbabe3661c9", + "tx_hash": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", "block_index": 199, - "block_time": 1733401110 + "block_time": 1733662757 } ], "next_cursor": 611, @@ -1342,28 +1342,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 198, - "destination": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "destination": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "fd6b06cc90c83cf87b874efc8f2e4bfd59f51e1e5a30fd05f39fc270d0f6198b:0", + "source": "3ca9e2bddd0a9a542e219bd11e8a9d82cb47504bdb3f2bada362cc2160adfcff:0", "status": "valid", - "tx_hash": "4a2f8c74b60eedb91254b3e28028bfb1fc5a7804da4a4ae63e80e06f24a9e04f", + "tx_hash": "cfd9a40c7741775c65321b2673f86310bb1f15fc0bfb711b58cfe0ed5acf4d71", "tx_index": 74, - "block_time": 1733401107, + "block_time": 1733662753, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "4a2f8c74b60eedb91254b3e28028bfb1fc5a7804da4a4ae63e80e06f24a9e04f", + "tx_hash": "cfd9a40c7741775c65321b2673f86310bb1f15fc0bfb711b58cfe0ed5acf4d71", "block_index": 198, - "block_time": 1733401107 + "block_time": 1733662753 } ], "next_cursor": 304, @@ -1382,14 +1382,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 234, - "destination": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 1, "quantity": 2000000000, - "source": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1399,9 +1399,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 } ], "next_cursor": 922, @@ -1423,17 +1423,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 112, "burned": 50000000, "earned": 74999998167, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "status": "valid", - "tx_hash": "6d6229b3ff8f48be1152d17b8283a6041352d2ec692bc87774369d93e3e97bdb", + "tx_hash": "95db2791e37d288a1a4fb3c7414e3aca564b4024baaaf2c7bc77689349c31ca7", "tx_index": 9, - "block_time": 1733400740, + "block_time": 1733662402, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, - "tx_hash": "6d6229b3ff8f48be1152d17b8283a6041352d2ec692bc87774369d93e3e97bdb", + "tx_hash": "95db2791e37d288a1a4fb3c7414e3aca564b4024baaaf2c7bc77689349c31ca7", "block_index": 112, - "block_time": 1733400740 + "block_time": 1733662402 } ], "next_cursor": 58, @@ -1493,56 +1493,56 @@ Returns the list of the last ten blocks "result": [ { "block_index": 234, - "block_hash": "1b6e574b3a3a5a8dc29b883784e65eda6680b34677fe0e204e3519bf4359e271", - "block_time": 1733401275, - "ledger_hash": "f17fb2b3438d2b64353b2d5e33fd35a78fc1ca73aebc1eb2974e32ea02405c83", - "txlist_hash": "c64de2c9e70d3c3c1dccaaf31fae1415012b6b712007e3d42fb82017798c10d1", - "messages_hash": "9045de288511ef00fbdd7f520dd0a1f54fb5fa5ab1f370178051aaa96974632c", - "previous_block_hash": "15431c922cae64717d58d447ed571247e24e5985e72d45551580b1b3ab30c856", + "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", + "block_time": 1733662951, + "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", + "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", + "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", + "previous_block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482", "difficulty": 545259519, "transaction_count": 1 }, { "block_index": 233, - "block_hash": "15431c922cae64717d58d447ed571247e24e5985e72d45551580b1b3ab30c856", - "block_time": 1733401269, - "ledger_hash": "dc90b050d617ffda281649b9fea4b0605b0517315e52223eeb4586e1d48dff8d", - "txlist_hash": "b3f57a2c002cf02b8a88b7d5914e1a5a9914b86082e4c55d76f6b89fe3a5f92f", - "messages_hash": "3363421b28518e41b0ba60019281a747df6bfaee2e3cce7b8fffb667791030ee", - "previous_block_hash": "51401c245601f5b707d1ec89343f83183a993841e1de0b98d480caeb168f3a1e", + "block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482", + "block_time": 1733662945, + "ledger_hash": "c4effb812a79178863a6ce95a80026fdcbbc521bcd82420d62b64d1662592807", + "txlist_hash": "faa07c0ac1aa2d221ab2faf26a4de852b4a50bcd5a73981f9ba109caeb3f9eea", + "messages_hash": "a9fa900b8f6522f9dc91f323b9d39abbf0d8bb9599e6bc75fb0dde9729d12d3f", + "previous_block_hash": "5b934ef246230a877ae6d123edb3ed2e9e334e4e08e11d0d96617acbd2940927", "difficulty": 545259519, "transaction_count": 0 }, { "block_index": 232, - "block_hash": "51401c245601f5b707d1ec89343f83183a993841e1de0b98d480caeb168f3a1e", - "block_time": 1733401264, - "ledger_hash": "235b427c14770b229e8e2dbc80783ba706a53c2489c4b5826d31e1372be9d6a6", - "txlist_hash": "671c280c686e541aff908d9563673ce1a17851d1e6d67a996c498e3fd6c45649", - "messages_hash": "784b712bc9d56d7a18de0494a8521a6903b427d1fe672af11ffb05bc459818c0", - "previous_block_hash": "3e1e740239682314359311cc08a59afbe7a2991706ec154200e6ea3be219601d", + "block_hash": "5b934ef246230a877ae6d123edb3ed2e9e334e4e08e11d0d96617acbd2940927", + "block_time": 1733662942, + "ledger_hash": "e32d339f6d64ba68194a1ee7f4dd31b6707316212fbebc113225d2911e9da526", + "txlist_hash": "6b32615860ef61fe693553866e61d8b9ac89c3b0c68970b803ae5e8d77953142", + "messages_hash": "0b1dded5296e4e8a337f1705a58d44df91ef8edd6eb463ab479f219b18a35bf2", + "previous_block_hash": "24100a2e929da6ee163f9710db8efbaca85f19101a3b869caf7c47fc69ea1e79", "difficulty": 545259519, "transaction_count": 1 }, { "block_index": 231, - "block_hash": "3e1e740239682314359311cc08a59afbe7a2991706ec154200e6ea3be219601d", - "block_time": 1733401261, - "ledger_hash": "86922f2f26cfe05671c2832c9902de47b0b5648dd5bfbba75e00418e5e979a30", - "txlist_hash": "b8d5dfb7f72d4aacdb4fdb86a3b23ff75b65b0963cb484c172cebb70ba4b642c", - "messages_hash": "dd0cf4c7e6a78f97702b5460eeb15aadcdf79552cb2a787497644ec512e8b167", - "previous_block_hash": "1937381032a52923ac32f4773ff6c63047082b623616e6f8e29229298c3161b3", + "block_hash": "24100a2e929da6ee163f9710db8efbaca85f19101a3b869caf7c47fc69ea1e79", + "block_time": 1733662928, + "ledger_hash": "4c1955e9609c751f3bd23ab4e79524f761a774e4817f7bfa4945f01ed5fc2fe8", + "txlist_hash": "2d9b43604aa3d491cb58bfbfe246a19be9a1cb49313411571ab32fd493b1dd1f", + "messages_hash": "fa344060ce89302213bead5a679a8e936eb9b6f03963893d09fe986cd961a41b", + "previous_block_hash": "4e86867ff19ab5f8c6edfcce7beab0df102e903f9a94ad15af6c0fe5935916bc", "difficulty": 545259519, "transaction_count": 1 }, { "block_index": 230, - "block_hash": "1937381032a52923ac32f4773ff6c63047082b623616e6f8e29229298c3161b3", - "block_time": 1733401258, - "ledger_hash": "a9619487b8f730de03b8983bf580c55cf4227c838ae5b02c311071a8ab1ff9da", - "txlist_hash": "8e6eb8e3447052877b40921e0111030944e243a969565677429e30118be58a8a", - "messages_hash": "3266ecd2de5fae5dbfb2436c1f681347eed0930b24b986c12b7b57836bd26c58", - "previous_block_hash": "14475683b593e3844c5e4946a8800ffc0d32fe45288c19c836e7bf1bb7de88df", + "block_hash": "4e86867ff19ab5f8c6edfcce7beab0df102e903f9a94ad15af6c0fe5935916bc", + "block_time": 1733662924, + "ledger_hash": "3b4ac818c89ec20fe795ff45aa0ddb6252a42e5d39e887bec818b1a4e2835172", + "txlist_hash": "8df69dd5bc43012fbfed4d7c9d79bd6b0e47e75fac8c98f89ceaa562d20b3ed7", + "messages_hash": "050f2205d08ef79443c4575005e8991d8d4f17996f53f1942b9702b8bbe59c31", + "previous_block_hash": "7cecdf143482d91a29a97d0fee2369913272ce9d8c597c5b8916aae7e9f0fc6f", "difficulty": 545259519, "transaction_count": 1 } @@ -1566,12 +1566,12 @@ Return the information of the last block { "result": { "block_index": 234, - "block_hash": "1b6e574b3a3a5a8dc29b883784e65eda6680b34677fe0e204e3519bf4359e271", - "block_time": 1733401275, - "ledger_hash": "f17fb2b3438d2b64353b2d5e33fd35a78fc1ca73aebc1eb2974e32ea02405c83", - "txlist_hash": "c64de2c9e70d3c3c1dccaaf31fae1415012b6b712007e3d42fb82017798c10d1", - "messages_hash": "9045de288511ef00fbdd7f520dd0a1f54fb5fa5ab1f370178051aaa96974632c", - "previous_block_hash": "15431c922cae64717d58d447ed571247e24e5985e72d45551580b1b3ab30c856", + "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", + "block_time": 1733662951, + "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", + "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", + "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", + "previous_block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482", "difficulty": 545259519, "transaction_count": 1 } @@ -1593,12 +1593,12 @@ Return the information of a block { "result": { "block_index": 234, - "block_hash": "1b6e574b3a3a5a8dc29b883784e65eda6680b34677fe0e204e3519bf4359e271", - "block_time": 1733401275, - "ledger_hash": "f17fb2b3438d2b64353b2d5e33fd35a78fc1ca73aebc1eb2974e32ea02405c83", - "txlist_hash": "c64de2c9e70d3c3c1dccaaf31fae1415012b6b712007e3d42fb82017798c10d1", - "messages_hash": "9045de288511ef00fbdd7f520dd0a1f54fb5fa5ab1f370178051aaa96974632c", - "previous_block_hash": "15431c922cae64717d58d447ed571247e24e5985e72d45551580b1b3ab30c856", + "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", + "block_time": 1733662951, + "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", + "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", + "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", + "previous_block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482", "difficulty": 545259519, "transaction_count": 1 } @@ -1610,7 +1610,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `1b6e574b3a3a5a8dc29b883784e65eda6680b34677fe0e204e3519bf4359e271` (str, required) - The index of the block to return + + block_hash: `4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94` (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` @@ -1620,12 +1620,12 @@ Return the information of a block { "result": { "block_index": 234, - "block_hash": "1b6e574b3a3a5a8dc29b883784e65eda6680b34677fe0e204e3519bf4359e271", - "block_time": 1733401275, - "ledger_hash": "f17fb2b3438d2b64353b2d5e33fd35a78fc1ca73aebc1eb2974e32ea02405c83", - "txlist_hash": "c64de2c9e70d3c3c1dccaaf31fae1415012b6b712007e3d42fb82017798c10d1", - "messages_hash": "9045de288511ef00fbdd7f520dd0a1f54fb5fa5ab1f370178051aaa96974632c", - "previous_block_hash": "15431c922cae64717d58d447ed571247e24e5985e72d45551580b1b3ab30c856", + "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", + "block_time": 1733662951, + "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", + "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", + "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", + "previous_block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482", "difficulty": 545259519, "transaction_count": 1 } @@ -1680,17 +1680,17 @@ Returns the transactions of a block "result": [ { "tx_index": 106, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_hash": "1b6e574b3a3a5a8dc29b883784e65eda6680b34677fe0e204e3519bf4359e271", - "block_time": 1733401275, - "source": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", - "destination": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", + "block_time": 1733662951, + "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1 cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0 3 1", + "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", "transaction_type": "dispense", "events": [ { @@ -1699,26 +1699,26 @@ Returns the transactions of a block "params": { "asset": "MYASSETA", "block_index": 234, - "destination": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 0, "quantity": 2000000000, - "source": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 925, @@ -1726,14 +1726,14 @@ Returns the transactions of a block "params": { "asset": "XCP", "block_index": 234, - "destination": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 1, "quantity": 2000000000, - "source": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1743,9 +1743,9 @@ Returns the transactions of a block }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 927, @@ -1754,9 +1754,9 @@ Returns the transactions of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": 0, - "tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1766,9 +1766,9 @@ Returns the transactions of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 928, @@ -1777,14 +1777,14 @@ Returns the transactions of a block "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1795,9 +1795,9 @@ Returns the transactions of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 } ], "unpacked_data": { @@ -1860,11 +1860,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 234, - "ledger_hash": "f17fb2b3438d2b64353b2d5e33fd35a78fc1ca73aebc1eb2974e32ea02405c83", - "messages_hash": "9045de288511ef00fbdd7f520dd0a1f54fb5fa5ab1f370178051aaa96974632c", + "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", + "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", "transaction_count": 1, - "txlist_hash": "c64de2c9e70d3c3c1dccaaf31fae1415012b6b712007e3d42fb82017798c10d1", - "block_time": 1733401275 + "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", + "block_time": 1733662951 }, "tx_hash": null }, @@ -1873,10 +1873,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106 }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5" + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" }, { "event_index": 928, @@ -1885,14 +1885,14 @@ Returns the events of a block "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1903,7 +1903,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5" + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" }, { "event_index": 927, @@ -1912,9 +1912,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": 0, - "tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1924,22 +1924,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5" + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" }, { "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1949,7 +1949,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5" + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" } ], "next_cursor": 925, @@ -2028,16 +2028,16 @@ Returns the events of a block filtered by event "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2047,7 +2047,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5" + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" }, { "event_index": 924, @@ -2057,12 +2057,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 234, "calling_function": "utxo move", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 2000000000, "tx_index": 106, - "utxo": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", - "utxo_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "block_time": 1733401275, + "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2072,7 +2072,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5" + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" }, { "event_index": 921, @@ -2082,22 +2082,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 234, "calling_function": "utxo move", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 2000000000, "tx_index": 106, - "utxo": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", - "utxo_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "block_time": 1733401275, + "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5" + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" } ], "next_cursor": null, @@ -2158,15 +2158,15 @@ Returns the credits of a block "result": [ { "block_index": 234, - "address": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2182,11 +2182,11 @@ Returns the credits of a block "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "utxo": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", - "utxo_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "block_time": 1733401275, + "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2202,15 +2202,15 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "utxo": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", - "utxo_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "block_time": 1733401275, + "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -2268,11 +2268,11 @@ Returns the debits of a block "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "utxo": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", - "utxo_address": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", - "block_time": 1733401275, + "utxo": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "utxo_address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2288,15 +2288,15 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "utxo": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", - "utxo_address": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", - "block_time": 1733401275, + "utxo": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "utxo_address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -2330,9 +2330,9 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa", + "object_id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", "block_index": 211, - "block_time": 1733401172 + "block_time": 1733662819 } ], "next_cursor": null, @@ -2362,12 +2362,12 @@ Returns the cancels of a block "result": [ { "tx_index": 63, - "tx_hash": "3c9ccc05dbd365a88a95d324a11ad0d3975066ca6f28865059d18a48dd6354a0", + "tx_hash": "de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6", "block_index": 188, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "offer_hash": "ce89aa7599a93e412c2d5dad24c811373df8567a03584a10021d65c6e4267db3", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "offer_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", "status": "valid", - "block_time": 1733401070 + "block_time": 1733662715 } ], "next_cursor": null, @@ -2397,18 +2397,18 @@ Returns the destructions of a block "result": [ { "tx_index": 101, - "tx_hash": "ba087473e6ca940b71b51c1ffee99388b126be78b3a3444d9dedaecbe8db1fee", + "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", "block_index": 228, - "source": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "asset": "PREMINT", "quantity": 50, "tag": "soft cap not reached", "status": "valid", - "block_time": 1733401251, + "block_time": 1733662918, "asset_info": { "asset_longname": null, "description": "My super description", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": false }, @@ -2455,14 +2455,14 @@ Returns the issuances of a block "result": [ { "tx_index": 105, - "tx_hash": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "msg_index": 0, "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "issuer": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "transfer": false, "callable": false, "call_date": 0, @@ -2476,7 +2476,7 @@ Returns the issuances of a block "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", - "block_time": 1733401264, + "block_time": 1733662942, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -2516,17 +2516,17 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 106, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", - "destination": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2539,21 +2539,21 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 106, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", - "destination": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -2589,26 +2589,26 @@ Returns the dispenses of a block { "tx_index": 106, "dispense_index": 0, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "destination": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "btc_amount": 1000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "last_status_tx_hash": null, - "origin": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2623,7 +2623,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2662,15 +2662,15 @@ Returns the sweeps of a block "result": [ { "tx_index": 65, - "tx_hash": "3a29fd55a51576c56bec724d5093c46034cbdc50def21513e45f8e1e23b403c4", + "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", "block_index": 190, - "source": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", - "destination": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, - "block_time": 1733401078, + "block_time": 1733662722, "fee_paid_normalized": "0.00600000" } ], @@ -2707,10 +2707,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "tx_index": 105, "block_index": 232, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "asset": "OPENFAIR", "asset_parent": null, "asset_longname": null, @@ -2734,7 +2734,7 @@ Returns the fairminters by its block index "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733401264, + "block_time": 1733662942, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2769,21 +2769,21 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "8f72fd2d9f30ebaec2706d529d3ccde7380f2d38125b4460344726bd5a33181f", + "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", "tx_index": 97, "block_index": 221, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "fairminter_tx_hash": "ba5874ce453e1bfd8eec026a5acb6a2a78950be77f7fadf9b3ea9289390dbcc6", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "fairminter_tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", - "block_time": 1733401218, + "block_time": 1733662883, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -2824,17 +2824,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "74aece026f093cec323f6c5d6cfc6e59006f8ed750e4e1a9836a2c839b520137", + "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", "block_index": 129, - "block_hash": "5db835ed49f281c07f7bd124f60cddc25fc976c0d1d2111f2024621551fb2025", - "block_time": 1733400814, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "block_hash": "1c10d35e8c038e1a080a92e3d26cb72c0fad0b7abd7502b6ba621d4e8a7096f8", + "block_time": 1733662474, + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " 74aece026f093cec323f6c5d6cfc6e59006f8ed750e4e1a9836a2c839b520137:1 2 0", + "utxos_info": " 5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf:1 2 0", "transaction_type": "broadcast", "events": [ { @@ -2844,19 +2844,19 @@ Here is sample API output for each of these transactions: "block_index": 129, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "74aece026f093cec323f6c5d6cfc6e59006f8ed750e4e1a9836a2c839b520137", + "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", "tx_index": 25, "value": 66600.0, - "block_time": 1733400814, + "block_time": 1733662474, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "74aece026f093cec323f6c5d6cfc6e59006f8ed750e4e1a9836a2c839b520137", + "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", "block_index": 129, - "block_time": 1733400814 + "block_time": 1733662474 } ], "unpacked_data": { @@ -2880,41 +2880,41 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "d1c93cd2a14bbd176e6249e51bde971b91bb1579f5af86a1448ccce622b8f022", + "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", "block_index": 182, - "block_hash": "250971ed7bb17eb23d82db333243aa03664aa1ba4a03e2eb6048a6620b31bc12", - "block_time": 1733401028, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", - "destination": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "block_hash": "6dcc461e661aaf9d3e675bc7e7164be16f1b75d60464b2c1b3b01f13ce7c2cbd", + "block_time": 1733662675, + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "btc_amount": 2000, "fee": 10000, - "data": "0b201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7b33c542f4bc1e28ca9ea34338d61d49f817d1d1c4fa42aa9c616e623d541eff5", + "data": "0b7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", "supported": true, - "utxos_info": " d1c93cd2a14bbd176e6249e51bde971b91bb1579f5af86a1448ccce622b8f022:0 3 1", + "utxos_info": " 0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc:0 3 1", "transaction_type": "btcpay", "events": [ { "event_index": 506, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7_b33c542f4bc1e28ca9ea34338d61d49f817d1d1c4fa42aa9c616e623d541eff5", - "order_match_id": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7_b33c542f4bc1e28ca9ea34338d61d49f817d1d1c4fa42aa9c616e623d541eff5", + "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", "status": "completed" }, - "tx_hash": "d1c93cd2a14bbd176e6249e51bde971b91bb1579f5af86a1448ccce622b8f022", + "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", "block_index": 182, - "block_time": 1733401028 + "block_time": 1733662675 }, { "event_index": 507, "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "b33c542f4bc1e28ca9ea34338d61d49f817d1d1c4fa42aa9c616e623d541eff5" + "tx_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15" }, - "tx_hash": "d1c93cd2a14bbd176e6249e51bde971b91bb1579f5af86a1448ccce622b8f022", + "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", "block_index": 182, - "block_time": 1733401028 + "block_time": 1733662675 }, { "event_index": 508, @@ -2922,27 +2922,27 @@ Here is sample API output for each of these transactions: "params": { "block_index": 182, "btc_amount": 2000, - "destination": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "order_match_id": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7_b33c542f4bc1e28ca9ea34338d61d49f817d1d1c4fa42aa9c616e623d541eff5", - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "d1c93cd2a14bbd176e6249e51bde971b91bb1579f5af86a1448ccce622b8f022", + "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", "tx_index": 57, - "block_time": 1733401028, + "block_time": 1733662675, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "d1c93cd2a14bbd176e6249e51bde971b91bb1579f5af86a1448ccce622b8f022", + "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", "block_index": 182, - "block_time": 1733401028 + "block_time": 1733662675 } ], "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7", - "tx1_hash": "b33c542f4bc1e28ca9ea34338d61d49f817d1d1c4fa42aa9c616e623d541eff5", - "order_match_id": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7_b33c542f4bc1e28ca9ea34338d61d49f817d1d1c4fa42aa9c616e623d541eff5", + "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "tx1_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", "status": "valid" } } @@ -2956,17 +2956,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "3c9ccc05dbd365a88a95d324a11ad0d3975066ca6f28865059d18a48dd6354a0", + "tx_hash": "de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6", "block_index": 188, - "block_hash": "773c592342e4344061019a3c684fec5845f0960ce82fc2fc588e737230d3dee1", - "block_time": 1733401070, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "block_hash": "723e31b21873ff85e9dc80228e90bd64b992a4e97a9033a7d6b2391c83d44c88", + "block_time": 1733662715, + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46ce89aa7599a93e412c2d5dad24c811373df8567a03584a10021d65c6e4267db3", + "data": "46050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", "supported": true, - "utxos_info": " 3c9ccc05dbd365a88a95d324a11ad0d3975066ca6f28865059d18a48dd6354a0:1 2 0", + "utxos_info": " de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6:1 2 0", "transaction_type": "cancel", "events": [ { @@ -2974,34 +2974,34 @@ Here is sample API output for each of these transactions: "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "ce89aa7599a93e412c2d5dad24c811373df8567a03584a10021d65c6e4267db3" + "tx_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562" }, - "tx_hash": "3c9ccc05dbd365a88a95d324a11ad0d3975066ca6f28865059d18a48dd6354a0", + "tx_hash": "de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6", "block_index": 188, - "block_time": 1733401070 + "block_time": 1733662715 }, { "event_index": 553, "event": "CANCEL_ORDER", "params": { "block_index": 188, - "offer_hash": "ce89aa7599a93e412c2d5dad24c811373df8567a03584a10021d65c6e4267db3", - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "offer_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "3c9ccc05dbd365a88a95d324a11ad0d3975066ca6f28865059d18a48dd6354a0", + "tx_hash": "de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6", "tx_index": 63, - "block_time": 1733401070 + "block_time": 1733662715 }, - "tx_hash": "3c9ccc05dbd365a88a95d324a11ad0d3975066ca6f28865059d18a48dd6354a0", + "tx_hash": "de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6", "block_index": 188, - "block_time": 1733401070 + "block_time": 1733662715 } ], "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "ce89aa7599a93e412c2d5dad24c811373df8567a03584a10021d65c6e4267db3", + "offer_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", "status": "valid" } } @@ -3023,17 +3023,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 68, - "tx_hash": "5aa06a098c32a7d962a3a553b727c958643c7defc82229855dfd7af2d1c33e3e", + "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "block_index": 193, - "block_hash": "3319a9d89fc5f4188fabc2e908b2f2eba314aff4a760895c36eb08a98aad76a0", - "block_time": 1733401088, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "block_hash": "10b675298433b89dad6dfa3551134328a0689c8e59eb4c543ae2ddcfcff81544", + "block_time": 1733662733, + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 5aa06a098c32a7d962a3a553b727c958643c7defc82229855dfd7af2d1c33e3e:1 2 0", + "utxos_info": " ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952:1 2 0", "transaction_type": "dispenser", "events": [ { @@ -3047,17 +3047,17 @@ Here is sample API output for each of these transactions: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "satoshirate": 1, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": 0, - "tx_hash": "5aa06a098c32a7d962a3a553b727c958643c7defc82229855dfd7af2d1c33e3e", + "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "tx_index": 68, - "block_time": 1733401088, + "block_time": 1733662733, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -3066,9 +3066,9 @@ Here is sample API output for each of these transactions: "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "5aa06a098c32a7d962a3a553b727c958643c7defc82229855dfd7af2d1c33e3e", + "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "block_index": 193, - "block_time": 1733401088 + "block_time": 1733662733 } ], "unpacked_data": { @@ -3095,17 +3095,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 106, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_hash": "1b6e574b3a3a5a8dc29b883784e65eda6680b34677fe0e204e3519bf4359e271", - "block_time": 1733401275, - "source": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", - "destination": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", + "block_time": 1733662951, + "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1 cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0 3 1", + "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", "transaction_type": "dispense", "events": [ { @@ -3114,26 +3114,26 @@ Here is sample API output for each of these transactions: "params": { "asset": "MYASSETA", "block_index": 234, - "destination": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 0, "quantity": 2000000000, - "source": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 925, @@ -3141,14 +3141,14 @@ Here is sample API output for each of these transactions: "params": { "asset": "XCP", "block_index": 234, - "destination": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 1, "quantity": 2000000000, - "source": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3158,9 +3158,9 @@ Here is sample API output for each of these transactions: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 927, @@ -3169,9 +3169,9 @@ Here is sample API output for each of these transactions: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": 0, - "tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3181,9 +3181,9 @@ Here is sample API output for each of these transactions: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 928, @@ -3192,14 +3192,14 @@ Here is sample API output for each of these transactions: "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3210,9 +3210,9 @@ Here is sample API output for each of these transactions: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 } ], "unpacked_data": { @@ -3232,17 +3232,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "4fd2ee5b0188ba05abe0c9e6636f27435c033150503912be11b900852d02c5be", + "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", "block_index": 146, - "block_hash": "12f50f58c44ef25912454ad2ac660066c0bb9e6794f29efcd7a0ba297633f29d", - "block_time": 1733400897, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "block_hash": "05571d215a5653a258f8483a81f65b6781362fa9825e0f806bc8072801be71f2", + "block_time": 1733662534, + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " 4fd2ee5b0188ba05abe0c9e6636f27435c033150503912be11b900852d02c5be:1 2 0", + "utxos_info": " 4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e:1 2 0", "transaction_type": "dividend", "events": [ { @@ -3254,15 +3254,15 @@ Here is sample API output for each of these transactions: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "4fd2ee5b0188ba05abe0c9e6636f27435c033150503912be11b900852d02c5be", + "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", "tx_index": 42, - "block_time": 1733400897, + "block_time": 1733662534, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -3276,9 +3276,9 @@ Here is sample API output for each of these transactions: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "4fd2ee5b0188ba05abe0c9e6636f27435c033150503912be11b900852d02c5be", + "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", "block_index": 146, - "block_time": 1733400897 + "block_time": 1733662534 } ], "unpacked_data": { @@ -3301,17 +3301,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 105, - "tx_hash": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "block_index": 232, - "block_hash": "51401c245601f5b707d1ec89343f83183a993841e1de0b98d480caeb168f3a1e", - "block_time": 1733401264, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "block_hash": "5b934ef246230a877ae6d123edb3ed2e9e334e4e08e11d0d96617acbd2940927", + "block_time": 1733662942, + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " 171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676:1 2 0", + "utxos_info": " ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8:1 2 0", "transaction_type": "fairminter", "events": [ { @@ -3337,12 +3337,12 @@ Here is sample API output for each of these transactions: "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "start_block": 0, "status": "open", - "tx_hash": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "tx_index": 105, - "block_time": 1733401264, + "block_time": 1733662942, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -3350,9 +3350,9 @@ Here is sample API output for each of these transactions: "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "block_index": 232, - "block_time": 1733401264 + "block_time": 1733662942 }, { "event_index": 910, @@ -3362,11 +3362,11 @@ Here is sample API output for each of these transactions: "asset_longname": null, "asset_name": "OPENFAIR", "block_index": 232, - "block_time": 1733401264 + "block_time": 1733662942 }, - "tx_hash": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "block_index": 232, - "block_time": 1733401264 + "block_time": 1733662942 }, { "event_index": 911, @@ -3383,22 +3383,22 @@ Here is sample API output for each of these transactions: "divisible": true, "fair_minting": true, "fee_paid": 50000000.0, - "issuer": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": "valid", "transfer": false, - "tx_hash": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "tx_index": 105, - "block_time": 1733401264, + "block_time": 1733662942, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "block_index": 232, - "block_time": 1733401264 + "block_time": 1733662942 } ], "unpacked_data": { @@ -3434,17 +3434,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 104, - "tx_hash": "136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "block_index": 231, - "block_hash": "3e1e740239682314359311cc08a59afbe7a2991706ec154200e6ea3be219601d", - "block_time": 1733401261, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "block_hash": "24100a2e929da6ee163f9710db8efbaca85f19101a3b869caf7c47fc69ea1e79", + "block_time": 1733662928, + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000000000000000003e8000003f1a69ea1d300000000000003e800150000000000000000", "supported": true, - "utxos_info": " 136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031:1 2 0", + "utxos_info": " 97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308:1 2 0", "transaction_type": "order", "events": [ { @@ -3464,11 +3464,11 @@ Here is sample API output for each of these transactions: "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": "open", - "tx_hash": "136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "tx_index": 104, - "block_time": 1733401261, + "block_time": 1733662928, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3479,7 +3479,7 @@ Here is sample API output for each of these transactions: "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "divisible": true, "locked": false }, @@ -3492,9 +3492,9 @@ Here is sample API output for each of these transactions: "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "block_index": 231, - "block_time": 1733401261 + "block_time": 1733662928 }, { "event_index": 902, @@ -3505,13 +3505,13 @@ Here is sample API output for each of these transactions: "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "1e58a9ad4a24f44528e83d1606263c6c658c0d6c24a177675ca62f32dabc03a4", + "tx_hash": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "block_index": 231, - "block_time": 1733401261 + "block_time": 1733662928 }, { "event_index": 903, @@ -3522,13 +3522,13 @@ Here is sample API output for each of these transactions: "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "block_index": 231, - "block_time": 1733401261 + "block_time": 1733662928 }, { "event_index": 904, @@ -3540,24 +3540,24 @@ Here is sample API output for each of these transactions: "fee_paid": 0, "forward_asset": "UTXOASSET", "forward_quantity": 1000, - "id": "1e58a9ad4a24f44528e83d1606263c6c658c0d6c24a177675ca62f32dabc03a4_136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "id": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076_97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "match_expire_index": 251, "status": "pending", - "tx0_address": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "tx0_address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "tx0_block_index": 230, "tx0_expiration": 21, - "tx0_hash": "1e58a9ad4a24f44528e83d1606263c6c658c0d6c24a177675ca62f32dabc03a4", + "tx0_hash": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076", "tx0_index": 103, - "tx1_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "tx1_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "tx1_block_index": 231, "tx1_expiration": 21, - "tx1_hash": "136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "tx1_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "tx1_index": 104, - "block_time": 1733401261, + "block_time": 1733662928, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "divisible": true, "locked": false }, @@ -3572,9 +3572,9 @@ Here is sample API output for each of these transactions: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "block_index": 231, - "block_time": 1733401261 + "block_time": 1733662928 } ], "unpacked_data": { @@ -3600,17 +3600,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "e1ea6b36f27ff0c4cbc1476616175fd2680d975154cec056e43493e9d497d19b", + "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", "block_index": 201, - "block_hash": "28c4a916c7c4df3c8f9ef35f09a594ef01ce3c23a7dd296890b7735e1abd0663", - "block_time": 1733401117, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "block_hash": "10801583bacc821606b117a03aa3d8edc91e8b6c864a3f72a6dfac845ed9f0a6", + "block_time": 1733662764, + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880a7ca60214e47f1aef613fe24f7a1016c0db484b2", + "data": "02000000178d82231300000000000003e880d260d2e34c89b206a0797add1942aa6ca5cd4fdf", "supported": true, - "utxos_info": " e1ea6b36f27ff0c4cbc1476616175fd2680d975154cec056e43493e9d497d19b:1 2 0", + "utxos_info": " ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6:1 2 0", "transaction_type": "enhanced_send", "events": [ { @@ -3619,26 +3619,26 @@ Here is sample API output for each of these transactions: "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "memo": null, "quantity": 1000, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "e1ea6b36f27ff0c4cbc1476616175fd2680d975154cec056e43493e9d497d19b", + "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", "tx_index": 77, - "block_time": 1733401117, + "block_time": 1733662764, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "e1ea6b36f27ff0c4cbc1476616175fd2680d975154cec056e43493e9d497d19b", + "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", "block_index": 201, - "block_time": 1733401117 + "block_time": 1733662764 } ], "unpacked_data": { @@ -3647,7 +3647,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "memo": null } } @@ -3661,17 +3661,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 81, - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_hash": "349e28ac81b228f6518bb15fbdd17ab0f568d7dd5f0c739dfc386a395671bb44", - "block_time": 1733401143, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "block_hash": "662c168d8674e444aa102dfae48120064c0f87a9a881dcd17c07cae9ab69839a", + "block_time": 1733662789, + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380afc9133d2aec0f83acde633978c6a539c97d3efb8038b7789a4ce43e3b03cdafd630b6d4901b417c7f804ff4d40e01a00f03fe166f32ea5bc37719b289ef88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a0a90e6acc5b35a094a931d109e64b559674fb8480f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c:0 4 ", + "utxos_info": " 5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf:0 4 ", "transaction_type": "mpma", "events": [ { @@ -3679,24 +3679,24 @@ Here is sample API output for each of these transactions: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37" + "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8" }, - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_time": 1733401143 + "block_time": 1733662789 }, { "event_index": 705, "event": "ORDER_EXPIRATION", "params": { "block_index": 205, - "order_hash": "cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", - "source": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", - "block_time": 1733401143 + "order_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "block_time": 1733662789 }, - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_time": 1733401143 + "block_time": 1733662789 }, { "event_index": 711, @@ -3704,27 +3704,27 @@ Here is sample API output for each of these transactions: "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "memo": "the memo", "msg_index": 0, "quantity": 10, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "tx_index": 81, - "block_time": 1733401143, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_time": 1733401143 + "block_time": 1733662789 }, { "event_index": 712, @@ -3732,27 +3732,27 @@ Here is sample API output for each of these transactions: "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "tx_index": 81, - "block_time": 1733401143, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_time": 1733401143 + "block_time": 1733662789 }, { "event_index": 713, @@ -3760,15 +3760,15 @@ Here is sample API output for each of these transactions: "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "tx_index": 81, - "block_time": 1733401143, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3778,9 +3778,9 @@ Here is sample API output for each of these transactions: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_time": 1733401143 + "block_time": 1733662789 } ], "unpacked_data": { @@ -3789,14 +3789,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "quantity": 10, "memo": "the memo", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "quantity": 10, "memo": "memo1", "memo_is_hex": false @@ -3813,17 +3813,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 65, - "tx_hash": "3a29fd55a51576c56bec724d5093c46034cbdc50def21513e45f8e1e23b403c4", + "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", "block_index": 190, - "block_hash": "0f56f80464b1278fbd61df0fbca5a8b6885e44b80d90f29a25f7384fd16c2f15", - "block_time": 1733401078, - "source": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "block_hash": "2eb669645cc9928d23767c26908fda2e15a0a01f0535f9be14c3af6d2997f24f", + "block_time": 1733662722, + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "04804ff4d40e01a00f03fe166f32ea5bc37719b289ef017377656570206d7920617373657473", + "data": "0480287acd9953ee89fa6b938a43fd6515acb4fd1e0f017377656570206d7920617373657473", "supported": true, - "utxos_info": " 3a29fd55a51576c56bec724d5093c46034cbdc50def21513e45f8e1e23b403c4:1 2 0", + "utxos_info": " 8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551:1 2 0", "transaction_type": "sweep", "events": [ { @@ -3831,27 +3831,27 @@ Here is sample API output for each of these transactions: "event": "SWEEP", "params": { "block_index": 190, - "destination": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "status": "valid", - "tx_hash": "3a29fd55a51576c56bec724d5093c46034cbdc50def21513e45f8e1e23b403c4", + "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", "tx_index": 65, - "block_time": 1733401078, + "block_time": 1733662722, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "3a29fd55a51576c56bec724d5093c46034cbdc50def21513e45f8e1e23b403c4", + "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", "block_index": 190, - "block_time": 1733401078 + "block_time": 1733662722 } ], "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "flags": 1, "memo": "sweep my assets" } @@ -3866,17 +3866,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "10311f341af41ef60d1f4929a09b23d1d9cc15a94a0aa0e9dbb58bbabe3661c9", + "tx_hash": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", "block_index": 199, - "block_hash": "2ffdd1e0146094e9084bedf751616ea9c89ef3293d4245c4b3399da6f7021798", - "block_time": 1733401110, - "source": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", - "destination": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "block_hash": "7d4db2c3add6f1aedca3dc9efa0f1d7a0be2039f2c6f50e2a077f5affb649a64", + "block_time": 1733662757, + "source": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "destination": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "btc_amount": 10000, "fee": 0, "data": "655554584f41535345547c313030303030303030307c", "supported": true, - "utxos_info": " 10311f341af41ef60d1f4929a09b23d1d9cc15a94a0aa0e9dbb58bbabe3661c9:0 3 1", + "utxos_info": " bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0 3 1", "transaction_type": "attach", "events": [ { @@ -3885,28 +3885,28 @@ Here is sample API output for each of these transactions: "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "10311f341af41ef60d1f4929a09b23d1d9cc15a94a0aa0e9dbb58bbabe3661c9:0", + "destination": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "source": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "status": "valid", - "tx_hash": "10311f341af41ef60d1f4929a09b23d1d9cc15a94a0aa0e9dbb58bbabe3661c9", + "tx_hash": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", "tx_index": 75, - "block_time": 1733401110, + "block_time": 1733662757, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "10311f341af41ef60d1f4929a09b23d1d9cc15a94a0aa0e9dbb58bbabe3661c9", + "tx_hash": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", "block_index": 199, - "block_time": 1733401110 + "block_time": 1733662757 } ], "unpacked_data": { @@ -3928,17 +3928,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 74, - "tx_hash": "4a2f8c74b60eedb91254b3e28028bfb1fc5a7804da4a4ae63e80e06f24a9e04f", + "tx_hash": "cfd9a40c7741775c65321b2673f86310bb1f15fc0bfb711b58cfe0ed5acf4d71", "block_index": 198, - "block_hash": "7a34feae851aa3800ef36c228d3736d0a7eba48e52532b840a0cd839f01cf374", - "block_time": 1733401107, - "source": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "block_hash": "00236108979c92315ffae396a13d2bc7ec1bb33db9f416c33a97b8c95529db30", + "block_time": 1733662753, + "source": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "destination": null, "btc_amount": 0, "fee": 0, "data": "6630", "supported": true, - "utxos_info": "fd6b06cc90c83cf87b874efc8f2e4bfd59f51e1e5a30fd05f39fc270d0f6198b:0 4a2f8c74b60eedb91254b3e28028bfb1fc5a7804da4a4ae63e80e06f24a9e04f:1 2 0", + "utxos_info": "3ca9e2bddd0a9a542e219bd11e8a9d82cb47504bdb3f2bada362cc2160adfcff:0 cfd9a40c7741775c65321b2673f86310bb1f15fc0bfb711b58cfe0ed5acf4d71:1 2 0", "transaction_type": "detach", "events": [ { @@ -3947,28 +3947,28 @@ Here is sample API output for each of these transactions: "params": { "asset": "UTXOASSET", "block_index": 198, - "destination": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "destination": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "fd6b06cc90c83cf87b874efc8f2e4bfd59f51e1e5a30fd05f39fc270d0f6198b:0", + "source": "3ca9e2bddd0a9a542e219bd11e8a9d82cb47504bdb3f2bada362cc2160adfcff:0", "status": "valid", - "tx_hash": "4a2f8c74b60eedb91254b3e28028bfb1fc5a7804da4a4ae63e80e06f24a9e04f", + "tx_hash": "cfd9a40c7741775c65321b2673f86310bb1f15fc0bfb711b58cfe0ed5acf4d71", "tx_index": 74, - "block_time": 1733401107, + "block_time": 1733662753, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "4a2f8c74b60eedb91254b3e28028bfb1fc5a7804da4a4ae63e80e06f24a9e04f", + "tx_hash": "cfd9a40c7741775c65321b2673f86310bb1f15fc0bfb711b58cfe0ed5acf4d71", "block_index": 198, - "block_time": 1733401107 + "block_time": 1733662753 } ], "unpacked_data": { @@ -4029,17 +4029,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 106, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_hash": "1b6e574b3a3a5a8dc29b883784e65eda6680b34677fe0e204e3519bf4359e271", - "block_time": 1733401275, - "source": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", - "destination": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", + "block_time": 1733662951, + "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1 cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0 3 1", + "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", "transaction_type": "dispense", "events": [ { @@ -4048,26 +4048,26 @@ Returns the list of the last ten transactions "params": { "asset": "MYASSETA", "block_index": 234, - "destination": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 0, "quantity": 2000000000, - "source": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 925, @@ -4075,14 +4075,14 @@ Returns the list of the last ten transactions "params": { "asset": "XCP", "block_index": 234, - "destination": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 1, "quantity": 2000000000, - "source": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4092,9 +4092,9 @@ Returns the list of the last ten transactions }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 927, @@ -4103,9 +4103,9 @@ Returns the list of the last ten transactions "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": 0, - "tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4115,9 +4115,9 @@ Returns the list of the last ten transactions }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 928, @@ -4126,14 +4126,14 @@ Returns the list of the last ten transactions "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4144,9 +4144,9 @@ Returns the list of the last ten transactions "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 } ], "unpacked_data": { @@ -4159,17 +4159,17 @@ Returns the list of the last ten transactions }, { "tx_index": 105, - "tx_hash": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "block_index": 232, - "block_hash": "51401c245601f5b707d1ec89343f83183a993841e1de0b98d480caeb168f3a1e", - "block_time": 1733401264, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "block_hash": "5b934ef246230a877ae6d123edb3ed2e9e334e4e08e11d0d96617acbd2940927", + "block_time": 1733662942, + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " 171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676:1 2 0", + "utxos_info": " ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8:1 2 0", "transaction_type": "fairminter", "events": [ { @@ -4195,12 +4195,12 @@ Returns the list of the last ten transactions "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "start_block": 0, "status": "open", - "tx_hash": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "tx_index": 105, - "block_time": 1733401264, + "block_time": 1733662942, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4208,9 +4208,9 @@ Returns the list of the last ten transactions "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "block_index": 232, - "block_time": 1733401264 + "block_time": 1733662942 }, { "event_index": 910, @@ -4220,11 +4220,11 @@ Returns the list of the last ten transactions "asset_longname": null, "asset_name": "OPENFAIR", "block_index": 232, - "block_time": 1733401264 + "block_time": 1733662942 }, - "tx_hash": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "block_index": 232, - "block_time": 1733401264 + "block_time": 1733662942 }, { "event_index": 911, @@ -4241,22 +4241,22 @@ Returns the list of the last ten transactions "divisible": true, "fair_minting": true, "fee_paid": 50000000.0, - "issuer": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": "valid", "transfer": false, - "tx_hash": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "tx_index": 105, - "block_time": 1733401264, + "block_time": 1733662942, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "block_index": 232, - "block_time": 1733401264 + "block_time": 1733662942 } ], "unpacked_data": { @@ -4385,7 +4385,7 @@ Returns the count of each transaction type Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `020000000001061456dd328258a4aabeda776992553b16e30f6a21c9348ae7a4699e5f86c832960000000000ffffffff8471448329a4714cefe6b279d5e38692fe63d3fe1f0a20bbf680f104907f14d60000000000ffffffff37a5107d03de717046077f0ae77504d090b62a89ae70d64c82ca87a6bffa01f50000000000ffffffffcb709ccc97d697168e0e8ad3d3ec8596b68b08da3fb276b93dbf8803ca3885de0000000000ffffffffdc712973d09f4f79b40a298f9a76fc7af6a06fe8b102fb56fb11afc0fab4be440000000000ffffffff48567a026a688d7b757744807a0ea434db5c2716028d265e436f110bbeb9b7530000000000ffffffff04e8030000000000006951210388ede39d1a282e2b69f2c68c9ec8f14da5a3eebc4353af539da8e9d4f2e3e0c8210300f56d295fae60c640342e3112975fa4494e8f6d00fb7e48d4561128ef3b2139210307408a12b66851cf79b94bd87cd0a1789e01594d6687eb3d8420f7d6d3fae47b53aee8030000000000006951210388ede39d1a282e2b69f23899715dd176479ab0ff644afcadb95aabb5162a802721028447ed11e8d6faa0b1bf808763f28994ff9a1f76418d84a5fecfaa156e9b2eb9210307408a12b66851cf79b94bd87cd0a1789e01594d6687eb3d8420f7d6d3fae47b53aee80300000000000069512102a9ede39d1a282e2b69f1c68f1e6fbb2d84eda94deda5e886d27423ac16ee549221038447ed11e8d6fa8aa40a1532df388994ff9a1f76418701c89ba2c526ee9b2ef4210307408a12b66851cf79b94bd87cd0a1789e01594d6687eb3d8420f7d6d3fae47b53ae387923fc06000000160014afc9133d2aec0f83acde633978c6a539c97d3efb0247304402201110d7be5c63e3af54b190bcbd2da22f505f2eb545d57b9cf8aa17ac9827b030022044a3b7f21f8caf1396049025cb51f181a43ab3e06c606b56de739c6bcd1bfaf201210307408a12b66851cf79b94bd87cd0a1789e01594d6687eb3d8420f7d6d3fae47b02473044022062ae6d09fd24f9e14675f1ca4927c2c67d02697a0753c0a3d38ec34c23944ff602201b71d16b69ba8c561da0f26707eb0efd2a3207a14d6a55e558a7486974671f2301210307408a12b66851cf79b94bd87cd0a1789e01594d6687eb3d8420f7d6d3fae47b0247304402202b267f2c06d0d99b047783d9e0b81d3ca2f7b1452070d7b9d458e25f6f43ae3202201ce9818910b6b1544ef21e8f74590229033c5e49c33edd76be2b2bdfb5c50f2801210307408a12b66851cf79b94bd87cd0a1789e01594d6687eb3d8420f7d6d3fae47b024730440220131dc25fcf855e31009061fbf7e834e0577083d75af6336bdfbde4bc4aa567b302206d2b92b83574f057fd97671ee6067b92402935d73f41769ece8b47198263ecfa01210307408a12b66851cf79b94bd87cd0a1789e01594d6687eb3d8420f7d6d3fae47b024730440220408b203eec2a674ef7e7fe459f235dea93ae5afd65844c532884dbe142e755c6022064bc92fca35d3d73a512bd0ecdd85375472bf5a3a4d1196334394c89fd74773b01210307408a12b66851cf79b94bd87cd0a1789e01594d6687eb3d8420f7d6d3fae47b02473044022036f8285f5004f3bbc119a1e72fcc375eb26bc7cf8f3b3dcbd01d74b5a82dfd54022058affce76ad175fa22e48ea71d5bc094a52dcbb89e45745260b6f4b931bd51f201210307408a12b66851cf79b94bd87cd0a1789e01594d6687eb3d8420f7d6d3fae47b00000000` (str, required) - Raw transaction in hex format + + rawtransaction: `02000000000106799f8e97f7ac1576fd79057d81c71818eb79ec38be99555350cddcf84d96dfb20000000000ffffffff60400b16bf8d7717161813673d78b0fe4f50d988f62b2629c964461260f93f310000000000ffffffff5b7cf6ab95178b2526a85bff6788f98be4caa143471d933e8363162a3247077c0000000000fffffffffa97d472b475f0dd1745c5e70af11bd0ab56fb354bb5cc0e7699ce38802377650000000000ffffffffe3e15ea04b644d1d833088a5b0ee60a3bb4236b461ef3d865504e1949b1ba0670000000000ffffffffd54e558dd98b683037111a91f1843db7196bf06116d3530fd353c6a3bb959e5b0000000000ffffffff04e8030000000000006951210397128e37f2c839dd94b4d90c4f7df343238ca6543dd370eb16e93907f4fd030a2102ad03ec3302f2c2ed16edcdd6fda9de031a92f16e3c292cde49cf61d3ab2a8d002103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03353aee8030000000000006951210297128e37f2c839dd944db29c45ec6ef4d56c9b1b257c4991cbf598cd109c1ab32103e2dc6cc432b62f7327b0875ec4c7d68b0dbcc650e8a0693304d8c37978c404252103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03353aee80300000000000069512102b6128e37f2c839dd94b7d90fcfaf1391c0c02fe63b735dbaa0db10d41058ce742102e2dc6cc432b62f59320512eb780dd68b0dbcc650e8aaec5e61b5ac4af8c404d42103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03353ae387923fc06000000160014a0a90e6acc5b35a094a931d109e64b559674fb84024730440220216482cdae9c1635bc183d916fdc36c7efbbe593b5b6c87b386d7fc98ecd0f990220060319eacf6920b8c98b7ae1e1db5e64483764e2e8e27b4d739716f47bd508ee012103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c0330247304402202f1cfce226cd446a2c00d9e6da89eb4b2fb7c9aa6f20741845e98ec76be4582e022044e302fa7a26c9004f5f7674feda5497aa3e101a380e947fdbc23a08a893d06e012103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03302473044022005278a7b8c76c672f4f7f1c7af5c4dba5884adcfb8f7d00e22a36034e2fe89680220214c055c37265fea873a6c6c03e06c3546aa7f9d817a0c1ac8f0bdb9e6ebd5bc012103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c0330247304402201d11fa7da8a8a001a34bf71eb4b8ed43f558c1538464782f955120d728907a1b0220356d21ffbda65e06543a6500f7e015f3bbf08c29acbc204b9467b93c3d3bc1c9012103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033024730440220764f43fd27dca8eb357be67bfc4720ea6cfd61802866eb2640c0f3fbbb1f705202206c927f6c72222bf964122682a669bc3b30de078530cb1f443d21831bb87fce85012103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c0330247304402205b6744ccdca0ecc12b0ba2c8b4a6965507c328abcb89e07d13e0a76f0655fe6a02207c5200c79a7e87a01b5d20a8ecb18e3387922a47e246c18e9ec55e2e2d2c7608012103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03300000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -4396,53 +4396,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a7ca60214e47f1aef613fe24f7a1016c0db484b28038b7789a4ce43e3b03cdafd630b6d4901b417c7f804ff4d40e01a00f03fe166f32ea5bc37719b289ef40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d260d2e34c89b206a0797add1942aa6ca5cd4fdf80f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "1456dd328258a4aabeda776992553b16e30f6a21c9348ae7a4699e5f86c83296", + "hash": "799f8e97f7ac1576fd79057d81c71818eb79ec38be99555350cddcf84d96dfb2", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "8471448329a4714cefe6b279d5e38692fe63d3fe1f0a20bbf680f104907f14d6", + "hash": "60400b16bf8d7717161813673d78b0fe4f50d988f62b2629c964461260f93f31", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "37a5107d03de717046077f0ae77504d090b62a89ae70d64c82ca87a6bffa01f5", + "hash": "5b7cf6ab95178b2526a85bff6788f98be4caa143471d933e8363162a3247077c", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "cb709ccc97d697168e0e8ad3d3ec8596b68b08da3fb276b93dbf8803ca3885de", + "hash": "fa97d472b475f0dd1745c5e70af11bd0ab56fb354bb5cc0e7699ce3880237765", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "dc712973d09f4f79b40a298f9a76fc7af6a06fe8b102fb56fb11afc0fab4be44", + "hash": "e3e15ea04b644d1d833088a5b0ee60a3bb4236b461ef3d865504e1949b1ba067", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "48567a026a688d7b757744807a0ea434db5c2716028d265e436f110bbeb9b753", + "hash": "d54e558dd98b683037111a91f1843db7196bf06116d3530fd353c6a3bb959e5b", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -4452,38 +4452,50 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 1000, - "script_pub_key": "51210388ede39d1a282e2b69f2c68c9ec8f14da5a3eebc4353af539da8e9d4f2e3e0c8210300f56d295fae60c640342e3112975fa4494e8f6d00fb7e48d4561128ef3b2139210307408a12b66851cf79b94bd87cd0a1789e01594d6687eb3d8420f7d6d3fae47b53ae" + "script_pub_key": "51210397128e37f2c839dd94b4d90c4f7df343238ca6543dd370eb16e93907f4fd030a2102ad03ec3302f2c2ed16edcdd6fda9de031a92f16e3c292cde49cf61d3ab2a8d002103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03353ae" }, { "value": 1000, - "script_pub_key": "51210388ede39d1a282e2b69f23899715dd176479ab0ff644afcadb95aabb5162a802721028447ed11e8d6faa0b1bf808763f28994ff9a1f76418d84a5fecfaa156e9b2eb9210307408a12b66851cf79b94bd87cd0a1789e01594d6687eb3d8420f7d6d3fae47b53ae" + "script_pub_key": "51210297128e37f2c839dd944db29c45ec6ef4d56c9b1b257c4991cbf598cd109c1ab32103e2dc6cc432b62f7327b0875ec4c7d68b0dbcc650e8a0693304d8c37978c404252103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03353ae" }, { "value": 1000, - "script_pub_key": "512102a9ede39d1a282e2b69f1c68f1e6fbb2d84eda94deda5e886d27423ac16ee549221038447ed11e8d6fa8aa40a1532df388994ff9a1f76418701c89ba2c526ee9b2ef4210307408a12b66851cf79b94bd87cd0a1789e01594d6687eb3d8420f7d6d3fae47b53ae" + "script_pub_key": "512102b6128e37f2c839dd94b7d90fcfaf1391c0c02fe63b735dbaa0db10d41058ce742102e2dc6cc432b62f59320512eb780dd68b0dbcc650e8aaec5e61b5ac4af8c404d42103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03353ae" }, { "value": 29999987000, - "script_pub_key": "0014afc9133d2aec0f83acde633978c6a539c97d3efb" + "script_pub_key": "0014a0a90e6acc5b35a094a931d109e64b559674fb84" } ], "vtxinwit": [ - "304402201110d7be5c63e3af54b190bcbd2da22f505f2eb545d57b9cf8aa17ac9827b030022044a3b7f21f8caf1396049025cb51f181a43ab3e06c606b56de739c6bcd1bfaf201", - "0307408a12b66851cf79b94bd87cd0a1789e01594d6687eb3d8420f7d6d3fae47b", - "3044022062ae6d09fd24f9e14675f1ca4927c2c67d02697a0753c0a3d38ec34c23944ff602201b71d16b69ba8c561da0f26707eb0efd2a3207a14d6a55e558a7486974671f2301", - "0307408a12b66851cf79b94bd87cd0a1789e01594d6687eb3d8420f7d6d3fae47b", - "304402202b267f2c06d0d99b047783d9e0b81d3ca2f7b1452070d7b9d458e25f6f43ae3202201ce9818910b6b1544ef21e8f74590229033c5e49c33edd76be2b2bdfb5c50f2801", - "0307408a12b66851cf79b94bd87cd0a1789e01594d6687eb3d8420f7d6d3fae47b", - "30440220131dc25fcf855e31009061fbf7e834e0577083d75af6336bdfbde4bc4aa567b302206d2b92b83574f057fd97671ee6067b92402935d73f41769ece8b47198263ecfa01", - "0307408a12b66851cf79b94bd87cd0a1789e01594d6687eb3d8420f7d6d3fae47b", - "30440220408b203eec2a674ef7e7fe459f235dea93ae5afd65844c532884dbe142e755c6022064bc92fca35d3d73a512bd0ecdd85375472bf5a3a4d1196334394c89fd74773b01", - "0307408a12b66851cf79b94bd87cd0a1789e01594d6687eb3d8420f7d6d3fae47b", - "3044022036f8285f5004f3bbc119a1e72fcc375eb26bc7cf8f3b3dcbd01d74b5a82dfd54022058affce76ad175fa22e48ea71d5bc094a52dcbb89e45745260b6f4b931bd51f201", - "0307408a12b66851cf79b94bd87cd0a1789e01594d6687eb3d8420f7d6d3fae47b" + [ + "30440220216482cdae9c1635bc183d916fdc36c7efbbe593b5b6c87b386d7fc98ecd0f990220060319eacf6920b8c98b7ae1e1db5e64483764e2e8e27b4d739716f47bd508ee01", + "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" + ], + [ + "304402202f1cfce226cd446a2c00d9e6da89eb4b2fb7c9aa6f20741845e98ec76be4582e022044e302fa7a26c9004f5f7674feda5497aa3e101a380e947fdbc23a08a893d06e01", + "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" + ], + [ + "3044022005278a7b8c76c672f4f7f1c7af5c4dba5884adcfb8f7d00e22a36034e2fe89680220214c055c37265fea873a6c6c03e06c3546aa7f9d817a0c1ac8f0bdb9e6ebd5bc01", + "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" + ], + [ + "304402201d11fa7da8a8a001a34bf71eb4b8ed43f558c1538464782f955120d728907a1b0220356d21ffbda65e06543a6500f7e015f3bbf08c29acbc204b9467b93c3d3bc1c901", + "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" + ], + [ + "30440220764f43fd27dca8eb357be67bfc4720ea6cfd61802866eb2640c0f3fbbb1f705202206c927f6c72222bf964122682a669bc3b30de078530cb1f443d21831bb87fce8501", + "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" + ], + [ + "304402205b6744ccdca0ecc12b0ba2c8b4a6965507c328abcb89e07d13e0a76f0655fe6a02207c5200c79a7e87a01b5d20a8ecb18e3387922a47e246c18e9ec55e2e2d2c760801", + "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" + ] ], "lock_time": 0, - "tx_hash": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537", - "tx_id": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537" + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_id": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab" }, "unpacked_data": { "message_type": "mpma_send", @@ -4491,14 +4503,14 @@ Returns Counterparty information from a raw transaction in hex format. "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -4506,7 +4518,7 @@ Returns Counterparty information from a raw transaction in hex format. }, { "asset": "XCP", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -4531,7 +4543,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe` (str, required) - Transaction hash + + tx_hash: `f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf` (str, required) - Transaction hash + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -4540,18 +4552,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000000000000100000000000027108038b7789a4ce43e3b03cdafd630b6d4901b417c7f", + "data": "020000000000000001000000000000271080f73044edb424e8df3d85a40888172e373ed483c0", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "d62b496a3d3f73209c8ebf43401388447482469a3b30be4ba0e2a3834712e908", + "hash": "002f40bdbe04cb71270828b3bd36a42730fe49089bc95f262b95834124b9463b", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -4561,20 +4573,22 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e24d8d90e5d4dc68029f5039fb3bbb6c005769a58dabd36394a6e65719768c6d7a349ed0cabfd4d37a0ef00715b73" + "script_pub_key": "6a2e0d3783d1420c0f9a2161d03e6e1a07fffe253f36576d8cea8dd5e795dda625acc0c60a786218ae94ac1adb38184a" }, { "value": 4949940000, - "script_pub_key": "00144ff4d40e01a00f03fe166f32ea5bc37719b289ef" + "script_pub_key": "0014287acd9953ee89fa6b938a43fd6515acb4fd1e0f" } ], "vtxinwit": [ - "304402201dec8ee20dd5b728328d441645c8bad5ab4951428a60c97f26c71dd78b7f1a8602201c93f85b4bb1d42704488d880836c25d485073e76d32b6699bc391a226b71b0c01", - "02c1446b0958c53acd2dd7e4e34b9de6d117f9fd68799da09aefc958eb91cf4ff3" + [ + "304402201944e806dd31809c8cea0f60894ad434b062224d3e68282275203c4af83465ad022069f435c39488f541a9d6cd663ed29fe02a3aaa8c37ba50982e39751ab2381ba701", + "030fc8286999a5759d9096b4f3d4f6c0377e40a1cf68bfa63856e63bd06bc878a5" + ] ], "lock_time": 0, - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", - "tx_id": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe" + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_id": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf" }, "unpacked_data": { "message_type": "enhanced_send", @@ -4582,7 +4596,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "memo": null, "asset_info": { "asset_longname": null, @@ -4639,17 +4653,17 @@ Returns a transaction by its index. { "result": { "tx_index": 106, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_hash": "1b6e574b3a3a5a8dc29b883784e65eda6680b34677fe0e204e3519bf4359e271", - "block_time": 1733401275, - "source": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", - "destination": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", + "block_time": 1733662951, + "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1 cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0 3 1", + "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", "transaction_type": "dispense", "events": [ { @@ -4658,26 +4672,26 @@ Returns a transaction by its index. "params": { "asset": "MYASSETA", "block_index": 234, - "destination": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 0, "quantity": 2000000000, - "source": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 925, @@ -4685,14 +4699,14 @@ Returns a transaction by its index. "params": { "asset": "XCP", "block_index": 234, - "destination": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 1, "quantity": 2000000000, - "source": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4702,9 +4716,9 @@ Returns a transaction by its index. }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 927, @@ -4713,9 +4727,9 @@ Returns a transaction by its index. "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": 0, - "tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4725,9 +4739,9 @@ Returns a transaction by its index. }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 928, @@ -4736,14 +4750,14 @@ Returns a transaction by its index. "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4754,9 +4768,9 @@ Returns a transaction by its index. "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 } ], "unpacked_data": { @@ -4775,7 +4789,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5` (str, required) - The hash of the transaction + + tx_hash: `24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b` (str, required) - The hash of the transaction + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -4785,17 +4799,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 106, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_hash": "1b6e574b3a3a5a8dc29b883784e65eda6680b34677fe0e204e3519bf4359e271", - "block_time": 1733401275, - "source": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", - "destination": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", + "block_time": 1733662951, + "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1 cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0 3 1", + "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", "transaction_type": "dispense", "events": [ { @@ -4804,26 +4818,26 @@ Returns a transaction by its hash. "params": { "asset": "MYASSETA", "block_index": 234, - "destination": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 0, "quantity": 2000000000, - "source": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 925, @@ -4831,14 +4845,14 @@ Returns a transaction by its hash. "params": { "asset": "XCP", "block_index": 234, - "destination": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 1, "quantity": 2000000000, - "source": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4848,9 +4862,9 @@ Returns a transaction by its hash. }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 927, @@ -4859,9 +4873,9 @@ Returns a transaction by its hash. "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": 0, - "tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4871,9 +4885,9 @@ Returns a transaction by its hash. }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 928, @@ -4882,14 +4896,14 @@ Returns a transaction by its hash. "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4900,9 +4914,9 @@ Returns a transaction by its hash. "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 } ], "unpacked_data": { @@ -4943,12 +4957,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106 }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 928, @@ -4957,14 +4971,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4975,9 +4989,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 927, @@ -4986,9 +5000,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": 0, - "tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4998,24 +5012,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5025,9 +5039,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 925, @@ -5035,14 +5049,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 234, - "destination": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 1, "quantity": 2000000000, - "source": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5052,9 +5066,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 } ], "next_cursor": 924, @@ -5067,7 +5081,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5` (str, required) - The hash of the transaction to return + + tx_hash: `24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `930` (str, optional) - The last event index to return @@ -5089,12 +5103,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106 }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 928, @@ -5103,14 +5117,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5121,9 +5135,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 927, @@ -5132,9 +5146,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": 0, - "tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5144,24 +5158,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5171,9 +5185,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 925, @@ -5181,14 +5195,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 234, - "destination": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 1, "quantity": 2000000000, - "source": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5198,9 +5212,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 } ], "next_cursor": 924, @@ -5213,7 +5227,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5` (str, required) - The hash of the transaction to return + + tx_hash: `24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b` (str, required) - The hash of the transaction to return + send_type (enum[str], optional) - The type of the send to return + Default: `all` + Members @@ -5238,17 +5252,17 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 106, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", - "destination": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5261,21 +5275,21 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 106, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", - "destination": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -5293,7 +5307,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5` (str, required) - The hash of the transaction to return + + tx_hash: `24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b` (str, required) - The hash of the transaction to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -5311,26 +5325,26 @@ Returns the dispenses of a block { "tx_index": 106, "dispense_index": 0, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "destination": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "btc_amount": 1000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "last_status_tx_hash": null, - "origin": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5345,7 +5359,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5387,16 +5401,16 @@ Returns the events of a transaction "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5406,9 +5420,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 924, @@ -5418,12 +5432,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 234, "calling_function": "utxo move", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 2000000000, "tx_index": 106, - "utxo": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", - "utxo_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "block_time": 1733401275, + "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5433,9 +5447,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 921, @@ -5445,24 +5459,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 234, "calling_function": "utxo move", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 2000000000, "tx_index": 106, - "utxo": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", - "utxo_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "block_time": 1733401275, + "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 } ], "next_cursor": null, @@ -5475,7 +5489,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5` (str, required) - The hash of the transaction to return + + tx_hash: `24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `930` (str, optional) - The last event index to return + Default: `None` @@ -5495,16 +5509,16 @@ Returns the events of a transaction "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5514,9 +5528,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 924, @@ -5526,12 +5540,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 234, "calling_function": "utxo move", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 2000000000, "tx_index": 106, - "utxo": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", - "utxo_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "block_time": 1733401275, + "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5541,9 +5555,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 921, @@ -5553,24 +5567,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 234, "calling_function": "utxo move", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 2000000000, "tx_index": 106, - "utxo": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", - "utxo_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "block_time": 1733401275, + "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 } ], "next_cursor": null, @@ -5585,7 +5599,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp,bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla,bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - Comma separated list of addresses + type (enum[str], optional) - The type of balances to return + Default: `all` + Members @@ -5614,7 +5628,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -5624,7 +5638,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -5636,7 +5650,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -5646,7 +5660,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -5658,7 +5672,7 @@ Returns the balances of several addresses "total": 180, "addresses": [ { - "address": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "utxo": null, "utxo_address": null, "quantity": 180, @@ -5668,7 +5682,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -5680,7 +5694,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "utxo": null, "utxo_address": null, "quantity": 40, @@ -5690,7 +5704,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -5702,7 +5716,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "utxo": null, "utxo_address": null, "quantity": 19, @@ -5712,7 +5726,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -5729,7 +5743,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp,bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla,bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - Comma separated list of addresses to return + type (enum[str], optional) - The type of the transaction to return + Default: `all` + Members @@ -5772,17 +5786,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 81, - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_hash": "349e28ac81b228f6518bb15fbdd17ab0f568d7dd5f0c739dfc386a395671bb44", - "block_time": 1733401143, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "block_hash": "662c168d8674e444aa102dfae48120064c0f87a9a881dcd17c07cae9ab69839a", + "block_time": 1733662789, + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380afc9133d2aec0f83acde633978c6a539c97d3efb8038b7789a4ce43e3b03cdafd630b6d4901b417c7f804ff4d40e01a00f03fe166f32ea5bc37719b289ef88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a0a90e6acc5b35a094a931d109e64b559674fb8480f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c:0 4 ", + "utxos_info": " 5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf:0 4 ", "transaction_type": "mpma", "events": [ { @@ -5790,24 +5804,24 @@ Returns the transactions of a list of addresses "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37" + "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8" }, - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_time": 1733401143 + "block_time": 1733662789 }, { "event_index": 705, "event": "ORDER_EXPIRATION", "params": { "block_index": 205, - "order_hash": "cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", - "source": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", - "block_time": 1733401143 + "order_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "block_time": 1733662789 }, - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_time": 1733401143 + "block_time": 1733662789 }, { "event_index": 711, @@ -5815,27 +5829,27 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "memo": "the memo", "msg_index": 0, "quantity": 10, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "tx_index": 81, - "block_time": 1733401143, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_time": 1733401143 + "block_time": 1733662789 }, { "event_index": 712, @@ -5843,27 +5857,27 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "tx_index": 81, - "block_time": 1733401143, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_time": 1733401143 + "block_time": 1733662789 }, { "event_index": 713, @@ -5871,15 +5885,15 @@ Returns the transactions of a list of addresses "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "tx_index": 81, - "block_time": 1733401143, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5889,9 +5903,9 @@ Returns the transactions of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_time": 1733401143 + "block_time": 1733662789 } ], "unpacked_data": { @@ -5900,14 +5914,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "quantity": 10, "memo": "the memo", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "quantity": 10, "memo": "memo1", "memo_is_hex": false @@ -5917,30 +5931,30 @@ Returns the transactions of a list of addresses }, { "tx_index": 80, - "tx_hash": "82c7b328be471c36a81fe93ba31ab8cea34f6ba1787df20ac6dabc81901cb4a3", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "block_hash": "757f061ff2e6f567c348e074e49bdea7cb5a9f4fb9f80c5a2d318614bd71458a", - "block_time": 1733401139, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "block_hash": "31c2a66bb4ad76bc8c708308bfcef980d21165fb8136cf83b22bc1a4a95d61b6", + "block_time": 1733662785, + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380afc9133d2aec0f83acde633978c6a539c97d3efb8038b7789a4ce43e3b03cdafd630b6d4901b417c7f804ff4d40e01a00f03fe166f32ea5bc37719b289efc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a0a90e6acc5b35a094a931d109e64b559674fb8480f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0fc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 82c7b328be471c36a81fe93ba31ab8cea34f6ba1787df20ac6dabc81901cb4a3:0 4 ", + "utxos_info": " b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4:0 4 ", "transaction_type": "mpma", "events": [ { "event_index": 685, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7_cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", - "order_match_id": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7_cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", + "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "status": "expired" }, - "tx_hash": "82c7b328be471c36a81fe93ba31ab8cea34f6ba1787df20ac6dabc81901cb4a3", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "block_time": 1733401139 + "block_time": 1733662785 }, { "event_index": 687, @@ -5950,26 +5964,26 @@ Returns the transactions of a list of addresses "get_remaining": 3000, "give_remaining": 3000, "status": "open", - "tx_hash": "cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", + "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "fee_required_remaining_normalized": "0.00000000" }, - "tx_hash": "82c7b328be471c36a81fe93ba31ab8cea34f6ba1787df20ac6dabc81901cb4a3", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "block_time": 1733401139 + "block_time": 1733662785 }, { "event_index": 688, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 204, - "order_match_id": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7_cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", - "tx0_address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "tx1_address": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", - "block_time": 1733401139 + "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "block_time": 1733662785 }, - "tx_hash": "82c7b328be471c36a81fe93ba31ab8cea34f6ba1787df20ac6dabc81901cb4a3", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "block_time": 1733401139 + "block_time": 1733662785 }, { "event_index": 689, @@ -5980,13 +5994,13 @@ Returns the transactions of a list of addresses "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa", + "tx_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "82c7b328be471c36a81fe93ba31ab8cea34f6ba1787df20ac6dabc81901cb4a3", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "block_time": 1733401139 + "block_time": 1733662785 }, { "event_index": 690, @@ -5997,13 +6011,13 @@ Returns the transactions of a list of addresses "get_remaining": 2000, "give_remaining": 2000, "status": "open", - "tx_hash": "cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", + "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "82c7b328be471c36a81fe93ba31ab8cea34f6ba1787df20ac6dabc81901cb4a3", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "block_time": 1733401139 + "block_time": 1733662785 }, { "event_index": 691, @@ -6015,20 +6029,20 @@ Returns the transactions of a list of addresses "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa_cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", + "id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "match_expire_index": 224, "status": "pending", - "tx0_address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx0_block_index": 189, "tx0_expiration": 21, - "tx0_hash": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa", + "tx0_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", "tx0_index": 64, - "tx1_address": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "tx1_block_index": 204, "tx1_expiration": 21, - "tx1_hash": "cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", + "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "tx1_index": 58, - "block_time": 1733401139, + "block_time": 1733662785, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6047,9 +6061,9 @@ Returns the transactions of a list of addresses "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "82c7b328be471c36a81fe93ba31ab8cea34f6ba1787df20ac6dabc81901cb4a3", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "block_time": 1733401139 + "block_time": 1733662785 }, { "event_index": 697, @@ -6057,27 +6071,27 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "memo": "746865206d656d6f", "msg_index": 0, "quantity": 10, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "82c7b328be471c36a81fe93ba31ab8cea34f6ba1787df20ac6dabc81901cb4a3", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "tx_index": 80, - "block_time": 1733401139, + "block_time": 1733662785, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "82c7b328be471c36a81fe93ba31ab8cea34f6ba1787df20ac6dabc81901cb4a3", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "block_time": 1733401139 + "block_time": 1733662785 }, { "event_index": 698, @@ -6085,27 +6099,27 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "memo": "746865206d656d6f", "msg_index": 1, "quantity": 10, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "82c7b328be471c36a81fe93ba31ab8cea34f6ba1787df20ac6dabc81901cb4a3", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "tx_index": 80, - "block_time": 1733401139, + "block_time": 1733662785, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "82c7b328be471c36a81fe93ba31ab8cea34f6ba1787df20ac6dabc81901cb4a3", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "block_time": 1733401139 + "block_time": 1733662785 }, { "event_index": 699, @@ -6113,15 +6127,15 @@ Returns the transactions of a list of addresses "params": { "asset": "XCP", "block_index": 204, - "destination": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "memo": "746865206d656d6f", "msg_index": 2, "quantity": 10, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "82c7b328be471c36a81fe93ba31ab8cea34f6ba1787df20ac6dabc81901cb4a3", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "tx_index": 80, - "block_time": 1733401139, + "block_time": 1733662785, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6131,9 +6145,9 @@ Returns the transactions of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "82c7b328be471c36a81fe93ba31ab8cea34f6ba1787df20ac6dabc81901cb4a3", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "block_time": 1733401139 + "block_time": 1733662785 } ], "unpacked_data": { @@ -6142,14 +6156,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true }, { "asset": "XCP", - "destination": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true @@ -6159,17 +6173,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 79, - "tx_hash": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "block_hash": "08462b6f7bae28d20de9cbe0d72d20809c57e4ae6a7682d191b1181298d8fa7f", - "block_time": 1733401135, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "block_hash": "0de537875466fcabb29014860060168e58d39d6640e6be78625455093e5557db", + "block_time": 1733662781, + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a7ca60214e47f1aef613fe24f7a1016c0db484b28038b7789a4ce43e3b03cdafd630b6d4901b417c7f804ff4d40e01a00f03fe166f32ea5bc37719b289ef40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d260d2e34c89b206a0797add1942aa6ca5cd4fdf80f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537:0 4 ", + "utxos_info": " 8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab:0 4 ", "transaction_type": "mpma", "events": [ { @@ -6178,27 +6192,27 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "memo": "memo2", "msg_index": 0, "quantity": 10, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "tx_index": 79, - "block_time": 1733401135, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "block_time": 1733401135 + "block_time": 1733662781 }, { "event_index": 679, @@ -6206,27 +6220,27 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "tx_index": 79, - "block_time": 1733401135, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "block_time": 1733401135 + "block_time": 1733662781 }, { "event_index": 680, @@ -6234,15 +6248,15 @@ Returns the transactions of a list of addresses "params": { "asset": "XCP", "block_index": 203, - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "tx_index": 79, - "block_time": 1733401135, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6252,9 +6266,9 @@ Returns the transactions of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "block_time": 1733401135 + "block_time": 1733662781 } ], "unpacked_data": { @@ -6263,14 +6277,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "quantity": 10, "memo": "memo2", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "quantity": 10, "memo": "memo1", "memo_is_hex": false @@ -6280,17 +6294,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 78, - "tx_hash": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_hash": "1798749d9e58ed77798f270fdd906d4e12eb6b5d051d897720917c57b5eab678", - "block_time": 1733401131, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "block_hash": "592b0db0b71afdbe18b1fc5432bbfde15ca979682f0055e3e62c2d56161c659b", + "block_time": 1733662777, + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a7ca60214e47f1aef613fe24f7a1016c0db484b28038b7789a4ce43e3b03cdafd630b6d4901b417c7f804ff4d40e01a00f03fe166f32ea5bc37719b289ef88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d260d2e34c89b206a0797add1942aa6ca5cd4fdf80f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72:0 4 ", + "utxos_info": " 08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe:0 4 ", "transaction_type": "mpma", "events": [ { @@ -6298,24 +6312,24 @@ Returns the transactions of a list of addresses "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7" + "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29" }, - "tx_hash": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_time": 1733401131 + "block_time": 1733662777 }, { "event_index": 660, "event": "ORDER_EXPIRATION", "params": { "block_index": 202, - "order_hash": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7", - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "block_time": 1733401131 + "order_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_time": 1733662777 }, - "tx_hash": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_time": 1733401131 + "block_time": 1733662777 }, { "event_index": 666, @@ -6323,27 +6337,27 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "memo": "the memo", "msg_index": 0, "quantity": 10, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "tx_index": 78, - "block_time": 1733401131, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_time": 1733401131 + "block_time": 1733662777 }, { "event_index": 667, @@ -6351,27 +6365,27 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "memo": "the memo", "msg_index": 1, "quantity": 10, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "tx_index": 78, - "block_time": 1733401131, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_time": 1733401131 + "block_time": 1733662777 }, { "event_index": 668, @@ -6379,15 +6393,15 @@ Returns the transactions of a list of addresses "params": { "asset": "XCP", "block_index": 202, - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "memo": "the memo", "msg_index": 2, "quantity": 10, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "tx_index": 78, - "block_time": 1733401131, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6397,9 +6411,9 @@ Returns the transactions of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_time": 1733401131 + "block_time": 1733662777 } ], "unpacked_data": { @@ -6408,14 +6422,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "quantity": 10, "memo": "the memo", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "quantity": 10, "memo": "the memo", "memo_is_hex": false @@ -6425,17 +6439,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 77, - "tx_hash": "e1ea6b36f27ff0c4cbc1476616175fd2680d975154cec056e43493e9d497d19b", + "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", "block_index": 201, - "block_hash": "28c4a916c7c4df3c8f9ef35f09a594ef01ce3c23a7dd296890b7735e1abd0663", - "block_time": 1733401117, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "block_hash": "10801583bacc821606b117a03aa3d8edc91e8b6c864a3f72a6dfac845ed9f0a6", + "block_time": 1733662764, + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880a7ca60214e47f1aef613fe24f7a1016c0db484b2", + "data": "02000000178d82231300000000000003e880d260d2e34c89b206a0797add1942aa6ca5cd4fdf", "supported": true, - "utxos_info": " e1ea6b36f27ff0c4cbc1476616175fd2680d975154cec056e43493e9d497d19b:1 2 0", + "utxos_info": " ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6:1 2 0", "transaction_type": "enhanced_send", "events": [ { @@ -6444,26 +6458,26 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "memo": null, "quantity": 1000, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "e1ea6b36f27ff0c4cbc1476616175fd2680d975154cec056e43493e9d497d19b", + "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", "tx_index": 77, - "block_time": 1733401117, + "block_time": 1733662764, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "e1ea6b36f27ff0c4cbc1476616175fd2680d975154cec056e43493e9d497d19b", + "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", "block_index": 201, - "block_time": 1733401117 + "block_time": 1733662764 } ], "unpacked_data": { @@ -6472,7 +6486,7 @@ Returns the transactions of a list of addresses "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "memo": null } } @@ -6488,7 +6502,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp,bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla,bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `930` (str, optional) - The last event index to return @@ -6510,29 +6524,29 @@ Returns the events of a list of addresses "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa_cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", - "tx0_address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "tx1_address": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", - "block_time": 1733401241 + "order_match_id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "block_time": 1733662907 }, - "tx_hash": "547fe13c4bc5cf5733ab7137993f4202782ffaeae1cd6a2278fa8f19f81ce038", + "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", "block_index": 225, - "block_time": 1733401241 + "block_time": 1733662907 }, { "event_index": 860, "event": "CREDIT", "params": { - "address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa_cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", + "event": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733401241, + "block_time": 1733662907, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6542,37 +6556,37 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "547fe13c4bc5cf5733ab7137993f4202782ffaeae1cd6a2278fa8f19f81ce038", + "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", "block_index": 225, - "block_time": 1733401241 + "block_time": 1733662907 }, { "event_index": 758, "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa", - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "block_time": 1733401172 + "order_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_time": 1733662819 }, - "tx_hash": "a8f7b83cb0c0757ec8df98c6bbf6e36d6c9a88b8e10b270ff5da1d0bf753a844", + "tx_hash": "816df0c34171151d8c1947707f1c924dc6988f829038e9f0709bb2b7ab206acc", "block_index": 211, - "block_time": 1733401172 + "block_time": 1733662819 }, { "event_index": 757, "event": "CREDIT", "params": { - "address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "block_index": 211, "calling_function": "cancel order", - "event": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa", + "event": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", "quantity": 0, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733401172, + "block_time": 1733662819, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6582,9 +6596,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000000" }, - "tx_hash": "a8f7b83cb0c0757ec8df98c6bbf6e36d6c9a88b8e10b270ff5da1d0bf753a844", + "tx_hash": "816df0c34171151d8c1947707f1c924dc6988f829038e9f0709bb2b7ab206acc", "block_index": 211, - "block_time": 1733401172 + "block_time": 1733662819 }, { "event_index": 713, @@ -6592,15 +6606,15 @@ Returns the events of a list of addresses "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "tx_index": 81, - "block_time": 1733401143, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6610,9 +6624,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_time": 1733401143 + "block_time": 1733662789 } ], "next_cursor": 713, @@ -6625,7 +6639,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w,bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9,bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g` (str, required) - Comma separated list of addresses to return + cursor (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return @@ -6639,17 +6653,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "memo": null, "quantity": 10000, - "source": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "status": "valid", - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "tx_index": 107, "asset_info": { "asset_longname": null, @@ -6660,22 +6674,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733401279.824624 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "CREDIT", "params": { - "address": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "asset": "XCP", "block_index": 234, "calling_function": "send", - "event": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6685,22 +6699,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733401279.824624 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "address": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "asset": "XCP", "block_index": 234, - "event": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6710,27 +6724,27 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733401279.824624 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1733401279.824624, + "block_time": 1733662956.0412934, "btc_amount": 0, - "data": "02000000000000000100000000000027108038b7789a4ce43e3b03cdafd630b6d4901b417c7f", + "data": "020000000000000001000000000000271080f73044edb424e8df3d85a40888172e373ed483c0", "destination": "", "fee": 10000, - "source": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "transaction_type": "enhanced_send", - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "tx_index": 107, - "utxos_info": " b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe:1 2 0", + "utxos_info": " f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf:1 2 0", "btc_amount_normalized": "0.00000000" }, - "timestamp": 1733401279.824624 + "timestamp": 1733662956.0412934 } ], "next_cursor": null, @@ -6743,7 +6757,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + type (enum[str], optional) - The type of balances to return + Default: `` + Members @@ -6767,7 +6781,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "A95428956980101314", "asset_longname": null, "quantity": 100000000000, @@ -6776,14 +6790,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "MPMASSET", "asset_longname": null, "quantity": 99999998960, @@ -6792,14 +6806,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "999.99998960" }, { - "address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "MYASSETA", "asset_longname": null, "quantity": 97999999980, @@ -6808,14 +6822,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "979.99999980" }, { - "address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "asset_longname": null, "quantity": 82599966196, @@ -6831,7 +6845,7 @@ Returns the balances of an address "quantity_normalized": "825.99966196" }, { - "address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "TESTLOCKDESC", "asset_longname": null, "quantity": 9999990000, @@ -6840,7 +6854,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -6857,7 +6871,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (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` @@ -6880,7 +6894,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "asset_longname": null, "quantity": 82599966196, @@ -6906,7 +6920,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -6954,15 +6968,15 @@ Returns the credits of an address "result": [ { "block_index": 225, - "address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 1000, "calling_function": "order expired", - "event": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa_cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", + "event": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733401241, + "block_time": 1733662907, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6974,15 +6988,15 @@ Returns the credits of an address }, { "block_index": 205, - "address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "event": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1733401143, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6994,15 +7008,15 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "82c7b328be471c36a81fe93ba31ab8cea34f6ba1787df20ac6dabc81901cb4a3", + "event": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1733401139, + "block_time": 1733662785, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7014,15 +7028,15 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7_cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", + "event": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733401139, + "block_time": 1733662785, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7034,15 +7048,15 @@ Returns the credits of an address }, { "block_index": 202, - "address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7", + "event": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733401131, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7063,7 +7077,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -7100,15 +7114,15 @@ Returns the debits of an address "result": [ { "block_index": 203, - "address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537", + "event": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1733401135, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7120,19 +7134,19 @@ Returns the debits of an address }, { "block_index": 203, - "address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537", + "event": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1733401135, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -7140,15 +7154,15 @@ Returns the debits of an address }, { "block_index": 202, - "address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "event": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1733401131, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7160,19 +7174,19 @@ Returns the debits of an address }, { "block_index": 202, - "address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "event": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1733401131, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -7180,19 +7194,19 @@ Returns the debits of an address }, { "block_index": 201, - "address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "e1ea6b36f27ff0c4cbc1476616175fd2680d975154cec056e43493e9d497d19b", + "event": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1733401117, + "block_time": 1733662764, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -7209,7 +7223,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address of the feed + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -7242,7 +7256,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + cursor (str, optional) - The last index of the broadcasts to return + Default: `None` + limit: `5` (int, optional) - The maximum number of broadcasts to return @@ -7259,16 +7273,16 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "67b70385472aa508651037e1c33a3d1ad166d940a80039c199d9c553f6f1f87e", + "tx_hash": "3241987309692b6707b4651f9f2a8e60f491efb1911cae2686f47ae12966e8f1", "block_index": 128, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, "text": "Hello, world!", "locked": false, "status": "valid", - "block_time": 1733400811, + "block_time": 1733662470, "fee_fraction_int_normalized": "0.00000000" } ], @@ -7282,7 +7296,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + cursor (str, optional) - The last index of the burns to return + Default: `None` + limit: `5` (int, optional) - The maximum number of burns to return @@ -7298,14 +7312,14 @@ Returns the burns of an address { "result": [ { - "tx_index": 6, - "tx_hash": "9f3523e0cc3228dd58b59ce49ab32a25ab1db610d7bbbfa3b3bcb7981657e49d", + "tx_index": 5, + "tx_hash": "87bf46153fabbf44f202f0538ee531356e5ce77768e094ec9859b5a11380c959", "block_index": 112, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733400740, + "block_time": 1733662402, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" } @@ -7320,7 +7334,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + send_type (enum[str], optional) - The type of sends to return + Default: `all` + Members @@ -7345,17 +7359,17 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 79, - "tx_hash": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "memo1", "fee_paid": 0, - "block_time": 1733401135, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7368,21 +7382,21 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 1, "memo": "memo3", "fee_paid": 0, - "block_time": 1733401135, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -7391,21 +7405,21 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 0, "memo": "memo2", "fee_paid": 0, - "block_time": 1733401135, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -7414,17 +7428,17 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 78, - "tx_hash": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "the memo", "fee_paid": 0, - "block_time": 1733401131, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7437,21 +7451,21 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 78, - "tx_hash": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 1, "memo": "the memo", "fee_paid": 0, - "block_time": 1733401131, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -7469,7 +7483,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qgzqz2xh4qjnj40zukla8cldzcfctsjrezcvhfs` (str, required) - The address to return + + address: `bcrt1qcg7s7t5nr4edjh4znztk65wcrp3quf3h8ky2le` (str, required) - The address to return + send_type (enum[str], optional) - The type of sends to return + Default: `all` + Members @@ -7494,21 +7508,21 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "faf0091f126f7c42bb14cc493058f4e111f6397e618a342d485370e76528210f", + "tx_hash": "d566733813ff14d927b500e4d3c53d459f80cf6147bde7b6bab0bf07548d5d2b", "block_index": 142, - "source": "ea69c5e5b5527f294cc5bdcc4d7682bd96a193294fdf430e233e1e6319b969fe:0", - "destination": "bcrt1qgzqz2xh4qjnj40zukla8cldzcfctsjrezcvhfs", + "source": "eff988c400c90aba10b2dd3e2e1d5e3236a9917793fb5973f7323d76d6c6c545:0", + "destination": "bcrt1qcg7s7t5nr4edjh4znztk65wcrp3quf3h8ky2le", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, - "block_time": 1733400883, + "block_time": 1733662521, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -7526,7 +7540,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + asset: `FAIRMINTC` (str, required) - The asset to return + send_type (enum[str], optional) - The type of sends to return + Default: `all` @@ -7560,7 +7574,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qgzqz2xh4qjnj40zukla8cldzcfctsjrezcvhfs` (str, required) - The address to return + + address: `bcrt1qcg7s7t5nr4edjh4znztk65wcrp3quf3h8ky2le` (str, required) - The address to return + asset: `FAIRMINTC` (str, required) - The asset to return + send_type (enum[str], optional) - The type of sends to return + Default: `all` @@ -7594,7 +7608,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -7621,9 +7635,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 68, - "tx_hash": "5aa06a098c32a7d962a3a553b727c958643c7defc82229855dfd7af2d1c33e3e", + "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "block_index": 194, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -7632,7 +7646,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7642,11 +7656,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733401091, + "block_time": 1733662737, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -7659,9 +7673,9 @@ Returns the dispensers of an address }, { "tx_index": 26, - "tx_hash": "7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf", + "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7670,7 +7684,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7680,7 +7694,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733400835, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7706,7 +7720,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (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` @@ -7717,9 +7731,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf", + "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7728,7 +7742,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7738,7 +7752,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733400835, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7761,7 +7775,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -7779,18 +7793,18 @@ Returns the dispenses of a source { "tx_index": 69, "dispense_index": 0, - "tx_hash": "dc3c01388f0626c636fdb38bd4f1892225a452a33fc6e4c6bf8b44515c1613f4", + "tx_hash": "3d816bb9da3e8382155c32330e0949633245a5b06a4e040498c8290561e28139", "block_index": 194, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5aa06a098c32a7d962a3a553b727c958643c7defc82229855dfd7af2d1c33e3e", + "dispenser_tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "btc_amount": 4000, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7798,7 +7812,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7813,11 +7827,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733401091, + "block_time": 1733662737, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -7827,18 +7841,18 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "11e19771c86268eac82da0f8149f90e91e3405993d31d430aad28765c573c017", + "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7846,7 +7860,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7861,7 +7875,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733400835, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7875,18 +7889,18 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "11ce18e2c3d693be44ec6c643ed676fba42a13c9699d6fe962511a7c4aec1c7c", + "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", "block_index": 131, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7894,7 +7908,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7909,7 +7923,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733400821, + "block_time": 1733662481, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7931,7 +7945,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e` (str, required) - The address to return + + address: `bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -7949,18 +7963,18 @@ Returns the dispenses of a destination { "tx_index": 69, "dispense_index": 0, - "tx_hash": "dc3c01388f0626c636fdb38bd4f1892225a452a33fc6e4c6bf8b44515c1613f4", + "tx_hash": "3d816bb9da3e8382155c32330e0949633245a5b06a4e040498c8290561e28139", "block_index": 194, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5aa06a098c32a7d962a3a553b727c958643c7defc82229855dfd7af2d1c33e3e", + "dispenser_tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "btc_amount": 4000, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7968,7 +7982,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7983,11 +7997,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733401091, + "block_time": 1733662737, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -7997,18 +8011,18 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "11e19771c86268eac82da0f8149f90e91e3405993d31d430aad28765c573c017", + "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8016,7 +8030,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8031,7 +8045,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733400835, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8045,18 +8059,18 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "11ce18e2c3d693be44ec6c643ed676fba42a13c9699d6fe962511a7c4aec1c7c", + "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", "block_index": 131, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8064,7 +8078,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8079,7 +8093,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733400821, + "block_time": 1733662481, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8101,7 +8115,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (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` @@ -8120,18 +8134,18 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "11e19771c86268eac82da0f8149f90e91e3405993d31d430aad28765c573c017", + "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8139,7 +8153,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8154,7 +8168,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733400835, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8168,18 +8182,18 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "11ce18e2c3d693be44ec6c643ed676fba42a13c9699d6fe962511a7c4aec1c7c", + "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", "block_index": 131, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8187,7 +8201,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8202,7 +8216,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733400821, + "block_time": 1733662481, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8224,7 +8238,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e` (str, required) - The address to return + + address: `bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (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` @@ -8243,18 +8257,18 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "11e19771c86268eac82da0f8149f90e91e3405993d31d430aad28765c573c017", + "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8262,7 +8276,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8277,7 +8291,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733400835, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8291,18 +8305,18 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "11ce18e2c3d693be44ec6c643ed676fba42a13c9699d6fe962511a7c4aec1c7c", + "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", "block_index": 131, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8310,7 +8324,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8325,7 +8339,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733400821, + "block_time": 1733662481, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8347,7 +8361,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w` (str, required) - The address to return + + address: `bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9` (str, required) - The address to return + cursor (str, optional) - The last index of the sweeps to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sweeps to return @@ -8364,15 +8378,15 @@ Returns the sweeps of an address "result": [ { "tx_index": 65, - "tx_hash": "3a29fd55a51576c56bec724d5093c46034cbdc50def21513e45f8e1e23b403c4", + "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", "block_index": 190, - "source": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", - "destination": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, - "block_time": 1733401078, + "block_time": 1733662722, "fee_paid_normalized": "0.00600000" } ], @@ -8386,7 +8400,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -8416,14 +8430,14 @@ Returns the issuances of an address "result": [ { "tx_index": 76, - "tx_hash": "7fdb45aa30c67f8098e5bed979d05f6f378645d9f371673143b1eb8a41a0fe3d", + "tx_hash": "1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644", "msg_index": 0, "block_index": 200, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "transfer": false, "callable": false, "call_date": 0, @@ -8437,20 +8451,20 @@ Returns the issuances of an address "description_locked": false, "fair_minting": false, "asset_events": "creation", - "block_time": 1733401114, + "block_time": 1733662760, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "32b571d490d45b45c47eddfd64126d188d0579af96d8457a49d2c368f1d91dcd", + "tx_hash": "af26ce6aa85ff2f672028a3cfecf49ed4d8b2791495b66b8198f5ae9cb182479", "msg_index": 0, "block_index": 156, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "transfer": false, "callable": false, "call_date": 0, @@ -8464,20 +8478,20 @@ Returns the issuances of an address "description_locked": false, "fair_minting": false, "asset_events": "creation", - "block_time": 1733400944, + "block_time": 1733662592, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "06c8be046ada0e9f12d7f83db6a4136703f76ab8b2feef268643a91a55732938", + "tx_hash": "d6711f9495e7f4d3d0267e48487c2329555979680e084182b8a5e06cd65e5b55", "msg_index": 0, "block_index": 155, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "transfer": false, "callable": false, "call_date": 0, @@ -8491,20 +8505,20 @@ Returns the issuances of an address "description_locked": true, "fair_minting": false, "asset_events": "lock_description", - "block_time": 1733400931, + "block_time": 1733662579, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "3c9bc7c8725f3906b3ddab793765a2ea5a18669b3835404ea97cc8efab751bfd", + "tx_hash": "f300f4f1d3c80fd6f7807624d2236e0de7a91528e43ff41eb2cbaddbaceea14e", "msg_index": 0, "block_index": 154, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "transfer": false, "callable": false, "call_date": 0, @@ -8518,20 +8532,20 @@ Returns the issuances of an address "description_locked": false, "fair_minting": false, "asset_events": "creation", - "block_time": 1733400928, + "block_time": 1733662576, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "bffd5728bcd56777f2f063016729ea2c9fdfbe561ddc18cb4b17e9f58308b37e", + "tx_hash": "aafc3281649611fab635e59b621a98cd2e246b3d7da0cb364f0b08c39e28fe94", "msg_index": 0, "block_index": 153, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "transfer": false, "callable": false, "call_date": 0, @@ -8545,7 +8559,7 @@ Returns the issuances of an address "description_locked": false, "fair_minting": false, "asset_events": "creation", - "block_time": 1733400924, + "block_time": 1733662572, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -8560,7 +8574,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The issuer or owner to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -8581,8 +8595,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "owner": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 100000000000, @@ -8590,16 +8604,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": 1733401114, - "last_issuance_block_time": 1733401114, + "first_issuance_block_time": 1733662760, + "last_issuance_block_time": 1733662760, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "owner": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 10000000000, @@ -8607,16 +8621,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": 1733400924, - "last_issuance_block_time": 1733400931, + "first_issuance_block_time": 1733662572, + "last_issuance_block_time": 1733662579, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "owner": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 180, @@ -8624,16 +8638,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": 1733400906, - "last_issuance_block_time": 1733400912, + "first_issuance_block_time": 1733662552, + "last_issuance_block_time": 1733662559, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "owner": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 100000000000, @@ -8641,16 +8655,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": 1733400862, - "last_issuance_block_time": 1733400862, + "first_issuance_block_time": 1733662509, + "last_issuance_block_time": 1733662509, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "owner": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 40, @@ -8658,8 +8672,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": 1733400803, - "last_issuance_block_time": 1733400806, + "first_issuance_block_time": 1733662462, + "last_issuance_block_time": 1733662467, "supply_normalized": "0.00000040" } ], @@ -8673,7 +8687,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The issuer to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The issuer to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -8694,8 +8708,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "owner": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 100000000000, @@ -8703,16 +8717,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": 1733401114, - "last_issuance_block_time": 1733401114, + "first_issuance_block_time": 1733662760, + "last_issuance_block_time": 1733662760, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "owner": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 10000000000, @@ -8720,16 +8734,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": 1733400924, - "last_issuance_block_time": 1733400931, + "first_issuance_block_time": 1733662572, + "last_issuance_block_time": 1733662579, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "owner": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 180, @@ -8737,16 +8751,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": 1733400906, - "last_issuance_block_time": 1733400912, + "first_issuance_block_time": 1733662552, + "last_issuance_block_time": 1733662559, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "owner": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 100000000000, @@ -8754,16 +8768,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": 1733400862, - "last_issuance_block_time": 1733400862, + "first_issuance_block_time": 1733662509, + "last_issuance_block_time": 1733662509, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "owner": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 40, @@ -8771,8 +8785,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": 1733400803, - "last_issuance_block_time": 1733400806, + "first_issuance_block_time": 1733662462, + "last_issuance_block_time": 1733662467, "supply_normalized": "0.00000040" } ], @@ -8786,7 +8800,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The owner to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -8807,8 +8821,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "owner": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 100000000000, @@ -8816,16 +8830,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": 1733401114, - "last_issuance_block_time": 1733401114, + "first_issuance_block_time": 1733662760, + "last_issuance_block_time": 1733662760, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "owner": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 10000000000, @@ -8833,16 +8847,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": 1733400924, - "last_issuance_block_time": 1733400931, + "first_issuance_block_time": 1733662572, + "last_issuance_block_time": 1733662579, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "owner": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 180, @@ -8850,16 +8864,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": 1733400906, - "last_issuance_block_time": 1733400912, + "first_issuance_block_time": 1733662552, + "last_issuance_block_time": 1733662559, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "owner": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 100000000000, @@ -8867,16 +8881,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": 1733400862, - "last_issuance_block_time": 1733400862, + "first_issuance_block_time": 1733662509, + "last_issuance_block_time": 1733662509, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "owner": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 40, @@ -8884,8 +8898,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": 1733400803, - "last_issuance_block_time": 1733400806, + "first_issuance_block_time": 1733662462, + "last_issuance_block_time": 1733662467, "supply_normalized": "0.00000040" } ], @@ -8899,7 +8913,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + type (enum[str], optional) - The type of the transaction to return + Default: `all` + Members @@ -8942,17 +8956,17 @@ Returns the transactions of an address "result": [ { "tx_index": 79, - "tx_hash": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "block_hash": "08462b6f7bae28d20de9cbe0d72d20809c57e4ae6a7682d191b1181298d8fa7f", - "block_time": 1733401135, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "block_hash": "0de537875466fcabb29014860060168e58d39d6640e6be78625455093e5557db", + "block_time": 1733662781, + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a7ca60214e47f1aef613fe24f7a1016c0db484b28038b7789a4ce43e3b03cdafd630b6d4901b417c7f804ff4d40e01a00f03fe166f32ea5bc37719b289ef40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d260d2e34c89b206a0797add1942aa6ca5cd4fdf80f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537:0 4 ", + "utxos_info": " 8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab:0 4 ", "transaction_type": "mpma", "events": [ { @@ -8961,27 +8975,27 @@ Returns the transactions of an address "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "memo": "memo2", "msg_index": 0, "quantity": 10, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "tx_index": 79, - "block_time": 1733401135, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "block_time": 1733401135 + "block_time": 1733662781 }, { "event_index": 679, @@ -8989,27 +9003,27 @@ Returns the transactions of an address "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "tx_index": 79, - "block_time": 1733401135, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "block_time": 1733401135 + "block_time": 1733662781 }, { "event_index": 680, @@ -9017,15 +9031,15 @@ Returns the transactions of an address "params": { "asset": "XCP", "block_index": 203, - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "tx_index": 79, - "block_time": 1733401135, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9035,9 +9049,9 @@ Returns the transactions of an address }, "quantity_normalized": "0.00000010" }, - "tx_hash": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "block_time": 1733401135 + "block_time": 1733662781 } ], "unpacked_data": { @@ -9046,14 +9060,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "quantity": 10, "memo": "memo2", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "quantity": 10, "memo": "memo1", "memo_is_hex": false @@ -9063,17 +9077,17 @@ Returns the transactions of an address }, { "tx_index": 78, - "tx_hash": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_hash": "1798749d9e58ed77798f270fdd906d4e12eb6b5d051d897720917c57b5eab678", - "block_time": 1733401131, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "block_hash": "592b0db0b71afdbe18b1fc5432bbfde15ca979682f0055e3e62c2d56161c659b", + "block_time": 1733662777, + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a7ca60214e47f1aef613fe24f7a1016c0db484b28038b7789a4ce43e3b03cdafd630b6d4901b417c7f804ff4d40e01a00f03fe166f32ea5bc37719b289ef88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d260d2e34c89b206a0797add1942aa6ca5cd4fdf80f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72:0 4 ", + "utxos_info": " 08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe:0 4 ", "transaction_type": "mpma", "events": [ { @@ -9081,24 +9095,24 @@ Returns the transactions of an address "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7" + "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29" }, - "tx_hash": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_time": 1733401131 + "block_time": 1733662777 }, { "event_index": 660, "event": "ORDER_EXPIRATION", "params": { "block_index": 202, - "order_hash": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7", - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "block_time": 1733401131 + "order_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_time": 1733662777 }, - "tx_hash": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_time": 1733401131 + "block_time": 1733662777 }, { "event_index": 666, @@ -9106,27 +9120,27 @@ Returns the transactions of an address "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "memo": "the memo", "msg_index": 0, "quantity": 10, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "tx_index": 78, - "block_time": 1733401131, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_time": 1733401131 + "block_time": 1733662777 }, { "event_index": 667, @@ -9134,27 +9148,27 @@ Returns the transactions of an address "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "memo": "the memo", "msg_index": 1, "quantity": 10, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "tx_index": 78, - "block_time": 1733401131, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_time": 1733401131 + "block_time": 1733662777 }, { "event_index": 668, @@ -9162,15 +9176,15 @@ Returns the transactions of an address "params": { "asset": "XCP", "block_index": 202, - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "memo": "the memo", "msg_index": 2, "quantity": 10, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "tx_index": 78, - "block_time": 1733401131, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9180,9 +9194,9 @@ Returns the transactions of an address }, "quantity_normalized": "0.00000010" }, - "tx_hash": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_time": 1733401131 + "block_time": 1733662777 } ], "unpacked_data": { @@ -9191,14 +9205,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "quantity": 10, "memo": "the memo", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "quantity": 10, "memo": "the memo", "memo_is_hex": false @@ -9208,17 +9222,17 @@ Returns the transactions of an address }, { "tx_index": 77, - "tx_hash": "e1ea6b36f27ff0c4cbc1476616175fd2680d975154cec056e43493e9d497d19b", + "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", "block_index": 201, - "block_hash": "28c4a916c7c4df3c8f9ef35f09a594ef01ce3c23a7dd296890b7735e1abd0663", - "block_time": 1733401117, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "block_hash": "10801583bacc821606b117a03aa3d8edc91e8b6c864a3f72a6dfac845ed9f0a6", + "block_time": 1733662764, + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880a7ca60214e47f1aef613fe24f7a1016c0db484b2", + "data": "02000000178d82231300000000000003e880d260d2e34c89b206a0797add1942aa6ca5cd4fdf", "supported": true, - "utxos_info": " e1ea6b36f27ff0c4cbc1476616175fd2680d975154cec056e43493e9d497d19b:1 2 0", + "utxos_info": " ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6:1 2 0", "transaction_type": "enhanced_send", "events": [ { @@ -9227,26 +9241,26 @@ Returns the transactions of an address "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "memo": null, "quantity": 1000, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "e1ea6b36f27ff0c4cbc1476616175fd2680d975154cec056e43493e9d497d19b", + "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", "tx_index": 77, - "block_time": 1733401117, + "block_time": 1733662764, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "e1ea6b36f27ff0c4cbc1476616175fd2680d975154cec056e43493e9d497d19b", + "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", "block_index": 201, - "block_time": 1733401117 + "block_time": 1733662764 } ], "unpacked_data": { @@ -9255,24 +9269,24 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "memo": null } } }, { "tx_index": 76, - "tx_hash": "7fdb45aa30c67f8098e5bed979d05f6f378645d9f371673143b1eb8a41a0fe3d", + "tx_hash": "1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644", "block_index": 200, - "block_hash": "5e45c722b2a306d7fc782b843fafd7deb8696785ed74c10ab3123efa0b2f34d4", - "block_time": 1733401114, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "block_hash": "3e589a03624f3b3414e98872b3f5818c624e0b28da6495b611bb10403669e396", + "block_time": 1733662760, + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 7fdb45aa30c67f8098e5bed979d05f6f378645d9f371673143b1eb8a41a0fe3d:1 2 0", + "utxos_info": " 1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644:1 2 0", "transaction_type": "issuance", "events": [ { @@ -9283,11 +9297,11 @@ Returns the transactions of an address "asset_longname": null, "asset_name": "MPMASSET", "block_index": 200, - "block_time": 1733401114 + "block_time": 1733662760 }, - "tx_hash": "7fdb45aa30c67f8098e5bed979d05f6f378645d9f371673143b1eb8a41a0fe3d", + "tx_hash": "1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644", "block_index": 200, - "block_time": 1733401114 + "block_time": 1733662760 }, { "event_index": 645, @@ -9304,22 +9318,22 @@ Returns the transactions of an address "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", "transfer": false, - "tx_hash": "7fdb45aa30c67f8098e5bed979d05f6f378645d9f371673143b1eb8a41a0fe3d", + "tx_hash": "1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644", "tx_index": 76, - "block_time": 1733401114, + "block_time": 1733662760, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "7fdb45aa30c67f8098e5bed979d05f6f378645d9f371673143b1eb8a41a0fe3d", + "tx_hash": "1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644", "block_index": 200, - "block_time": 1733401114 + "block_time": 1733662760 } ], "unpacked_data": { @@ -9343,17 +9357,17 @@ Returns the transactions of an address }, { "tx_index": 68, - "tx_hash": "5aa06a098c32a7d962a3a553b727c958643c7defc82229855dfd7af2d1c33e3e", + "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "block_index": 193, - "block_hash": "3319a9d89fc5f4188fabc2e908b2f2eba314aff4a760895c36eb08a98aad76a0", - "block_time": 1733401088, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "block_hash": "10b675298433b89dad6dfa3551134328a0689c8e59eb4c543ae2ddcfcff81544", + "block_time": 1733662733, + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " 5aa06a098c32a7d962a3a553b727c958643c7defc82229855dfd7af2d1c33e3e:1 2 0", + "utxos_info": " ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952:1 2 0", "transaction_type": "dispenser", "events": [ { @@ -9367,17 +9381,17 @@ Returns the transactions of an address "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "satoshirate": 1, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": 0, - "tx_hash": "5aa06a098c32a7d962a3a553b727c958643c7defc82229855dfd7af2d1c33e3e", + "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "tx_index": 68, - "block_time": 1733401088, + "block_time": 1733662733, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -9386,9 +9400,9 @@ Returns the transactions of an address "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "5aa06a098c32a7d962a3a553b727c958643c7defc82229855dfd7af2d1c33e3e", + "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "block_index": 193, - "block_time": 1733401088 + "block_time": 1733662733 } ], "unpacked_data": { @@ -9426,7 +9440,7 @@ Returns the count of each transaction type Returns the dividends distributed by an address + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + cursor (str, optional) - The last index of the assets to return + Default: `None` + limit: `5` (int, optional) - The maximum number of assets to return @@ -9443,19 +9457,19 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "4fd2ee5b0188ba05abe0c9e6636f27435c033150503912be11b900852d02c5be", + "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", "block_index": 146, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", - "block_time": 1733400897, + "block_time": 1733662534, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -9480,7 +9494,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -9507,9 +9521,9 @@ Returns the orders of an address "result": [ { "tx_index": 53, - "tx_hash": "02a353dbb9f33e08f3be241c70d49e0dff41b56367d4b0efc599e15460428f17", + "tx_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", "block_index": 179, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9525,7 +9539,7 @@ Returns the orders of an address "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733400958, + "block_time": 1733662607, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9553,9 +9567,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7", + "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", "block_index": 202, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9571,7 +9585,7 @@ Returns the orders of an address "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733401131, + "block_time": 1733662777, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9599,9 +9613,9 @@ Returns the orders of an address }, { "tx_index": 62, - "tx_hash": "ce89aa7599a93e412c2d5dad24c811373df8567a03584a10021d65c6e4267db3", + "tx_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", "block_index": 188, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9617,7 +9631,7 @@ Returns the orders of an address "status": "cancelled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733401070, + "block_time": 1733662715, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9645,9 +9659,9 @@ Returns the orders of an address }, { "tx_index": 64, - "tx_hash": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa", + "tx_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", "block_index": 211, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -9663,7 +9677,7 @@ Returns the orders of an address "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733401172, + "block_time": 1733662819, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9700,7 +9714,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The source of the fairminter to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -9723,10 +9737,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "db63515001b58a8359f0cc27b1ab9ed2089a9b55ba3e243b595e16bce470f80d", + "tx_hash": "f49987520b37269d66e22c08d64105ad8b3ca4ddd9cf77289a9c701eb7cd17fd", "tx_index": 44, "block_index": 150, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "FREEFAIRMINT", "asset_parent": null, "asset_longname": null, @@ -9750,7 +9764,7 @@ Returns the fairminter by its source "earned_quantity": 180, "paid_quantity": 0, "commission": 0, - "block_time": 1733400912, + "block_time": 1733662559, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", @@ -9762,10 +9776,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "f36e8fc66f8c24a1a293dc64e654ea6a6397e4af304f0259afc45be2ce8a81a4", + "tx_hash": "c08fd3a8aeff123265f1bb8c22f18a72614767838b8dba6a17ddd8de121b8486", "tx_index": 43, "block_index": 147, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9789,7 +9803,7 @@ Returns the fairminter by its source "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733400901, + "block_time": 1733662539, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9798,10 +9812,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "d7195813c5fdcc8e766d293238bb5472ae01e64b49e35ce1d7eb086b0f8a7c76", + "tx_hash": "944f4b25248d9ceabac7ba67e9b8c5cba51f208732d6e10967981e481d445bab", "tx_index": 22, "block_index": 126, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "FAIRMINTD", "asset_parent": null, "asset_longname": null, @@ -9825,7 +9839,7 @@ Returns the fairminter by its source "earned_quantity": 40, "paid_quantity": 34, "commission": 0, - "block_time": 1733400803, + "block_time": 1733662462, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9837,10 +9851,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "cdb93f0490487506061a16e3d7f5c5edf99613c354bca5f281084928ff6c486b", + "tx_hash": "3fe3cc258aff8adebf2c59df508d6e915c65e494545f1973cbd6fac50bf52f7a", "tx_index": 18, "block_index": 122, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "FAIRMINTC", "asset_parent": null, "asset_longname": null, @@ -9864,7 +9878,7 @@ Returns the fairminter by its source "earned_quantity": 19, "paid_quantity": 5, "commission": 0, - "block_time": 1733400779, + "block_time": 1733662438, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9876,10 +9890,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "acfd4175364615c81f41bc02950f169191419d155c7ed33bc90ade3251468f5c", + "tx_hash": "f1650bc5e4862573c5bdcaeee8c79235a3afbbe4a4b1dde5ae00856fc2ec3092", "tx_index": 14, "block_index": 121, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "FAIRMINTB", "asset_parent": null, "asset_longname": null, @@ -9903,7 +9917,7 @@ Returns the fairminter by its source "earned_quantity": 300000000, "paid_quantity": 300000000, "commission": 0, - "block_time": 1733400775, + "block_time": 1733662435, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9915,10 +9929,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "dd780d9b21fd40b6ab8e3a3bff04ea412251733a1cc5da2f61d54766a479bbce", + "tx_hash": "78a0d2b2e6a58b814c45278e7486d9916983dd9996fa320ebd4c77c3efecc28c", "tx_index": 10, "block_index": 116, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "FAIRMINTA", "asset_parent": null, "asset_longname": null, @@ -9942,7 +9956,7 @@ Returns the fairminter by its source "earned_quantity": 10000000000, "paid_quantity": 10000000000, "commission": 0, - "block_time": 1733400755, + "block_time": 1733662417, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9964,7 +9978,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e` (str, required) - The address of the mints to return + + address: `bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -9980,21 +9994,21 @@ Returns the mints by address { "result": [ { - "tx_hash": "522b77834b07eddb154def496281e41bfface940bfc971adaa9d211801ee51c2", + "tx_hash": "f7afb409d53d760cc0e1b6287fb322b46c0cec5b0db19e0db1e4cb8e9acfa06c", "tx_index": 46, "block_index": 150, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", - "fairminter_tx_hash": "db63515001b58a8359f0cc27b1ab9ed2089a9b55ba3e243b595e16bce470f80d", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "fairminter_tx_hash": "f49987520b37269d66e22c08d64105ad8b3ca4ddd9cf77289a9c701eb7cd17fd", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1733400912, + "block_time": 1733662559, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -10003,21 +10017,21 @@ Returns the mints by address "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "60eb47fd63c1703bae51766372e704ac9ad60229b934c13943857df63cda3178", + "tx_hash": "0f816a7124ca2d321d50cb5a756e505409860107a5cdf6818af0c49903109e92", "tx_index": 45, "block_index": 149, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", - "fairminter_tx_hash": "db63515001b58a8359f0cc27b1ab9ed2089a9b55ba3e243b595e16bce470f80d", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "fairminter_tx_hash": "f49987520b37269d66e22c08d64105ad8b3ca4ddd9cf77289a9c701eb7cd17fd", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1733400909, + "block_time": 1733662555, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -10026,21 +10040,21 @@ Returns the mints by address "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "93ae9da63f9c3aea38ed2a79f6f9f7553ca9ab13d6e24cd5569691b1e50a9776", + "tx_hash": "bd8a49f0e5175b0e9376309693c7ab46f23e81ff6da37e173fafd49112e3a002", "tx_index": 23, "block_index": 127, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", - "fairminter_tx_hash": "d7195813c5fdcc8e766d293238bb5472ae01e64b49e35ce1d7eb086b0f8a7c76", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "fairminter_tx_hash": "944f4b25248d9ceabac7ba67e9b8c5cba51f208732d6e10967981e481d445bab", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", - "block_time": 1733400806, + "block_time": 1733662467, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -10049,21 +10063,21 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "986c3b6178af2127694846d9b77c0c3afded99210a8733c3106a65f815590d43", + "tx_hash": "5442ddf25d7b2d0522c3e6ee4f6ea07046e498791dad9a59493585cd95e4a482", "tx_index": 21, "block_index": 125, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", - "fairminter_tx_hash": "cdb93f0490487506061a16e3d7f5c5edf99613c354bca5f281084928ff6c486b", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "fairminter_tx_hash": "3fe3cc258aff8adebf2c59df508d6e915c65e494545f1973cbd6fac50bf52f7a", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", - "block_time": 1733400800, + "block_time": 1733662459, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -10072,21 +10086,21 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "b87839c0f9245d9d8f31d51ab80a414f1635308a4316ad247af71a3e64730fce", + "tx_hash": "9044b8e851b9db643759825189ee18e3a4f8e024073cee1071770547f10d5441", "tx_index": 20, "block_index": 124, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", - "fairminter_tx_hash": "cdb93f0490487506061a16e3d7f5c5edf99613c354bca5f281084928ff6c486b", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "fairminter_tx_hash": "3fe3cc258aff8adebf2c59df508d6e915c65e494545f1973cbd6fac50bf52f7a", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", - "block_time": 1733400786, + "block_time": 1733662456, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -10095,21 +10109,21 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "1c9a8d965bc043dff74d6bb754b4fe962472c44ad758c279ec8eabdfd6297e1a", + "tx_hash": "9a0ee57960e481e4db622af7aada351d92452cbffc33a5a0620d13c09b3fb924", "tx_index": 19, "block_index": 123, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", - "fairminter_tx_hash": "cdb93f0490487506061a16e3d7f5c5edf99613c354bca5f281084928ff6c486b", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "fairminter_tx_hash": "3fe3cc258aff8adebf2c59df508d6e915c65e494545f1973cbd6fac50bf52f7a", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", - "block_time": 1733400782, + "block_time": 1733662442, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -10118,21 +10132,21 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "cc855378568553c43f0bc5ba732fb98d5cc47e9ae792439318ce58a460d2f43b", + "tx_hash": "393205372ad51ba0bcf4bc28968fa4d1453aab18ae0c057a72eb47ab5a60a5b1", "tx_index": 15, "block_index": 118, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", - "fairminter_tx_hash": "acfd4175364615c81f41bc02950f169191419d155c7ed33bc90ade3251468f5c", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "fairminter_tx_hash": "f1650bc5e4862573c5bdcaeee8c79235a3afbbe4a4b1dde5ae00856fc2ec3092", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", - "block_time": 1733400764, + "block_time": 1733662424, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -10141,21 +10155,21 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "bed21a21c3c537985da4eba9b5bad1e0617eff0b08bc23141bf617b52680e66c", + "tx_hash": "25af25186fc3e49b496ad5ee19fed27ef2a5109e584442cddd3eb85b6acdcadd", "tx_index": 11, "block_index": 114, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", - "fairminter_tx_hash": "dd780d9b21fd40b6ab8e3a3bff04ea412251733a1cc5da2f61d54766a479bbce", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "fairminter_tx_hash": "78a0d2b2e6a58b814c45278e7486d9916983dd9996fa320ebd4c77c3efecc28c", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", - "block_time": 1733400749, + "block_time": 1733662411, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -10174,7 +10188,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e` (str, required) - The address of the mints to return + + address: `bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (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` @@ -10202,7 +10216,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `10311f341af41ef60d1f4929a09b23d1d9cc15a94a0aa0e9dbb58bbabe3661c9:0` (str, required) - The utxo to return + + utxo: `bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -10221,12 +10235,12 @@ Returns the balances of an utxo "asset": "UTXOASSET", "asset_longname": null, "quantity": 1000000000, - "utxo": "10311f341af41ef60d1f4929a09b23d1d9cc15a94a0aa0e9dbb58bbabe3661c9:0", - "utxo_address": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "utxo": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0", + "utxo_address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "divisible": true, "locked": false }, @@ -10286,8 +10300,8 @@ By default the default value of the `encoding` parameter detailed above is `auto Composes a transaction to issue a bet against a feed. + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address that will make the bet - + feed_address: `bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will make the bet + + feed_address: `bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (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) @@ -10359,7 +10373,7 @@ Composes a transaction to issue a bet against a feed. Composes a transaction to broadcast textual and numerical information to the network. + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + timestamp: `4003903985` (int, required) - The timestamp of the broadcast, in Unix time + value: `100` (float, required) - Numerical value of the broadcast + fee_fraction: `0.05` (float, required) - How much of every bet on this feed should go to its operator; a fraction of 1, (i.e. 0.05 is five percent) @@ -10419,7 +10433,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -10432,7 +10446,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "02000000000101dce4afec4c56f3c4278e60334f9ca7b4751b1b64ce76df6088bd710fd51fc8fc00000000160014afc9133d2aec0f83acde633978c6a539c97d3efbffffffff0200000000000000002b6a295aaf0af0529ad6acf6a3250bae58ddc05465e5f535911d5ccfe951a156dd479f54f7dcf9fd46f69a4800f2052a01000000160014afc9133d2aec0f83acde633978c6a539c97d3efb02000000000000" + "rawtransaction": "02000000000101924d72a09461c8a24f938092ec2c38ee65a0860665187ebc36ee0a773dcb312e00000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff0200000000000000002b6a29c1f068038c28abd4c1a685dad029f822c87e68e49f72de9cdd2ed2c905060888251c4114f8a9594d0300f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } } ``` @@ -10442,8 +10456,8 @@ Composes a transaction to broadcast textual and numerical information to the net Composes a transaction to pay for a BTC order match. + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address that will be sending the payment - + order_match_id: `1e58a9ad4a24f44528e83d1606263c6c658c0d6c24a177675ca62f32dabc03a4_136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031` (str, required) - The ID of the order match to pay for + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be sending the payment + + order_match_id: `c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076_97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308` (str, required) - The ID of the order match to pay for + encoding (str, optional) - The encoding method to use + Default: `auto` + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis) @@ -10499,17 +10513,17 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "order_match_id": "1e58a9ad4a24f44528e83d1606263c6c658c0d6c24a177675ca62f32dabc03a4_136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "order_match_id": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076_97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590b1e58a9ad4a24f44528e83d1606263c6c658c0d6c24a177675ca62f32dabc03a4136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "data": "434e5452505254590bc3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c40940507697a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999999000, "btc_fee": 0, - "rawtransaction": "02000000000101ae7b006bd8106eba002eff2aaa7d07a5c921d89f621cab846d16eaf5cda5017000000000160014afc9133d2aec0f83acde633978c6a539c97d3efbffffffff03e80300000000000016001402e780f8cca783d6f3f0ad2eb3311734106cbe5500000000000000004b6a497bd67f60bd2dc9ede80966f026822b8a65109d829368410d8e5fc1fac2a1d262185f02a5f6ba719bb22c13b205689e13b0b2c6c0f4d7d2dd31c71699a12d7335dcbf786f5a04e67c8d18ee052a01000000160014afc9133d2aec0f83acde633978c6a539c97d3efb02000000000000" + "rawtransaction": "0200000000010125aba795909c8b9f384c4ebff2c61f344c437c974c6b3277de4e1b644480f30200000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff03e80300000000000016001447e5951068f42b237b00d9525db4515fd642e8e700000000000000004b6a498d7fd3aeb2357e4c9dcb457b6a9b8353d683928a73043d4b4710b8657a90cf67bc673b73d3ad872313602266cd30e3d901f0806a34111b0fc9f9c6c1eee6965d1e6eadb1af6f76e10118ee052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } } ``` @@ -10519,7 +10533,7 @@ Composes a transaction to pay for a BTC order match. Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, possible between blocks 278310 and 283810; on testnet it is still available). + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address with the BTC to burn + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address with the BTC to burn + quantity: `1000` (int, required) - The quantities of BTC to burn (in satoshis, hence integer) (1 BTC maximum burn per address) + overburn (bool, optional) - Whether to allow the burn to exceed 1 BTC for the address + Default: `False` @@ -10578,7 +10592,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "quantity": 1000, "overburn": false, "skip_validation": false @@ -10589,7 +10603,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999999000, "btc_fee": 0, - "rawtransaction": "02000000000101e8af4ecbf4200d285a7f9fc2a429f5eb41f0e753315e4eab973c38d090645d2700000000160014afc9133d2aec0f83acde633978c6a539c97d3efbffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac18ee052a01000000160014afc9133d2aec0f83acde633978c6a539c97d3efb02000000000000" + "rawtransaction": "02000000000101ef341ce05ee7aa7a2ce0be2425da212c732d47d2b295fb2a53b04af584e3913800000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac18ee052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } } ``` @@ -10599,8 +10613,8 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss Composes a transaction to cancel an open order or bet. + Parameters - + address: `bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308` (str, required) - The hash of the order/bet to be cancelled + encoding (str, optional) - The encoding method to use + Default: `auto` + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis) @@ -10656,17 +10670,17 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "offer_hash": "136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "offer_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "skip_validation": false }, "name": "cancel", - "data": "434e54525052545946136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "data": "434e5452505254594697a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "btc_in": 4949950000, "btc_out": 0, "btc_change": 4949950000, "btc_fee": 0, - "rawtransaction": "0200000000010176061e00cef327ef1c4df9ef35651d620b91d9c972fc53049d685dc933681f17010000001600140e477ee266319f51493749f804b4e82edec447a0ffffffff0200000000000000002b6a2972e4d53ad66f5dc4f9377e375fe7ef54c9561f43b321fd7bb8443f84b50fc7ffc345a2c40fc22a677f303e0a27010000001600140e477ee266319f51493749f804b4e82edec447a002000000000000" + "rawtransaction": "02000000000101d854173e9ed4905322fd15252603e6fb0fa74ece29662dd694bf7c5d46db34ed01000000160014ca742dc81cac024b4cbde6236e1c599304258b4cffffffff0200000000000000002b6a29f7dae01011d34722e465f0868d3df317e5c5199fb830e35626de317c584150be3114face31c0a76fc8303e0a2701000000160014ca742dc81cac024b4cbde6236e1c599304258b4c02000000000000" } } ``` @@ -10676,7 +10690,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be sending the asset to be destroyed + asset: `XCP` (str, required) - The asset to be destroyed + quantity: `1000` (int, required) - The quantity of the asset to be destroyed (in satoshis, hence integer) + tag: `"bugs!"` (str, required) - A tag for the destruction @@ -10735,7 +10749,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -10755,7 +10769,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "02000000000101c8c66b97a7c7d1a9dd7b62e874889ebb983ac8e8f1adf2527919fdd5336ea7ce00000000160014afc9133d2aec0f83acde633978c6a539c97d3efbffffffff020000000000000000226a20918a5a09c8685441bd7319e9d2efa16e194484a381b731f99e7a9adbd4da491800f2052a01000000160014afc9133d2aec0f83acde633978c6a539c97d3efb02000000000000" + "rawtransaction": "020000000001012ac40fdeebf7c01a2698f5b5e7eea0010fbdde64b345f0a16732c59b93419efd00000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000226a2091e0960c55d817b983e462979b739182d16cb862cec1127feab9baa6875c8fff00f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } } ``` @@ -10765,7 +10779,7 @@ Composes a transaction to destroy a quantity of an asset. Composes a transaction to opens or closes a dispenser for a given asset at a given rate of main chain asset (BTC). Escrowed quantity on open must be equal or greater than give_quantity. It is suggested that you escrow multiples of give_quantity to ease dispenser operation. + Parameters - + address: `bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + asset: `XCP` (str, required) - The asset or subasset to dispense + give_quantity: `1000` (int, required) - The quantity of the asset to dispense (in satoshis, hence integer) + escrow_quantity: `1000` (int, required) - The quantity of the asset to reserve for this dispenser (in satoshis, hence integer) @@ -10830,7 +10844,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -10855,7 +10869,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949873799, "btc_fee": 0, - "rawtransaction": "02000000000101e56e956da8dc046d59234d368bb192cad0294211336204bbf633719825b5c2cd0200000016001462aa05fe817656402080196c0f0e19624504705effffffff0200000000000000002c6a2a01b28b007b44270bcb2e43fda4501c384f5ad1006b5aa802ca668d26f7c4fc53de8944fc1e548d2b5a86871409270100000016001462aa05fe817656402080196c0f0e19624504705e02000000000000" + "rawtransaction": "020000000001018ba93f0a63356315c790b72f8b7e31503ec8c37b2213ce56abaa0fd3102b1424020000001600140fa13933cab9aaea4cec2b6194cc224402aa6efeffffffff0200000000000000002c6a2ae136236b460653c4983ef1fd9789b3859175df5c946229068f3aa8b3b370ec456bad04d6778e55c73cf587140927010000001600140fa13933cab9aaea4cec2b6194cc224402aa6efe02000000000000" } } ``` @@ -10865,7 +10879,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv Composes a transaction to issue a dividend to holders of a given asset. + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + quantity_per_unit: `1` (int, required) - The amount of dividend_asset rewarded (in satoshis, hence integer) + asset: `MYASSETA` (str, required) - The asset or subasset that the dividends are being rewarded on + dividend_asset: `XCP` (str, required) - The asset or subasset that the dividends are paid in @@ -10924,7 +10938,7 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "quantity_per_unit": 1, "asset": "MYASSETA", "dividend_asset": "XCP", @@ -10932,7 +10946,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -10951,7 +10965,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "020000000001019539e5fff2a563eb936befd0f53dbebee1b7c2db27a9d3d4cf3fc47b2f1f525a00000000160014afc9133d2aec0f83acde633978c6a539c97d3efbffffffff020000000000000000236a2166dbc07dcd2b27c9f26fb893b78a63d282053e90dfe3e976ba20fbb6a2239c4b6300f2052a01000000160014afc9133d2aec0f83acde633978c6a539c97d3efb02000000000000" + "rawtransaction": "0200000000010119223da59577f02cdf31d254f84c7868f7156ac26b2c3242e18c5ce0afe91db500000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000236a21bf2eb869a55c3e60dce8f1e8c72d87a431653b501e8053af28e8bac1ae9c65793500f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } } ``` @@ -10961,10 +10975,10 @@ Composes a transaction to issue a dividend to holders of a given asset. Composes a transaction to Issue a new asset, issue more of an existing asset, lock an asset, reset existing supply, or transfer the ownership of an asset. + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be issuing or transfering the asset + asset: `XCPTEST` (str, required) - The assets to issue or transfer. This can also be a subasset longname for new subasset issuances + quantity: `1000` (int, required) - The quantity of the asset to issue (set to 0 if transferring an asset) (in satoshis, hence integer) - + transfer_destination: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, optional) - The address to receive the asset + Default: `None` + divisible (bool, optional) - Whether this asset is divisible or not (if a transfer, this value must match the value specified when the asset was originally issued) + Default: `True` @@ -11029,10 +11043,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "transfer_destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "lock": false, "reset": false, @@ -11046,7 +11060,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999999454, "btc_fee": 0, - "rawtransaction": "0200000000010160119bd467ee8fcab50364a4617f333d96d2e22c263716ef1fa1675a53d79c9600000000160014afc9133d2aec0f83acde633978c6a539c97d3efbffffffff032202000000000000160014afc9133d2aec0f83acde633978c6a539c97d3efb0000000000000000236a21c5bfc680ddcefba95b8760596ebadea9faeedec6f73108bdc89e13bdbf53b75c4fdeef052a01000000160014afc9133d2aec0f83acde633978c6a539c97d3efb02000000000000" + "rawtransaction": "02000000000101ab9a4793ec37e972e246f834cee22b215ee18a2e7de88553a263a50070c7dc3100000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff032202000000000000160014a0a90e6acc5b35a094a931d109e64b559674fb840000000000000000236a2138872d422e7694fa97d233e6740fc804551c12dbd0f6742a238caa5d6c8774d576deef052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } } ``` @@ -11056,9 +11070,9 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo Composes a transaction to send multiple payments to multiple addresses. + Parameters - + address: `bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,FAIRMINTC` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp,bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla,bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -11123,16 +11137,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", 1 ], [ "FAIRMINTC", - "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", 2 ] ], @@ -11141,12 +11155,12 @@ Composes a transaction to send multiple payments to multiple addresses. "skip_validation": false }, "name": "mpma", - "data": "434e54525052545903000280afc9133d2aec0f83acde633978c6a539c97d3efb80a7ca60214e47f1aef613fe24f7a1016c0db484b24000003ceebf84b91000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280a0a90e6acc5b35a094a931d109e64b559674fb8480d260d2e34c89b206a0797add1942aa6ca5cd4fdf4000003ceebf84b91000000000000000240000000000000004000000000000000100", "btc_in": 4949808000, "btc_out": 2000, "btc_change": 4949806000, "btc_fee": 0, - "rawtransaction": "020000000001015cbb61979cbb5dd30ee2025960cf73b5c0b4a1c4d81be2cf2a5de6a2631bcd4703000000160014a7ca60214e47f1aef613fe24f7a1016c0db484b2ffffffff03e80300000000000069512102f6edf70bcced9b6943eeaf7fd571f38680bf7eb08e1cfcd6fe31588fd4d079722102cc5656c512ed444a5c4503141c5f902ba69510f8fed5df509e6d8790715fa0c4210393758cb0a10f2da5988b6aac839661395130af61c3668daa5d0621d1ced9b26d53aee80300000000000069512103e9edf70bcced9b6943fdaf7d55de3a95bdb192bf0db022b5c74d9e2aed19044a2103f2add762d88d65041bb4ade20fa1b4dc07947cf54a516d109e6dbb7ecedb19ae210393758cb0a10f2da5988b6aac839661395130af61c3668daa5d0621d1ced9b26d53aeb00b082701000000160014a7ca60214e47f1aef613fe24f7a1016c0db484b202000000000000" + "rawtransaction": "02000000000101cfaf6940994f3be90705a5a2849361ba870bf35d6d15b4e377d3bb8cdb847d5c03000000160014d260d2e34c89b206a0797add1942aa6ca5cd4fdfffffffff03e803000000000000695121033d9b8157b929434e54cde851f7659e44eb253e7aaa820bbcaa6f245009a00db7210301654169ce49901de71854042d3eaae893f45ef15a74f0459b6dbac4fc337a8821032a0b9b5c054cfd3455e6bd304ee97b1a1fb37c7fe90d392c05114eef7d1cc09653aee80300000000000069512103229b8157b929434e54dee85377c5374a81cd654f0a16a28d7b62c21b5c3679202103fae1c0bbae9b73516eaa52a4544477f1d15e3254973b2f059b6d862a43b7c33821032a0b9b5c054cfd3455e6bd304ee97b1a1fb37c7fe90d392c05114eef7d1cc09653aeb00b082701000000160014d260d2e34c89b206a0797add1942aa6ca5cd4fdf02000000000000" } } ``` @@ -11156,7 +11170,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + give_asset: `XCP` (str, required) - The asset that will be given in the trade + give_quantity: `1000` (int, required) - The quantity of the asset that will be given (in satoshis, hence integer) + get_asset: `BURNER` (str, required) - The asset that will be received in the trade @@ -11218,7 +11232,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "BURNER", @@ -11236,7 +11250,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -11250,7 +11264,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "0200000000010150c17084ea0202f9d605f7fa9d6c60d20396c55b8013614b34f4848d467fd9d500000000160014afc9133d2aec0f83acde633978c6a539c97d3efbffffffff020000000000000000356a332319520885903a7b4b66818da87becf9d9e7c5dcf9c77c91730d0b5f70d867e128e6a87a7200b95898563de309516a8c51be4200f2052a01000000160014afc9133d2aec0f83acde633978c6a539c97d3efb02000000000000" + "rawtransaction": "02000000000101df7d6fd911e1547352154244e36a896a2b8077d35da4c69ec4e6821a07112fc800000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000356a33361b6c0c54044c46f87e5bf78e109b5eb37250d937c29a7a320a81baf09eb66312aaa6b9ef81b7b61f218ee8455e2567d22b2600f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } } ``` @@ -11260,8 +11274,8 @@ Composes a transaction to place an order on the distributed exchange. Composes a transaction to send a quantity of an asset to another address. + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e` (str, required) - The address that will be receiving the asset + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - The address that will be receiving the asset + asset: `XCP` (str, required) - The asset or subasset to send + quantity: `1000` (int, required) - The quantity of the asset to send (in satoshis, hence integer) + memo (str, optional) - The Memo associated with this transaction @@ -11325,8 +11339,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "quantity": 1000, "memo": null, @@ -11343,12 +11357,12 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880a7ca60214e47f1aef613fe24f7a1016c0db484b2", + "data": "434e54525052545902000000000000000100000000000003e880d260d2e34c89b206a0797add1942aa6ca5cd4fdf", "btc_in": 5000000000, "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "02000000000101903cb90e1da3d30915670bb8cd37af74dbe97021aaf432e5e7c0c80a309464bc00000000160014afc9133d2aec0f83acde633978c6a539c97d3efbffffffff020000000000000000306a2ee5f1bae986bc285116c5a01aef4564dd59a7630adff7d2f8977777cf168ae86a7e00724f9a29e975f37d1079508e00f2052a01000000160014afc9133d2aec0f83acde633978c6a539c97d3efb02000000000000" + "rawtransaction": "02000000000101d30a122e70bbcfc68361c85f3a50c18060c0e32c3a3f7f4b5bb6bb3481cfee6600000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000306a2e8fcb24bf55bc4978d9a430f9b41f1a04b346404d61e3d16305958566dc7055705582269294f8ec2ebb0b1e8d956400f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } } ``` @@ -11358,8 +11372,8 @@ Composes a transaction to send a quantity of an asset to another address. Composes a transaction to Sends all assets and/or transfer ownerships to a destination address. + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address that will be sending - + destination: `bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be sending + + destination: `bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - The address to receive the assets and/or ownerships + flags: `7` (int, required) - An OR mask of flags indicating how the sweep should be processed. Possible flags are: - FLAG_BALANCES: (integer) 1, specifies that all balances should be transferred. - FLAG_OWNERSHIP: (integer) 2, specifies that all ownerships should be transferred. - FLAG_BINARY_MEMO: (integer) 4, specifies that the memo is in binary/hex form. + memo: `FFFF` (str, required) - The Memo associated with this transaction in hex format + encoding (str, optional) - The encoding method to use @@ -11417,19 +11431,19 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480a7ca60214e47f1aef613fe24f7a1016c0db484b207ffff", + "data": "434e5452505254590480d260d2e34c89b206a0797add1942aa6ca5cd4fdf07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "0200000000010176ccbb0f26bf75c151f4de6eaccba83f62a46d88b7c72cc206397b72e4ed7bb400000000160014afc9133d2aec0f83acde633978c6a539c97d3efbffffffff020000000000000000236a21c27a616a3e0849646c1d781697f4bc8fc813279f4950d33c21375b659caf02961100f2052a01000000160014afc9133d2aec0f83acde633978c6a539c97d3efb02000000000000" + "rawtransaction": "02000000000101e5ca9aa28f0d76341d561b6074ff4734ba5be20a53b0b3d39df6b6f8879b493100000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000236a21a8a573db466a5d914540aad096f0997de899868a65f4360cf638b01cd7f0041b3b00f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } } ``` @@ -11439,8 +11453,8 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti Composes a transaction to send BTC to a dispenser. + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g` (str, required) - The dispenser that will be receiving the asset + quantity: `1000` (int, required) - The quantity of BTC to send (in satoshis, hence integer) + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -11497,8 +11511,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "quantity": 1000, "skip_validation": false }, @@ -11508,7 +11522,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4999999000, "btc_fee": 0, - "rawtransaction": "0200000000010156ff163fe34148a8c91d7889857fc128004a54c8bd5b7c963aeb3febc84dd6c100000000160014afc9133d2aec0f83acde633978c6a539c97d3efbffffffff03e8030000000000001600144ff4d40e01a00f03fe166f32ea5bc37719b289ef00000000000000000c6a0a8eed48f6471d219734c118ee052a01000000160014afc9133d2aec0f83acde633978c6a539c97d3efb02000000000000" + "rawtransaction": "02000000000101215f231861e5b622b58e6b2abee10cad2699238d105dff1a04abdc554d6c835b00000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff03e803000000000000160014287acd9953ee89fa6b938a43fd6515acb4fd1e0f00000000000000000c6a0ab5093e6d20cfa6727b4418ee052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } } ``` @@ -11518,7 +11532,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address that will be issuing the asset + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be issuing the asset + asset: `MYASSET` (str, required) - The asset to issue + asset_parent (str, optional) - The parent asset of the asset to issue + Default: `` @@ -11607,7 +11621,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -11639,7 +11653,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "020000000001013ea5ec3d9c63bb9730f33c4ffcd2a17cabe20aa4a07bd13576776e7844d8614800000000160014afc9133d2aec0f83acde633978c6a539c97d3efbffffffff020000000000000000316a2fdc7d6db82f7d97aa5c4f2704d0a543b008b8817ab0c5466e5bc96cc1f08830181583bda8fa0055f705476f8625d47600f2052a01000000160014afc9133d2aec0f83acde633978c6a539c97d3efb02000000000000" + "rawtransaction": "020000000001017c751df4631de1c9616aec45e7634a049c92b31ce9d74ca78df32c3fa09629af00000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000316a2f2b660474faa29eb9c5ccae18ce3b8e4fc0526cc81b281186cf19754fc822748732d2ab25928b3cdc59830bbb095c3e00f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } } ``` @@ -11649,7 +11663,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. Composes a transaction to mint a quantity of an asset using the FairMinter protocol. + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address that will be minting the asset + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be minting the asset + asset: `OPENFAIR` (str, required) - The asset to mint + quantity (int, optional) - The quantity of the asset to mint (in satoshis, hence integer) + Default: `0` @@ -11708,14 +11722,14 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "OPENFAIR", "quantity": 0, "skip_validation": false, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "divisible": true, "locked": false }, @@ -11727,7 +11741,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "020000000001018e2126ab519009d964eabe1788b073d2531ccd9c915351e6bf29f0aee50257eb00000000160014afc9133d2aec0f83acde633978c6a539c97d3efbffffffff020000000000000000156a1381df37749a4b3cb50ac345dca4cf744e2dd2ee00f2052a01000000160014afc9133d2aec0f83acde633978c6a539c97d3efb02000000000000" + "rawtransaction": "02000000000101ce2278c985d555c1c97a5d9608b5e76e53af29de8da614a3fa5ba3e1f8748a9700000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000156a13ea1510453fd7721e4c0fd34d6760c74a07fb4d00f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } } ``` @@ -11737,7 +11751,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address from which the assets are attached + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) + destination_vout (str, optional) - The vout of the destination output @@ -11797,7 +11811,7 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -11817,7 +11831,7 @@ Composes a transaction to attach assets from an address to UTXO. "btc_out": 10000, "btc_change": 4999990000, "btc_fee": 0, - "rawtransaction": "020000000001017029a2004721e1fe11f557a9f15fbd62da7393785a42210a85fd8c61c7a5329900000000160014afc9133d2aec0f83acde633978c6a539c97d3efbffffffff031027000000000000160014afc9133d2aec0f83acde633978c6a539c97d3efb0000000000000000146a123650944f244f53d78cfc9478b1335944b16ef0ca052a01000000160014afc9133d2aec0f83acde633978c6a539c97d3efb02000000000000" + "rawtransaction": "02000000000101a083620385610e58938234512b566b6b433db4be019147169c8eb57543417e8b00000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff031027000000000000160014a0a90e6acc5b35a094a931d109e64b559674fb840000000000000000146a12aeb7b16f0af5ae303e8ba37097a47641614df0ca052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } } ``` @@ -11827,8 +11841,8 @@ Composes a transaction to attach assets from an address to UTXO. Composes a transaction to detach assets from UTXO to an address. + Parameters - + utxo: `10311f341af41ef60d1f4929a09b23d1d9cc15a94a0aa0e9dbb58bbabe3661c9:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + + utxo: `bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -11885,17 +11899,17 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "10311f341af41ef60d1f4929a09b23d1d9cc15a94a0aa0e9dbb58bbabe3661c9:0", - "destination": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "skip_validation": false }, "name": "detach", - "data": "434e54525052545966626372743171346c79337830663261733863387478377676756833333439383879683630686d716c68327870", + "data": "434e54525052545966626372743171357a357375366b767476363670393966783867736e656a74326b743866377579673961736c61", "btc_in": 10000, "btc_out": 0, "btc_change": 10000, "btc_fee": 0, - "rawtransaction": "02000000000101c96136beba8bb5dbe9a00a4aa915ccd9d1239ba029491f0df61ef41a341f31100000000016001402e780f8cca783d6f3f0ad2eb3311734106cbe55ffffffff020000000000000000376a35aec817e2c3877646f32fca88a6af6f3a18792b53a39ccbf695d517ca0274ec8f99e06c8724b13b0ca69789f5e533834b1a815bad4b102700000000000016001402e780f8cca783d6f3f0ad2eb3311734106cbe5502000000000000" + "rawtransaction": "02000000000101103306445e9e2206e7e480f5849f2ab7d012ec7c728afc41bfc478783a198cbc0000000016001447e5951068f42b237b00d9525db4515fd642e8e7ffffffff020000000000000000376a353a36eec8bd08a6a4377ee7e6e279b070abec5f17aaa20991607f3e514a2f67bec0ba05de90f349c74207f20b9f942694aff01abd43102700000000000016001447e5951068f42b237b00d9525db4515fd642e8e702000000000000" } } ``` @@ -11905,8 +11919,8 @@ Composes a transaction to detach assets from UTXO to an address. Composes a transaction like a send but for moving from one UTXO to another, with the destination is specified as an address. + Parameters - + utxo: `10311f341af41ef60d1f4929a09b23d1d9cc15a94a0aa0e9dbb58bbabe3661c9:0` (str, required) - The utxo from which the assets are moved - + destination: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - the address for which the destination utxo will be created + + utxo: `bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0` (str, required) - The utxo from which the assets are moved + + destination: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - the address for which the destination utxo will be created + encoding (str, optional) - The encoding method to use + Default: `auto` + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis) @@ -11962,8 +11976,8 @@ Composes a transaction like a send but for moving from one UTXO to another, with { "result": { "params": { - "source": "10311f341af41ef60d1f4929a09b23d1d9cc15a94a0aa0e9dbb58bbabe3661c9:0", - "destination": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "skip_validation": false }, "name": "move", @@ -11972,7 +11986,7 @@ Composes a transaction like a send but for moving from one UTXO to another, with "btc_out": 10000, "btc_change": null, "btc_fee": 0, - "rawtransaction": "02000000000101c96136beba8bb5dbe9a00a4aa915ccd9d1239ba029491f0df61ef41a341f31100000000016001402e780f8cca783d6f3f0ad2eb3311734106cbe55ffffffff011027000000000000160014afc9133d2aec0f83acde633978c6a539c97d3efb02000000000000" + "rawtransaction": "02000000000101103306445e9e2206e7e480f5849f2ab7d012ec7c728afc41bfc478783a198cbc0000000016001447e5951068f42b237b00d9525db4515fd642e8e7ffffffff011027000000000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } } ``` @@ -12020,8 +12034,8 @@ Returns the valid assets "asset": "OPENFAIR", "asset_id": "117132633401", "asset_longname": null, - "issuer": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "owner": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "owner": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "divisible": true, "locked": false, "supply": 0, @@ -12029,16 +12043,16 @@ Returns the valid assets "description_locked": false, "first_issuance_block_index": 232, "last_issuance_block_index": 232, - "first_issuance_block_time": 1733401264, - "last_issuance_block_time": 1733401264, + "first_issuance_block_time": 1733662942, + "last_issuance_block_time": 1733662942, "supply_normalized": "0.00000000" }, { "asset": "PREMINT", "asset_id": "4837764613", "asset_longname": null, - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", - "owner": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "owner": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": false, "supply": 0, @@ -12046,16 +12060,16 @@ Returns the valid assets "description_locked": false, "first_issuance_block_index": 227, "last_issuance_block_index": 229, - "first_issuance_block_time": 1733401248, - "last_issuance_block_time": 1733401255, + "first_issuance_block_time": 1733662914, + "last_issuance_block_time": 1733662921, "supply_normalized": "0.00000000" }, { "asset": "STARTNOW", "asset_id": "150450094622", "asset_longname": null, - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", - "owner": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "owner": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": false, "supply": 0, @@ -12063,16 +12077,16 @@ Returns the valid assets "description_locked": false, "first_issuance_block_index": 225, "last_issuance_block_index": 226, - "first_issuance_block_time": 1733401241, - "last_issuance_block_time": 1733401245, + "first_issuance_block_time": 1733662907, + "last_issuance_block_time": 1733662911, "supply_normalized": "0.00000000" }, { "asset": "EXPANSIVE", "asset_id": "1024679892006", "asset_longname": null, - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", - "owner": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "owner": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": false, "supply": 0, @@ -12080,16 +12094,16 @@ Returns the valid assets "description_locked": false, "first_issuance_block_index": 222, "last_issuance_block_index": 223, - "first_issuance_block_time": 1733401221, - "last_issuance_block_time": 1733401224, + "first_issuance_block_time": 1733662886, + "last_issuance_block_time": 1733662889, "supply_normalized": "0.00000000" }, { "asset": "BURNER", "asset_id": "21328597", "asset_longname": null, - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", - "owner": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "owner": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true, "supply": 100000000, @@ -12097,8 +12111,8 @@ Returns the valid assets "description_locked": false, "first_issuance_block_index": 220, "last_issuance_block_index": 221, - "first_issuance_block_time": 1733401214, - "last_issuance_block_time": 1733401218, + "first_issuance_block_time": 1733662879, + "last_issuance_block_time": 1733662883, "supply_normalized": "1.00000000" } ], @@ -12124,8 +12138,8 @@ Returns an asset by its name "asset": "BURNER", "asset_id": "21328597", "asset_longname": null, - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", - "owner": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "owner": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true, "supply": 100000000, @@ -12133,8 +12147,8 @@ Returns an asset by its name "description_locked": false, "first_issuance_block_index": 220, "last_issuance_block_index": 221, - "first_issuance_block_time": 1733401214, - "last_issuance_block_time": 1733401218, + "first_issuance_block_time": 1733662879, + "last_issuance_block_time": 1733662883, "supply_normalized": "1.00000000" } } @@ -12169,7 +12183,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -12178,14 +12192,14 @@ Returns the asset balances "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, "quantity_normalized": "0.80000000" }, { - "address": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -12194,7 +12208,7 @@ Returns the asset balances "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -12212,7 +12226,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -12222,7 +12236,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "asset_longname": null, "quantity": 82599966196, @@ -12275,9 +12289,9 @@ Returns the orders of an asset "result": [ { "tx_index": 53, - "tx_hash": "02a353dbb9f33e08f3be241c70d49e0dff41b56367d4b0efc599e15460428f17", + "tx_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", "block_index": 179, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12293,7 +12307,7 @@ Returns the orders of an asset "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733400958, + "block_time": 1733662607, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12321,9 +12335,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7", + "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", "block_index": 202, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12339,7 +12353,7 @@ Returns the orders of an asset "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733401131, + "block_time": 1733662777, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12367,9 +12381,9 @@ Returns the orders of an asset }, { "tx_index": 62, - "tx_hash": "ce89aa7599a93e412c2d5dad24c811373df8567a03584a10021d65c6e4267db3", + "tx_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", "block_index": 188, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12385,7 +12399,7 @@ Returns the orders of an asset "status": "cancelled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733401070, + "block_time": 1733662715, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12413,9 +12427,9 @@ Returns the orders of an asset }, { "tx_index": 64, - "tx_hash": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa", + "tx_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", "block_index": 211, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -12431,7 +12445,7 @@ Returns the orders of an asset "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733401172, + "block_time": 1733662819, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12459,9 +12473,9 @@ Returns the orders of an asset }, { "tx_index": 56, - "tx_hash": "b33c542f4bc1e28ca9ea34338d61d49f817d1d1c4fa42aa9c616e623d541eff5", + "tx_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", "block_index": 182, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12477,7 +12491,7 @@ Returns the orders of an asset "status": "filled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733401028, + "block_time": 1733662675, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12539,13 +12553,13 @@ Returns the orders of an asset { "result": [ { - "id": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7_cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", + "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "tx0_index": 55, - "tx0_hash": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7", - "tx0_address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 58, - "tx1_hash": "cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", - "tx1_address": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12558,7 +12572,7 @@ Returns the orders of an asset "match_expire_index": 203, "fee_paid": 0, "status": "expired", - "block_time": 1733401139, + "block_time": 1733662785, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12578,13 +12592,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7_b33c542f4bc1e28ca9ea34338d61d49f817d1d1c4fa42aa9c616e623d541eff5", + "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", "tx0_index": 55, - "tx0_hash": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7", - "tx0_address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 56, - "tx1_hash": "b33c542f4bc1e28ca9ea34338d61d49f817d1d1c4fa42aa9c616e623d541eff5", - "tx1_address": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "tx1_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12597,7 +12611,7 @@ Returns the orders of an asset "match_expire_index": 201, "fee_paid": 0, "status": "completed", - "block_time": 1733401028, + "block_time": 1733662675, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12617,13 +12631,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "02a353dbb9f33e08f3be241c70d49e0dff41b56367d4b0efc599e15460428f17_6cef33b0cfa28b2eacf6dcb30cce0e46f1e08038451596d2fbd427765017db24", + "id": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf_4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", "tx0_index": 53, - "tx0_hash": "02a353dbb9f33e08f3be241c70d49e0dff41b56367d4b0efc599e15460428f17", - "tx0_address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "tx0_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 54, - "tx1_hash": "6cef33b0cfa28b2eacf6dcb30cce0e46f1e08038451596d2fbd427765017db24", - "tx1_address": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "tx1_hash": "4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", + "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12636,7 +12650,7 @@ Returns the orders of an asset "match_expire_index": 178, "fee_paid": 0, "status": "expired", - "block_time": 1733400958, + "block_time": 1733662607, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12656,13 +12670,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa_cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", + "id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "tx0_index": 64, - "tx0_hash": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa", - "tx0_address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "tx0_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 58, - "tx1_hash": "cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", - "tx1_address": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12675,7 +12689,7 @@ Returns the orders of an asset "match_expire_index": 224, "fee_paid": 0, "status": "expired", - "block_time": 1733401241, + "block_time": 1733662907, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12753,19 +12767,19 @@ Returns the credits of an asset "result": [ { "block_index": 221, - "address": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "asset": "BURNER", "quantity": 20000000, "calling_function": "fairmint commission", - "event": "8f72fd2d9f30ebaec2706d529d3ccde7380f2d38125b4460344726bd5a33181f", + "event": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", "tx_index": 97, "utxo": null, "utxo_address": null, - "block_time": 1733401218, + "block_time": 1733662883, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -12773,19 +12787,19 @@ Returns the credits of an asset }, { "block_index": 221, - "address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "asset": "BURNER", "quantity": 80000000, "calling_function": "fairmint", - "event": "8f72fd2d9f30ebaec2706d529d3ccde7380f2d38125b4460344726bd5a33181f", + "event": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", "tx_index": 97, "utxo": null, "utxo_address": null, - "block_time": 1733401218, + "block_time": 1733662883, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -12843,11 +12857,11 @@ Returns the debits of an asset "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "utxo": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", - "utxo_address": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", - "block_time": 1733401275, + "utxo": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "utxo_address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12859,15 +12873,15 @@ Returns the debits of an asset }, { "block_index": 232, - "address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "event": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1733401264, + "block_time": 1733662942, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12879,15 +12893,15 @@ Returns the debits of an asset }, { "block_index": 227, - "address": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "ba087473e6ca940b71b51c1ffee99388b126be78b3a3444d9dedaecbe8db1fee", + "event": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", "tx_index": 101, "utxo": null, "utxo_address": null, - "block_time": 1733401248, + "block_time": 1733662914, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12899,15 +12913,15 @@ Returns the debits of an asset }, { "block_index": 225, - "address": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "547fe13c4bc5cf5733ab7137993f4202782ffaeae1cd6a2278fa8f19f81ce038", + "event": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", "tx_index": 100, "utxo": null, "utxo_address": null, - "block_time": 1733401241, + "block_time": 1733662907, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12919,15 +12933,15 @@ Returns the debits of an asset }, { "block_index": 222, - "address": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "3a86a095769b72ae68a84114a3196380b785f613540e98b3b4aa3def467771ce", + "event": "55c081be300d1ac4ff7b175d9795db435293e7dc10a2b88ba972b6995ca61ac6", "tx_index": 98, "utxo": null, "utxo_address": null, - "block_time": 1733401221, + "block_time": 1733662886, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13003,14 +13017,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 97, - "tx_hash": "8f72fd2d9f30ebaec2706d529d3ccde7380f2d38125b4460344726bd5a33181f", + "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", "msg_index": 0, "block_index": 221, "asset": "BURNER", "quantity": 100000000, "divisible": true, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "transfer": false, "callable": false, "call_date": 0, @@ -13024,20 +13038,20 @@ Returns the issuances of an asset "description_locked": true, "fair_minting": false, "asset_events": "fairmint", - "block_time": 1733401218, + "block_time": 1733662883, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 96, - "tx_hash": "ba5874ce453e1bfd8eec026a5acb6a2a78950be77f7fadf9b3ea9289390dbcc6", + "tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", "msg_index": 0, "block_index": 220, "asset": "BURNER", "quantity": 0, "divisible": true, - "source": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "transfer": false, "callable": false, "call_date": 0, @@ -13051,7 +13065,7 @@ Returns the issuances of an asset "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", - "block_time": 1733401214, + "block_time": 1733662879, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -13091,17 +13105,17 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 106, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", - "destination": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13114,17 +13128,17 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 81, - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", - "destination": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "memo1", "fee_paid": 0, - "block_time": 1733401143, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13137,17 +13151,17 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 80, - "tx_hash": "82c7b328be471c36a81fe93ba31ab8cea34f6ba1787df20ac6dabc81901cb4a3", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", - "destination": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "746865206d656d6f", "fee_paid": 0, - "block_time": 1733401139, + "block_time": 1733662785, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13160,17 +13174,17 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 79, - "tx_hash": "7a8326c20cba52eb1f505f2db6102213fcb575ae2a5dfc0e2db1697bb4058537", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "memo1", "fee_paid": 0, - "block_time": 1733401135, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13183,17 +13197,17 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 78, - "tx_hash": "1d17a4673a1cf40f6ad68dbabb98ff067be2798bfefe35bde4709248c9691f72", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "the memo", "fee_paid": 0, - "block_time": 1733401131, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13242,9 +13256,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf", + "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13253,7 +13267,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13263,7 +13277,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733400835, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13280,9 +13294,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "3d125d957912782ea6d8ad07b46b49bf6b90f39754c63628356fb034f3a48c2c", + "tx_hash": "6daa84f64ee34d9155c3428658588fff312d5e267875c528a19e7b6706fb3fa5", "block_index": 133, - "source": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13291,7 +13305,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "origin": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13301,7 +13315,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733400840, + "block_time": 1733662488, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13318,9 +13332,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "088c98df0c174dcc930758d4df81454d44e337a503533d1e8aa6b2565e796208", + "tx_hash": "ea1a192405fa4439cd194c2dd622e088addef725cb25debbd12b34766f2140a7", "block_index": 141, - "source": "n3NzPVpuzhHD7xBtZUoDi9GGp1UvdJAMbJ", + "source": "mwGrVHb495rLnPnW2W9yvMfsayfdGhBD7M", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13328,10 +13342,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "e885828056ddc7afdf80c51063d5d5f1647cecbfc5ef9c722f7b3cfc7caaa8a6", - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "last_status_tx_hash": "8d23eecb8396aa466580dc248667649c9fd8e56e37ec0e13c9361bb3e7ab2dd0", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 0, - "last_status_tx_source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "last_status_tx_source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "close_block_index": 141, "price": 1.0, "fiat_price": null, @@ -13339,7 +13353,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733400879, + "block_time": 1733662517, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13356,18 +13370,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "block_index": 234, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "last_status_tx_hash": null, - "origin": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13377,7 +13391,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13403,7 +13417,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - The address to return + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (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` @@ -13414,9 +13428,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf", + "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13425,7 +13439,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13435,7 +13449,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733400835, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13477,7 +13491,7 @@ Returns the holders of an asset "result": [ { "asset": "BURNER", - "address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "quantity": 80000000, "escrow": null, "cursor_id": "balances_55", @@ -13486,7 +13500,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -13494,7 +13508,7 @@ Returns the holders of an asset }, { "asset": "BURNER", - "address": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "quantity": 20000000, "escrow": null, "cursor_id": "balances_56", @@ -13503,7 +13517,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -13538,26 +13552,26 @@ Returns the dispenses of an asset { "tx_index": 106, "dispense_index": 0, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "destination": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "btc_amount": 1000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "last_status_tx_hash": null, - "origin": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13572,7 +13586,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13586,26 +13600,26 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "4ab0b58891db6cb721ddededb8c460361f58f41d1427a3e267649d6733ce8361", + "tx_hash": "72aeb92e989c915f9b002d26cd474ce972dcb2c06d76abfabf4feee4d3ba3e25", "block_index": 138, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "destination": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "destination": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "btc_amount": 10000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "last_status_tx_hash": null, - "origin": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13620,7 +13634,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733400858, + "block_time": 1733662506, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13634,18 +13648,18 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "11e19771c86268eac82da0f8149f90e91e3405993d31d430aad28765c573c017", + "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13653,7 +13667,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13668,7 +13682,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733400835, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13682,18 +13696,18 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "11ce18e2c3d693be44ec6c643ed676fba42a13c9699d6fe962511a7c4aec1c7c", + "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", "block_index": 131, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13701,7 +13715,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13716,7 +13730,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733400821, + "block_time": 1733662481, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13786,10 +13800,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "ba5874ce453e1bfd8eec026a5acb6a2a78950be77f7fadf9b3ea9289390dbcc6", + "tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", "tx_index": 96, "block_index": 221, - "source": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "asset": "BURNER", "asset_parent": null, "asset_longname": null, @@ -13813,7 +13827,7 @@ Returns the fairminter by its asset "earned_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, - "block_time": 1733401218, + "block_time": 1733662883, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "1.00000000", "soft_cap_normalized": "0.00000000", @@ -13851,21 +13865,21 @@ Returns the mints by asset { "result": [ { - "tx_hash": "8f72fd2d9f30ebaec2706d529d3ccde7380f2d38125b4460344726bd5a33181f", + "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", "tx_index": 97, "block_index": 221, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "fairminter_tx_hash": "ba5874ce453e1bfd8eec026a5acb6a2a78950be77f7fadf9b3ea9289390dbcc6", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "fairminter_tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", - "block_time": 1733401218, + "block_time": 1733662883, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -13884,7 +13898,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e` (str, required) - The address of the mints to return + + address: `bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (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` @@ -13942,9 +13956,9 @@ Returns all the orders "result": [ { "tx_index": 53, - "tx_hash": "02a353dbb9f33e08f3be241c70d49e0dff41b56367d4b0efc599e15460428f17", + "tx_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", "block_index": 179, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13960,7 +13974,7 @@ Returns all the orders "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733400958, + "block_time": 1733662607, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13988,9 +14002,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7", + "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", "block_index": 202, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -14006,7 +14020,7 @@ Returns all the orders "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733401131, + "block_time": 1733662777, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14034,9 +14048,9 @@ Returns all the orders }, { "tx_index": 56, - "tx_hash": "b33c542f4bc1e28ca9ea34338d61d49f817d1d1c4fa42aa9c616e623d541eff5", + "tx_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", "block_index": 182, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -14052,7 +14066,7 @@ Returns all the orders "status": "filled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733401028, + "block_time": 1733662675, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -14080,9 +14094,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", + "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "block_index": 205, - "source": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -14098,7 +14112,7 @@ Returns all the orders "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733401143, + "block_time": 1733662789, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -14126,9 +14140,9 @@ Returns all the orders }, { "tx_index": 62, - "tx_hash": "ce89aa7599a93e412c2d5dad24c811373df8567a03584a10021d65c6e4267db3", + "tx_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", "block_index": 188, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -14144,7 +14158,7 @@ Returns all the orders "status": "cancelled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733401070, + "block_time": 1733662715, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14181,7 +14195,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031` (str, required) - The hash of the transaction that created the order + + order_hash: `97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308` (str, required) - The hash of the transaction that created the order + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -14191,9 +14205,9 @@ Returns the information of an order { "result": { "tx_index": 104, - "tx_hash": "136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "block_index": 231, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 0, @@ -14209,7 +14223,7 @@ Returns the information of an order "status": "open", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733401261, + "block_time": 1733662928, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -14220,7 +14234,7 @@ Returns the information of an order "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "divisible": true, "locked": false }, @@ -14243,7 +14257,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `1e58a9ad4a24f44528e83d1606263c6c658c0d6c24a177675ca62f32dabc03a4` (str, required) - The hash of the transaction that created the order + + order_hash: `c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076` (str, required) - The hash of the transaction that created the order + status (enum[str], optional) - The status of the order matches to return + Default: `all` + Members @@ -14268,13 +14282,13 @@ Returns the order matches of an order { "result": [ { - "id": "1e58a9ad4a24f44528e83d1606263c6c658c0d6c24a177675ca62f32dabc03a4_136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "id": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076_97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "tx0_index": 103, - "tx0_hash": "1e58a9ad4a24f44528e83d1606263c6c658c0d6c24a177675ca62f32dabc03a4", - "tx0_address": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "tx0_hash": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076", + "tx0_address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "tx1_index": 104, - "tx1_hash": "136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", - "tx1_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "tx1_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx1_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -14287,11 +14301,11 @@ Returns the order matches of an order "match_expire_index": 251, "fee_paid": 0, "status": "pending", - "block_time": 1733401261, + "block_time": 1733662928, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "divisible": true, "locked": false }, @@ -14317,7 +14331,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7` (str, required) - The hash of the transaction that created the order + + order_hash: `7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29` (str, required) - The hash of the transaction that created the order + cursor (str, optional) - The last index of the resolutions to return + Default: `None` + limit: `5` (int, optional) - The maximum number of resolutions to return @@ -14334,14 +14348,14 @@ Returns the BTC pays of an order "result": [ { "tx_index": 57, - "tx_hash": "d1c93cd2a14bbd176e6249e51bde971b91bb1579f5af86a1448ccce622b8f022", + "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", "block_index": 182, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", - "destination": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "btc_amount": 2000, - "order_match_id": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7_b33c542f4bc1e28ca9ea34338d61d49f817d1d1c4fa42aa9c616e623d541eff5", + "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", "status": "valid", - "block_time": 1733401028, + "block_time": 1733662675, "btc_amount_normalized": "0.00002000" } ], @@ -14383,9 +14397,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 56, - "tx_hash": "b33c542f4bc1e28ca9ea34338d61d49f817d1d1c4fa42aa9c616e623d541eff5", + "tx_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", "block_index": 182, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -14402,7 +14416,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1733401028, + "block_time": 1733662675, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -14428,9 +14442,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", + "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "block_index": 205, - "source": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -14447,7 +14461,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1733401143, + "block_time": 1733662789, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -14473,9 +14487,9 @@ Returns the orders to exchange two assets }, { "tx_index": 53, - "tx_hash": "02a353dbb9f33e08f3be241c70d49e0dff41b56367d4b0efc599e15460428f17", + "tx_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", "block_index": 179, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -14492,7 +14506,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733400958, + "block_time": 1733662607, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14518,9 +14532,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7", + "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", "block_index": 202, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -14537,7 +14551,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733401131, + "block_time": 1733662777, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14563,9 +14577,9 @@ Returns the orders to exchange two assets }, { "tx_index": 62, - "tx_hash": "ce89aa7599a93e412c2d5dad24c811373df8567a03584a10021d65c6e4267db3", + "tx_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", "block_index": 188, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -14582,7 +14596,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733401070, + "block_time": 1733662715, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14643,13 +14657,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7_cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", + "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "tx0_index": 55, - "tx0_hash": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7", - "tx0_address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 58, - "tx1_hash": "cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", - "tx1_address": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -14665,7 +14679,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733401139, + "block_time": 1733662785, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14685,13 +14699,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7_b33c542f4bc1e28ca9ea34338d61d49f817d1d1c4fa42aa9c616e623d541eff5", + "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", "tx0_index": 55, - "tx0_hash": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7", - "tx0_address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 56, - "tx1_hash": "b33c542f4bc1e28ca9ea34338d61d49f817d1d1c4fa42aa9c616e623d541eff5", - "tx1_address": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "tx1_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -14707,7 +14721,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733401028, + "block_time": 1733662675, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14727,13 +14741,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "02a353dbb9f33e08f3be241c70d49e0dff41b56367d4b0efc599e15460428f17_6cef33b0cfa28b2eacf6dcb30cce0e46f1e08038451596d2fbd427765017db24", + "id": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf_4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", "tx0_index": 53, - "tx0_hash": "02a353dbb9f33e08f3be241c70d49e0dff41b56367d4b0efc599e15460428f17", - "tx0_address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "tx0_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 54, - "tx1_hash": "6cef33b0cfa28b2eacf6dcb30cce0e46f1e08038451596d2fbd427765017db24", - "tx1_address": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "tx1_hash": "4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", + "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -14749,7 +14763,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733400958, + "block_time": 1733662607, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14769,13 +14783,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa_cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", + "id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "tx0_index": 64, - "tx0_hash": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa", - "tx0_address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "tx0_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 58, - "tx1_hash": "cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", - "tx1_address": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -14791,7 +14805,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733401241, + "block_time": 1733662907, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14847,13 +14861,13 @@ Returns all the order matches { "result": [ { - "id": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7_cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", + "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "tx0_index": 55, - "tx0_hash": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7", - "tx0_address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 58, - "tx1_hash": "cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", - "tx1_address": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -14866,7 +14880,7 @@ Returns all the order matches "match_expire_index": 203, "fee_paid": 0, "status": "expired", - "block_time": 1733401139, + "block_time": 1733662785, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14886,13 +14900,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7_b33c542f4bc1e28ca9ea34338d61d49f817d1d1c4fa42aa9c616e623d541eff5", + "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", "tx0_index": 55, - "tx0_hash": "201e48d16e0f80af6042b848509cc996bb0701c4956681d6cc8824a8b8854df7", - "tx0_address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 56, - "tx1_hash": "b33c542f4bc1e28ca9ea34338d61d49f817d1d1c4fa42aa9c616e623d541eff5", - "tx1_address": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "tx1_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -14905,7 +14919,7 @@ Returns all the order matches "match_expire_index": 201, "fee_paid": 0, "status": "completed", - "block_time": 1733401028, + "block_time": 1733662675, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14925,13 +14939,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "02a353dbb9f33e08f3be241c70d49e0dff41b56367d4b0efc599e15460428f17_6cef33b0cfa28b2eacf6dcb30cce0e46f1e08038451596d2fbd427765017db24", + "id": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf_4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", "tx0_index": 53, - "tx0_hash": "02a353dbb9f33e08f3be241c70d49e0dff41b56367d4b0efc599e15460428f17", - "tx0_address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "tx0_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 54, - "tx1_hash": "6cef33b0cfa28b2eacf6dcb30cce0e46f1e08038451596d2fbd427765017db24", - "tx1_address": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "tx1_hash": "4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", + "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -14944,7 +14958,7 @@ Returns all the order matches "match_expire_index": 178, "fee_paid": 0, "status": "expired", - "block_time": 1733400958, + "block_time": 1733662607, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14964,13 +14978,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa_cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", + "id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "tx0_index": 64, - "tx0_hash": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa", - "tx0_address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "tx0_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 58, - "tx1_hash": "cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", - "tx1_address": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -14983,7 +14997,7 @@ Returns all the order matches "match_expire_index": 224, "fee_paid": 0, "status": "expired", - "block_time": 1733401241, + "block_time": 1733662907, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15003,13 +15017,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "1e58a9ad4a24f44528e83d1606263c6c658c0d6c24a177675ca62f32dabc03a4_136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", + "id": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076_97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "tx0_index": 103, - "tx0_hash": "1e58a9ad4a24f44528e83d1606263c6c658c0d6c24a177675ca62f32dabc03a4", - "tx0_address": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "tx0_hash": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076", + "tx0_address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "tx1_index": 104, - "tx1_hash": "136c5df0bc38a1c2295fe064911ea3d54ec36b3908df4ff48cbf9b76f0761031", - "tx1_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "tx1_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx1_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -15022,11 +15036,11 @@ Returns all the order matches "match_expire_index": 251, "fee_paid": 0, "status": "pending", - "block_time": 1733401261, + "block_time": 1733662928, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "divisible": true, "locked": false }, @@ -15180,61 +15194,61 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "6d6229b3ff8f48be1152d17b8283a6041352d2ec692bc87774369d93e3e97bdb", + "tx_hash": "95db2791e37d288a1a4fb3c7414e3aca564b4024baaaf2c7bc77689349c31ca7", "block_index": 112, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733400740, + "block_time": 1733662402, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 8, - "tx_hash": "dcd6e1a6e78ab7e598e720c8c13e83b5fce929da2c7bce67d9f15aa66f8502c4", + "tx_hash": "6de7deec7c8727742c815e615c25f63198863a9719b8689ce8570a98b634ce88", "block_index": 112, - "source": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733400740, + "block_time": 1733662402, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 7, - "tx_hash": "c797f7786112a02fcebf82521ab281e50c841c61debd2c9f76099012e12d11c2", + "tx_hash": "ea86811a25f89384639a856ef3b3d26ebabfac1d2c31342efdef66929a8caf85", "block_index": 112, - "source": "bcrt1qs8hh6lq7yp6ax2swah3kgkjngl3ulwezvme6nq", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733400740, + "block_time": 1733662402, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 6, - "tx_hash": "9f3523e0cc3228dd58b59ce49ab32a25ab1db610d7bbbfa3b3bcb7981657e49d", + "tx_hash": "adc429a9b034bc1bf40ab54154ae4ed40522824a59177a92f9bae9163626d06a", "block_index": 112, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1qcg7s7t5nr4edjh4znztk65wcrp3quf3h8ky2le", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733400740, + "block_time": 1733662402, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 5, - "tx_hash": "c5bcd017200813b82d84106aa8aeee64553818ead3ca29eef00a1b3f636f7791", + "tx_hash": "87bf46153fabbf44f202f0538ee531356e5ce77768e094ec9859b5a11380c959", "block_index": 112, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733400740, + "block_time": 1733662402, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" } @@ -15277,9 +15291,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf", + "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -15288,7 +15302,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15298,7 +15312,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733400835, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15315,9 +15329,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "3d125d957912782ea6d8ad07b46b49bf6b90f39754c63628356fb034f3a48c2c", + "tx_hash": "6daa84f64ee34d9155c3428658588fff312d5e267875c528a19e7b6706fb3fa5", "block_index": 133, - "source": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -15326,7 +15340,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "origin": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -15336,7 +15350,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733400840, + "block_time": 1733662488, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15353,9 +15367,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "088c98df0c174dcc930758d4df81454d44e337a503533d1e8aa6b2565e796208", + "tx_hash": "ea1a192405fa4439cd194c2dd622e088addef725cb25debbd12b34766f2140a7", "block_index": 141, - "source": "n3NzPVpuzhHD7xBtZUoDi9GGp1UvdJAMbJ", + "source": "mwGrVHb495rLnPnW2W9yvMfsayfdGhBD7M", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -15363,10 +15377,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "e885828056ddc7afdf80c51063d5d5f1647cecbfc5ef9c722f7b3cfc7caaa8a6", - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "last_status_tx_hash": "8d23eecb8396aa466580dc248667649c9fd8e56e37ec0e13c9361bb3e7ab2dd0", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 0, - "last_status_tx_source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "last_status_tx_source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "close_block_index": 141, "price": 1.0, "fiat_price": null, @@ -15374,7 +15388,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733400879, + "block_time": 1733662517, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15391,9 +15405,9 @@ Returns all dispensers }, { "tx_index": 68, - "tx_hash": "5aa06a098c32a7d962a3a553b727c958643c7defc82229855dfd7af2d1c33e3e", + "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "block_index": 194, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -15402,7 +15416,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -15412,11 +15426,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733401091, + "block_time": 1733662737, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -15429,18 +15443,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "block_index": 234, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "last_status_tx_hash": null, - "origin": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15450,7 +15464,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15476,7 +15490,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf` (str, required) - The hash of the dispenser to return + + dispenser_hash: `d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e` (str, required) - The hash of the dispenser to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -15486,9 +15500,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf", + "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -15497,7 +15511,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15507,7 +15521,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733400835, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15530,7 +15544,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf` (str, required) - The hash of the dispenser to return + + dispenser_hash: `d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e` (str, required) - The hash of the dispenser to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -15548,18 +15562,18 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "11e19771c86268eac82da0f8149f90e91e3405993d31d430aad28765c573c017", + "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15567,7 +15581,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15582,7 +15596,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733400835, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15596,18 +15610,18 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "11ce18e2c3d693be44ec6c643ed676fba42a13c9699d6fe962511a7c4aec1c7c", + "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", "block_index": 131, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15615,7 +15629,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15630,7 +15644,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733400821, + "block_time": 1733662481, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15670,19 +15684,19 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "4fd2ee5b0188ba05abe0c9e6636f27435c033150503912be11b900852d02c5be", + "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", "block_index": 146, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", - "block_time": 1733400897, + "block_time": 1733662534, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -15707,7 +15721,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `4fd2ee5b0188ba05abe0c9e6636f27435c033150503912be11b900852d02c5be` (str, required) - The hash of the dividend to return + + dividend_hash: `4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e` (str, required) - The hash of the dividend to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -15717,19 +15731,19 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "4fd2ee5b0188ba05abe0c9e6636f27435c033150503912be11b900852d02c5be", + "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", "block_index": 146, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", - "block_time": 1733400897, + "block_time": 1733662534, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -15751,7 +15765,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `4fd2ee5b0188ba05abe0c9e6636f27435c033150503912be11b900852d02c5be` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e` (str, required) - The hash of the dividend distribution to return + cursor (str, optional) - The last index of the credit to return + Default: `None` + limit: `5` (int, optional) - The maximum number of credit to return @@ -15772,11 +15786,11 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "4fd2ee5b0188ba05abe0c9e6636f27435c033150503912be11b900852d02c5be", + "event": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", "tx_index": 42, - "utxo": "a65600f06f02c8414b3f71b19906d415ed546a02f4c61f8a603f53fc667ca797:0", - "utxo_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "block_time": 1733400897, + "utxo": "4d60faaba1be8d75881d245edb4e2f8aed601765899645793cf6d3d731c5d520:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662534, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15820,27 +15834,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 234, - "ledger_hash": "f17fb2b3438d2b64353b2d5e33fd35a78fc1ca73aebc1eb2974e32ea02405c83", - "messages_hash": "9045de288511ef00fbdd7f520dd0a1f54fb5fa5ab1f370178051aaa96974632c", + "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", + "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", "transaction_count": 1, - "txlist_hash": "c64de2c9e70d3c3c1dccaaf31fae1415012b6b712007e3d42fb82017798c10d1", - "block_time": 1733401275 + "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", + "block_time": 1733662951 }, "tx_hash": null, "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 929, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106 }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 928, @@ -15849,14 +15863,14 @@ Returns all events "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15867,9 +15881,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 927, @@ -15878,9 +15892,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": 0, - "tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15890,24 +15904,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15917,9 +15931,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 } ], "next_cursor": 925, @@ -15945,15 +15959,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 234, - "ledger_hash": "f17fb2b3438d2b64353b2d5e33fd35a78fc1ca73aebc1eb2974e32ea02405c83", - "messages_hash": "9045de288511ef00fbdd7f520dd0a1f54fb5fa5ab1f370178051aaa96974632c", + "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", + "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", "transaction_count": 1, - "txlist_hash": "c64de2c9e70d3c3c1dccaaf31fae1415012b6b712007e3d42fb82017798c10d1", - "block_time": 1733401275 + "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", + "block_time": 1733662951 }, "tx_hash": null, "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 } } ``` @@ -16027,16 +16041,16 @@ Returns the events filtered by event name "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16046,9 +16060,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 924, @@ -16058,12 +16072,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 234, "calling_function": "utxo move", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 2000000000, "tx_index": 106, - "utxo": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", - "utxo_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "block_time": 1733401275, + "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16073,9 +16087,9 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 921, @@ -16085,24 +16099,24 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 234, "calling_function": "utxo move", - "event": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 2000000000, "tx_index": 106, - "utxo": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", - "utxo_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "block_time": 1733401275, + "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733401275 + "block_time": 1733662951 }, { "event_index": 877, @@ -16112,39 +16126,39 @@ Returns the events filtered by event name "asset": "PREMINT", "block_index": 227, "calling_function": "escrowed premint", - "event": "ba087473e6ca940b71b51c1ffee99388b126be78b3a3444d9dedaecbe8db1fee", + "event": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", "quantity": 50, "tx_index": 101, "utxo": null, "utxo_address": null, - "block_time": 1733401248, + "block_time": 1733662914, "asset_info": { "asset_longname": null, "description": "My super description", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": false }, "quantity_normalized": "0.00000050" }, - "tx_hash": "ba087473e6ca940b71b51c1ffee99388b126be78b3a3444d9dedaecbe8db1fee", + "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", "block_index": 227, - "block_time": 1733401248 + "block_time": 1733662914 }, { "event_index": 860, "event": "CREDIT", "params": { - "address": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "4f77a3bf51656ca4d7b2cb82efd374543f3109d21657d23e2c767df31a6a3caa_cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37", + "event": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733401241, + "block_time": 1733662907, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16154,9 +16168,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "547fe13c4bc5cf5733ab7137993f4202782ffaeae1cd6a2278fa8f19f81ce038", + "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", "block_index": 225, - "block_time": 1733401241 + "block_time": 1733662907 } ], "next_cursor": 834, @@ -16208,26 +16222,26 @@ Returns all the dispenses { "tx_index": 106, "dispense_index": 0, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "destination": "bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "btc_amount": 1000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "last_status_tx_hash": null, - "origin": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -16242,7 +16256,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16256,18 +16270,18 @@ Returns all the dispenses { "tx_index": 69, "dispense_index": 0, - "tx_hash": "dc3c01388f0626c636fdb38bd4f1892225a452a33fc6e4c6bf8b44515c1613f4", + "tx_hash": "3d816bb9da3e8382155c32330e0949633245a5b06a4e040498c8290561e28139", "block_index": 194, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "5aa06a098c32a7d962a3a553b727c958643c7defc82229855dfd7af2d1c33e3e", + "dispenser_tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "btc_amount": 4000, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -16275,7 +16289,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -16290,11 +16304,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733401091, + "block_time": 1733662737, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -16304,26 +16318,26 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "4ab0b58891db6cb721ddededb8c460361f58f41d1427a3e267649d6733ce8361", + "tx_hash": "72aeb92e989c915f9b002d26cd474ce972dcb2c06d76abfabf4feee4d3ba3e25", "block_index": 138, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "destination": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "destination": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "885a5392c14e89fff1b4cfa96bc8287e1f3b8e51bc03b702e9ee341a825f6ced", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "btc_amount": 10000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "last_status_tx_hash": null, - "origin": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -16338,7 +16352,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733400858, + "block_time": 1733662506, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16352,18 +16366,18 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "11e19771c86268eac82da0f8149f90e91e3405993d31d430aad28765c573c017", + "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -16371,7 +16385,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -16386,7 +16400,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733400835, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16400,18 +16414,18 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "11ce18e2c3d693be44ec6c643ed676fba42a13c9699d6fe962511a7c4aec1c7c", + "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", "block_index": 131, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", - "destination": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "7d673644f59ad5f1a91a0addbaa6351f46cfc2f29fb40c47a6862b6720f4cecf", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -16419,7 +16433,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -16434,7 +16448,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733400821, + "block_time": 1733662481, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16482,17 +16496,17 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 106, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", - "destination": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16505,21 +16519,21 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 106, - "tx_hash": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "3802f8d1d7893fb60cde18c098028a0febc4fd5da20b503adf0471c959b823f3:1", - "destination": "cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5:0", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -16528,17 +16542,17 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", - "destination": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "memo1", "fee_paid": 0, - "block_time": 1733401143, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16551,21 +16565,21 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", - "destination": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 1, "memo": "memo3", "fee_paid": 0, - "block_time": 1733401143, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -16574,21 +16588,21 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "47cd1b63a2e65d2acfe21bd8c4a1b4c0b573cf605902e20ed35dbb9c9761bb5c", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", - "destination": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 0, "memo": "the memo", "fee_paid": 0, - "block_time": 1733401143, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -16637,14 +16651,14 @@ Returns all the issuances "result": [ { "tx_index": 105, - "tx_hash": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "msg_index": 0, "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "issuer": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "transfer": false, "callable": false, "call_date": 0, @@ -16658,20 +16672,20 @@ Returns all the issuances "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", - "block_time": 1733401264, + "block_time": 1733662942, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 102, - "tx_hash": "a5899d9d3277ac17241dd684aa307517bcc5a7056fe599b65789c99285466c42", + "tx_hash": "b78410a2a80a2abbde1b69ab81f14bd7d3a9620b7d8594371942c474a0ea8776", "msg_index": 0, "block_index": 229, "asset": "PREMINT", "quantity": 0, "divisible": true, - "source": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "transfer": false, "callable": false, "call_date": 0, @@ -16685,20 +16699,20 @@ Returns all the issuances "description_locked": false, "fair_minting": false, "asset_events": "change_description", - "block_time": 1733401255, + "block_time": 1733662921, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 101, - "tx_hash": "ba087473e6ca940b71b51c1ffee99388b126be78b3a3444d9dedaecbe8db1fee", + "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", "msg_index": 1, "block_index": 228, "asset": "PREMINT", "quantity": 0, "divisible": true, - "source": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "transfer": false, "callable": false, "call_date": 0, @@ -16712,20 +16726,20 @@ Returns all the issuances "description_locked": false, "fair_minting": false, "asset_events": "close_fairminter", - "block_time": 1733401251, + "block_time": 1733662918, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 101, - "tx_hash": "ba087473e6ca940b71b51c1ffee99388b126be78b3a3444d9dedaecbe8db1fee", + "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", "msg_index": 0, "block_index": 227, "asset": "PREMINT", "quantity": 50, "divisible": true, - "source": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "transfer": false, "callable": false, "call_date": 0, @@ -16739,20 +16753,20 @@ Returns all the issuances "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", - "block_time": 1733401248, + "block_time": 1733662914, "quantity_normalized": "0.00000050", "fee_paid_normalized": "0.50000000" }, { "tx_index": 100, - "tx_hash": "547fe13c4bc5cf5733ab7137993f4202782ffaeae1cd6a2278fa8f19f81ce038", + "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", "msg_index": 1, "block_index": 226, "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "transfer": false, "callable": false, "call_date": 0, @@ -16766,7 +16780,7 @@ Returns all the issuances "description_locked": false, "fair_minting": false, "asset_events": "close_fairminter", - "block_time": 1733401245, + "block_time": 1733662911, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -16781,7 +16795,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676` (str, required) - The hash of the transaction to return + + tx_hash: `ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -16791,14 +16805,14 @@ Returns the issuances of a block { "result": { "tx_index": 105, - "tx_hash": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "msg_index": 0, "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "issuer": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "transfer": false, "callable": false, "call_date": 0, @@ -16812,7 +16826,7 @@ Returns the issuances of a block "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", - "block_time": 1733401264, + "block_time": 1733662942, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -16842,15 +16856,15 @@ Returns all sweeps "result": [ { "tx_index": 65, - "tx_hash": "3a29fd55a51576c56bec724d5093c46034cbdc50def21513e45f8e1e23b403c4", + "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", "block_index": 190, - "source": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", - "destination": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, - "block_time": 1733401078, + "block_time": 1733662722, "fee_paid_normalized": "0.00600000" } ], @@ -16864,7 +16878,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `3a29fd55a51576c56bec724d5093c46034cbdc50def21513e45f8e1e23b403c4` (str, required) - The hash of the transaction to return + + tx_hash: `8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -16875,15 +16889,15 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 65, - "tx_hash": "3a29fd55a51576c56bec724d5093c46034cbdc50def21513e45f8e1e23b403c4", + "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", "block_index": 190, - "source": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", - "destination": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, - "block_time": 1733401078, + "block_time": 1733662722, "fee_paid_normalized": "0.00600000" } ], @@ -16915,30 +16929,30 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "74aece026f093cec323f6c5d6cfc6e59006f8ed750e4e1a9836a2c839b520137", + "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", "block_index": 129, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, "text": "price-USD", "locked": false, "status": "valid", - "block_time": 1733400814, + "block_time": 1733662474, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "67b70385472aa508651037e1c33a3d1ad166d940a80039c199d9c553f6f1f87e", + "tx_hash": "3241987309692b6707b4651f9f2a8e60f491efb1911cae2686f47ae12966e8f1", "block_index": 128, - "source": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, "text": "Hello, world!", "locked": false, "status": "valid", - "block_time": 1733400811, + "block_time": 1733662470, "fee_fraction_int_normalized": "0.00000000" } ], @@ -16952,7 +16966,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `74aece026f093cec323f6c5d6cfc6e59006f8ed750e4e1a9836a2c839b520137` (str, required) - The hash of the transaction to return + + tx_hash: `5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -16962,16 +16976,16 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "74aece026f093cec323f6c5d6cfc6e59006f8ed750e4e1a9836a2c839b520137", + "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", "block_index": 129, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, "text": "price-USD", "locked": false, "status": "valid", - "block_time": 1733400814, + "block_time": 1733662474, "fee_fraction_int_normalized": "0.00000000" } } @@ -17006,10 +17020,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "171f6833c95d689d0453fc72c9d9910b621d6535eff94d1cef27f3ce001e0676", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "tx_index": 105, "block_index": 232, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "asset": "OPENFAIR", "asset_parent": null, "asset_longname": null, @@ -17033,7 +17047,7 @@ Returns all fairminters "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733401264, + "block_time": 1733662942, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -17042,10 +17056,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "ba087473e6ca940b71b51c1ffee99388b126be78b3a3444d9dedaecbe8db1fee", + "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", "tx_index": 101, "block_index": 228, - "source": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "asset": "PREMINT", "asset_parent": null, "asset_longname": null, @@ -17069,7 +17083,7 @@ Returns all fairminters "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733401251, + "block_time": 1733662918, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -17078,10 +17092,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000050" }, { - "tx_hash": "547fe13c4bc5cf5733ab7137993f4202782ffaeae1cd6a2278fa8f19f81ce038", + "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", "tx_index": 100, "block_index": 226, - "source": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "asset": "STARTNOW", "asset_parent": null, "asset_longname": null, @@ -17105,7 +17119,7 @@ Returns all fairminters "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733401245, + "block_time": 1733662911, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -17114,10 +17128,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "6e551de94c15af8e8dd444795697b0b2d62568c5a8bcc44419adf72466ec3711", + "tx_hash": "21f686ef5af2440a808c1ccfdcf310053abc7d20da5eedcf6fb011ae89d8c422", "tx_index": 99, "block_index": 224, - "source": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "asset": null, "asset_parent": null, "asset_longname": null, @@ -17141,13 +17155,13 @@ Returns all fairminters "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733401227 + "block_time": 1733662893 }, { - "tx_hash": "3a86a095769b72ae68a84114a3196380b785f613540e98b3b4aa3def467771ce", + "tx_hash": "55c081be300d1ac4ff7b175d9795db435293e7dc10a2b88ba972b6995ca61ac6", "tx_index": 98, "block_index": 223, - "source": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "asset": "EXPANSIVE", "asset_parent": null, "asset_longname": null, @@ -17171,7 +17185,7 @@ Returns all fairminters "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733401224, + "block_time": 1733662889, "price_normalized": "99900000000.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -17231,21 +17245,21 @@ Returns all fairmints { "result": [ { - "tx_hash": "8f72fd2d9f30ebaec2706d529d3ccde7380f2d38125b4460344726bd5a33181f", + "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", "tx_index": 97, "block_index": 221, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "fairminter_tx_hash": "ba5874ce453e1bfd8eec026a5acb6a2a78950be77f7fadf9b3ea9289390dbcc6", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "fairminter_tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", - "block_time": 1733401218, + "block_time": 1733662883, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -17254,21 +17268,21 @@ Returns all fairmints "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "c9aa84281f3cb0e3ece3d1189a2ad7c44970f1440f8028acf120551ad3e1ebc5", + "tx_hash": "c078a7713eeb7de231ecc35c7a5d3af052929fd457546e76e80ce3c601ae9565", "tx_index": 95, "block_index": 219, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "fairminter_tx_hash": "d812510c6c382b3cb64e7264bc3fe1a77678d86e764cb559d30d53e15e2e89df", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "fairminter_tx_hash": "d2edc737c747e5f2031640e260b79f9298e92c792db93cbed5c3674e5acd5e6e", "asset": "LOCKDESC", "earn_quantity": 800000000, "paid_quantity": 0, "commission": 200000000, "status": "valid", - "block_time": 1733401211, + "block_time": 1733662876, "asset_info": { "asset_longname": null, "description": "My super asset LOCKDESC", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -17277,21 +17291,21 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "f0d983d4fc66ff6b512c62fff08ffadd194935e9d339fd2d95f2941a52b1974c", + "tx_hash": "35d1f1891ee7d00d5e7f8dfaa155d686d598074dd15b652ec736869735701453", "tx_index": 91, "block_index": 215, - "source": "bcrt1qs8hh6lq7yp6ax2swah3kgkjngl3ulwezvme6nq", - "fairminter_tx_hash": "175914b5573440353ca7157f8b0686b53c01a2e1bed6e50bc0138f0070f77783", + "source": "bcrt1qj6tvevnnae8pm3edzntcj226e4ldzjefd2zw0x", + "fairminter_tx_hash": "547d662c481b6cce1fd0eebfbf61582a4c72c8f1c0c61721ae06a1b2d9ca776e", "asset": "A95428959531084712", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1733401197, + "block_time": 1733662853, "asset_info": { "asset_longname": "PARENTA.SUBASSETC", "description": "", - "issuer": "bcrt1qs8hh6lq7yp6ax2swah3kgkjngl3ulwezvme6nq", + "issuer": "bcrt1qj6tvevnnae8pm3edzntcj226e4ldzjefd2zw0x", "divisible": true, "locked": false }, @@ -17300,21 +17314,21 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "522b77834b07eddb154def496281e41bfface940bfc971adaa9d211801ee51c2", + "tx_hash": "f7afb409d53d760cc0e1b6287fb322b46c0cec5b0db19e0db1e4cb8e9acfa06c", "tx_index": 46, "block_index": 150, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", - "fairminter_tx_hash": "db63515001b58a8359f0cc27b1ab9ed2089a9b55ba3e243b595e16bce470f80d", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "fairminter_tx_hash": "f49987520b37269d66e22c08d64105ad8b3ca4ddd9cf77289a9c701eb7cd17fd", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1733400912, + "block_time": 1733662559, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -17323,21 +17337,21 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "60eb47fd63c1703bae51766372e704ac9ad60229b934c13943857df63cda3178", + "tx_hash": "0f816a7124ca2d321d50cb5a756e505409860107a5cdf6818af0c49903109e92", "tx_index": 45, "block_index": 149, - "source": "bcrt1q5l9xqg2wglc6aasnlcj00ggpdsxmfp9jyrj03e", - "fairminter_tx_hash": "db63515001b58a8359f0cc27b1ab9ed2089a9b55ba3e243b595e16bce470f80d", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "fairminter_tx_hash": "f49987520b37269d66e22c08d64105ad8b3ca4ddd9cf77289a9c701eb7cd17fd", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1733400909, + "block_time": 1733662555, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -17356,7 +17370,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `8f72fd2d9f30ebaec2706d529d3ccde7380f2d38125b4460344726bd5a33181f` (str, required) - The hash of the fairmint to return + + tx_hash: `88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -17365,21 +17379,21 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "8f72fd2d9f30ebaec2706d529d3ccde7380f2d38125b4460344726bd5a33181f", + "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", "tx_index": 97, "block_index": 221, - "source": "bcrt1qperhacnxxx04zjfhf8uqfd8g9m0vg3aq3gnwkm", - "fairminter_tx_hash": "ba5874ce453e1bfd8eec026a5acb6a2a78950be77f7fadf9b3ea9289390dbcc6", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "fairminter_tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", - "block_time": 1733401218, + "block_time": 1733662883, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qx30zlw8wayzsq8tk0pnvaf8ly4ef60yz298ua9", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -17397,7 +17411,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw,bcrt1qs8hh6lq7yp6ax2swah3kgkjngl3ulwezvme6nq` (str, required) - The addresses to search for + + addresses: `bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne,bcrt1qj6tvevnnae8pm3edzntcj226e4ldzjefd2zw0x` (str, required) - The addresses to search for + unconfirmed (bool, optional) - Include unconfirmed transactions + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -17414,17 +17428,8 @@ Returns a list of unspent outputs for a list of addresses "value": 4949920000, "confirmations": 36, "amount": 49.4992, - "txid": "10311f341af41ef60d1f4929a09b23d1d9cc15a94a0aa0e9dbb58bbabe3661c9", - "address": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw" - }, - { - "vout": 0, - "height": 233, - "value": 15000, - "confirmations": 2, - "amount": 0.00015, - "txid": "34a3978a0346107cbfee86151b668842071a4b7b263844ca036ebd4eb97d9504", - "address": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw" + "txid": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", + "address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne" }, { "vout": 0, @@ -17432,8 +17437,17 @@ Returns a list of unspent outputs for a list of addresses "value": 10000, "confirmations": 36, "amount": 0.0001, - "txid": "10311f341af41ef60d1f4929a09b23d1d9cc15a94a0aa0e9dbb58bbabe3661c9", - "address": "bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw" + "txid": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", + "address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne" + }, + { + "vout": 0, + "height": 233, + "value": 15000, + "confirmations": 2, + "amount": 0.00015, + "txid": "d48b379c567d8e56220067a7bc50b6d785a11121b304f71ad1854660c070c9bf", + "address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne" } ], "next_cursor": null, @@ -17446,7 +17460,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w` (str, required) - The address to search for + + address: `bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9` (str, required) - The address to search for + unconfirmed: `True` (bool, optional) - Include unconfirmed transactions + Default: `True` + only_tx_hashes: `True` (bool, optional) - Return only the tx hashes @@ -17460,28 +17474,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "1bee7bf9fd45f14b217fe1f1891cfde210caf99e73917e443b3aeead0873e403" + "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551" }, { - "tx_hash": "914d90e1bdbf47a0508b42e525f3eb3118b0fac21482fef1681171175aa69a1f" + "tx_hash": "c022cb0c0b98e04e436d5df0c7410993517ee3e9e62f947ed1fd42997fa40f8f" }, { - "tx_hash": "92fb1e440634851d480f689d2b69e79ac08a2525fa84d09d7e5d92cde7d12a2d" + "tx_hash": "61f41ef6ab83e2901e1c39f89c0c5850308b98b4ed814cee93127808b7bd3c91" }, { - "tx_hash": "cee7c74a6fabf0a48cd101dadf3c5bb0c76136bf018b655ea175c04acca8ae37" + "tx_hash": "ce4ebdc15f8677b23ee6f97b3f33ff103d754d54f993ab6f528797866d22419b" }, { - "tx_hash": "a64193c8f1a6b62f282b9c72cd2ad75191e568d32a4d0198478dd68e32cd4342" + "tx_hash": "95db2791e37d288a1a4fb3c7414e3aca564b4024baaaf2c7bc77689349c31ca7" }, { - "tx_hash": "b4127b0eeb3aff1b3338eaaa67e1f1ffc8a1bb33cb227ae07a6b0761473f1550" + "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8" }, { - "tx_hash": "31c2a2a9142d3329d1fda064e195f04852a41f31b0140a9283c7cb171a897abf" + "tx_hash": "756966acacb7de325ad5f8f9b4ecc373854b6e7b0e706c205666bd59c3ed59c3" }, { - "tx_hash": "3a29fd55a51576c56bec724d5093c46034cbdc50def21513e45f8e1e23b403c4" + "tx_hash": "f1122472a2791b85e5881888994ffd1fbb6d2fbdf6ed9bc814022197b8d461e0" } ], "next_cursor": null, @@ -17494,7 +17508,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qv24qtl5pwetyqgyqr9kq7rsevfzsguz77takes` (str, required) - The address to search for. + + address: `bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m` (str, required) - The address to search for. + block_index (int, optional) - The block index to search from. + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -17505,8 +17519,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 1, - "tx_hash": "4fd44b5e21f86c9b1dab029e3c8a458f11d694248ea5b1f4cb7040313c82442b" + "block_index": 10, + "tx_hash": "e469fe31857a7f2fec51624324263fba1a5acd7a1ba7fcc455e2239904119973" } } ``` @@ -17516,7 +17530,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qqtncp7xv57paduls45htxvghxsgxe0j42nmjcw` (str, required) - The address to search for + + address: `bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne` (str, required) - The address to search for + unconfirmed (bool, optional) - Include unconfirmed transactions + Default: `False` + unspent_tx_hash (str, optional) - Filter by unspent_tx_hash @@ -17529,21 +17543,21 @@ Returns a list of unspent outputs for a specific address ``` { "result": [ - { - "vout": 2, - "height": 199, - "value": 4949920000, - "confirmations": 36, - "amount": 49.4992, - "txid": "10311f341af41ef60d1f4929a09b23d1d9cc15a94a0aa0e9dbb58bbabe3661c9" - }, { "vout": 0, "height": 233, "value": 15000, "confirmations": 2, "amount": 0.00015, - "txid": "34a3978a0346107cbfee86151b668842071a4b7b263844ca036ebd4eb97d9504" + "txid": "d48b379c567d8e56220067a7bc50b6d785a11121b304f71ad1854660c070c9bf" + }, + { + "vout": 2, + "height": 199, + "value": 4949920000, + "confirmations": 36, + "amount": 49.4992, + "txid": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310" }, { "vout": 0, @@ -17551,7 +17565,7 @@ Returns a list of unspent outputs for a specific address "value": 10000, "confirmations": 36, "amount": 0.0001, - "txid": "10311f341af41ef60d1f4929a09b23d1d9cc15a94a0aa0e9dbb58bbabe3661c9" + "txid": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310" } ], "next_cursor": null, @@ -17564,7 +17578,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q4ly3x0f2as8c8tx7vvuh334988yh60hmqlh2xp` (str, required) - Address to get pubkey for. + + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - Address to get pubkey for. + provided_pubkeys (str, optional) - Comma separated list of provided pubkeys. + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -17574,7 +17588,7 @@ Get pubkey for an address. ``` { - "result": "0307408a12b66851cf79b94bd87cd0a1789e01594d6687eb3d8420f7d6d3fae47b" + "result": "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" } ``` @@ -17583,7 +17597,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `cdc2b525987133f6bb046233114229d0ca92b18b364d23596d04dca86d956ee5` (str, required) - The transaction hash + + tx_hash: `24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b` (str, required) - The transaction hash + format: `hex` (str, optional) - Whether to return JSON output or raw hex + Default: `json` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -17593,7 +17607,7 @@ Get a transaction from the blockchain ``` { - "result": "02000000000101f323b859c97104df3a500ba25dfdc4eb0f8a0298c018de0cb63f89d7d1f802380100000000ffffffff03e8030000000000001600140e477ee266319f51493749f804b4e82edec447a000000000000000000c6a0adcf9f4aaf4dec5f5fa8f871409270100000016001462aa05fe817656402080196c0f0e19624504705e02473044022003ef12e0dbe06a722f7c3ceb8891338b0f0beff62c59abbef2303c559fe2fc02022046eb1219c958dd8d567ef3f5d4c957ceeaeb4d7b915913e25778f2d7778c8be10121031ec39ce6c918dc214196923499fc58226ddf98798321726f47e9073049e8495300000000" + "result": "020000000001011ceb53c6a3dce3d18382ad5e3780d0ea8d60fb0a2f98eb1251498608aa6858730100000000ffffffff03e803000000000000160014ca742dc81cac024b4cbde6236e1c599304258b4c00000000000000000c6a0ae188dda1bd4cd0f449a487140927010000001600140fa13933cab9aaea4cec2b6194cc224402aa6efe024730440220352aeb29117b931d5eebdf47f842688e1a116a0b6097cd220d203728209a24110220206b2946f514d6783bb2159466e097ef9cc807d5224470bc0c2003d49c322ea7012102aaee4b16d3883ba2f7cd0fc3e4ce2217159a774fd9f34ca4756a232e0799a47400000000" } ``` @@ -17744,27 +17758,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "tx_index": 107 }, - "timestamp": 1733401279.824624 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "memo": null, "quantity": 10000, - "source": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "status": "valid", - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "tx_index": 107, "asset_info": { "asset_longname": null, @@ -17775,22 +17789,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733401279.824624 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "CREDIT", "params": { - "address": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "asset": "XCP", "block_index": 234, "calling_function": "send", - "event": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -17800,22 +17814,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733401279.824624 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "address": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "asset": "XCP", "block_index": 234, - "event": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -17825,27 +17839,27 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733401279.824624 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1733401279.824624, + "block_time": 1733662956.0412934, "btc_amount": 0, - "data": "02000000000000000100000000000027108038b7789a4ce43e3b03cdafd630b6d4901b417c7f", + "data": "020000000000000001000000000000271080f73044edb424e8df3d85a40888172e373ed483c0", "destination": "", "fee": 10000, - "source": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "transaction_type": "enhanced_send", - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "tx_index": 107, - "utxos_info": " b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe:1 2 0", + "utxos_info": " f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf:1 2 0", "btc_amount_normalized": "0.00000000" }, - "timestamp": 1733401279.824624 + "timestamp": 1733662956.0412934 } ], "next_cursor": null, @@ -17874,19 +17888,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "CREDIT", "params": { - "address": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "asset": "XCP", "block_index": 234, "calling_function": "send", - "event": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -17896,7 +17910,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733401279.824624 + "timestamp": 1733662956.0412934 } ], "next_cursor": null, @@ -17909,7 +17923,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe` (str, required) - The hash of the transaction to return + + tx_hash: `f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor (str, optional) - The last event index to return @@ -17927,27 +17941,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "tx_index": 107 }, - "timestamp": 1733401279.824624 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "memo": null, "quantity": 10000, - "source": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "status": "valid", - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "tx_index": 107, "asset_info": { "asset_longname": null, @@ -17958,22 +17972,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733401279.824624 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "CREDIT", "params": { - "address": "bcrt1q8zmh3xjvuslrkq7d4ltrpdk5jqd5zlrlx0ay7w", + "address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "asset": "XCP", "block_index": 234, "calling_function": "send", - "event": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -17983,22 +17997,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733401279.824624 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "address": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "asset": "XCP", "block_index": 234, - "event": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733401275, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -18008,27 +18022,27 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733401279.824624 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1733401279.824624, + "block_time": 1733662956.0412934, "btc_amount": 0, - "data": "02000000000000000100000000000027108038b7789a4ce43e3b03cdafd630b6d4901b417c7f", + "data": "020000000000000001000000000000271080f73044edb424e8df3d85a40888172e373ed483c0", "destination": "", "fee": 10000, - "source": "bcrt1qfl6dgrsp5q8s8lskduew5k7rwuvm9z00y9mg2y", + "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "transaction_type": "enhanced_send", - "tx_hash": "b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "tx_index": 107, - "utxos_info": " b60bddd2b2043d97428bd233f6e020bb53fc7a480c069e6bd85cb2833ae52dbe:1 2 0", + "utxos_info": " f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf:1 2 0", "btc_amount_normalized": "0.00000000" }, - "timestamp": 1733401279.824624 + "timestamp": 1733662956.0412934 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/test/conftest.py b/counterparty-core/counterpartycore/test/conftest.py index 0ca452511a..2e402cb37b 100644 --- a/counterparty-core/counterpartycore/test/conftest.py +++ b/counterparty-core/counterpartycore/test/conftest.py @@ -353,7 +353,7 @@ def is_server_ready(): api_v2.is_server_ready = is_server_ready args = argparse.Namespace(**server_config) - api_server = api_v2.APIServer() + api_server = api_v2.APIServer(None) api_server.start(args) # wait for server to be ready diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 370ab91c6b..019ef40054 100644 --- a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json +++ b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json @@ -3,56 +3,56 @@ "result": [ { "block_index": 234, - "block_hash": "360fe4a638464554375560682e9ccf51ca9e7721e28e9c3e18080c3c09333be4", - "block_time": 1733654206, - "ledger_hash": "5394feb5908671378295b2994e54ba0a6ee5dc72307e644a630ceffaed39e3be", - "txlist_hash": "ae1fcb28a8f13bdfc6c90d0c3512a6e7d2ec197c7a5b9bd372cbe86ea79f45c9", - "messages_hash": "97ae54dc6c735be5c33642d2c006b00c9ea20a21ae4f9a5825e9c1432084d489", - "previous_block_hash": "434ed8d5110eba1cbd358db299e922001fa04e0ad0ed0ad27fe3b9ecf9e10d35", + "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", + "block_time": 1733662951, + "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", + "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", + "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", + "previous_block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482", "difficulty": 545259519, "transaction_count": 1 }, { "block_index": 233, - "block_hash": "434ed8d5110eba1cbd358db299e922001fa04e0ad0ed0ad27fe3b9ecf9e10d35", - "block_time": 1733654201, - "ledger_hash": "897f3dc1960fe57c91e6d090ed9c2aa0c602cb1f2ba3d09d404a8086c8858ebf", - "txlist_hash": "e50337d0c5fc209dae7ef3bcacf22eb9909bb1d16bba2205a839e317881982d5", - "messages_hash": "5bb475eea38901dc7fdcfdcbc8598a8e25dac463ff9ec2afe13ae957309a5d20", - "previous_block_hash": "5413c6000c9e29125abafe518c196f46ad945535a583952234af02b757fe87a7", + "block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482", + "block_time": 1733662945, + "ledger_hash": "c4effb812a79178863a6ce95a80026fdcbbc521bcd82420d62b64d1662592807", + "txlist_hash": "faa07c0ac1aa2d221ab2faf26a4de852b4a50bcd5a73981f9ba109caeb3f9eea", + "messages_hash": "a9fa900b8f6522f9dc91f323b9d39abbf0d8bb9599e6bc75fb0dde9729d12d3f", + "previous_block_hash": "5b934ef246230a877ae6d123edb3ed2e9e334e4e08e11d0d96617acbd2940927", "difficulty": 545259519, "transaction_count": 0 }, { "block_index": 232, - "block_hash": "5413c6000c9e29125abafe518c196f46ad945535a583952234af02b757fe87a7", - "block_time": 1733654196, - "ledger_hash": "2f875fc17ef973690c99825b94dd92e7732e8bcd1dbe9cd0f1ea2883523f7bd3", - "txlist_hash": "7e6a543c18e1ea05644fe96ee59cfdfb7c490f90e5045ff11de50c1d130f15fe", - "messages_hash": "a58cab3cff16e3e47f61b2ab549753b16dcabe1a4ca23e6ecca68e1e5e84dbc5", - "previous_block_hash": "6f641609b3f62997cc92ae2c5489e2d1a077d171655ec6120654a6bfd97217d1", + "block_hash": "5b934ef246230a877ae6d123edb3ed2e9e334e4e08e11d0d96617acbd2940927", + "block_time": 1733662942, + "ledger_hash": "e32d339f6d64ba68194a1ee7f4dd31b6707316212fbebc113225d2911e9da526", + "txlist_hash": "6b32615860ef61fe693553866e61d8b9ac89c3b0c68970b803ae5e8d77953142", + "messages_hash": "0b1dded5296e4e8a337f1705a58d44df91ef8edd6eb463ab479f219b18a35bf2", + "previous_block_hash": "24100a2e929da6ee163f9710db8efbaca85f19101a3b869caf7c47fc69ea1e79", "difficulty": 545259519, "transaction_count": 1 }, { "block_index": 231, - "block_hash": "6f641609b3f62997cc92ae2c5489e2d1a077d171655ec6120654a6bfd97217d1", - "block_time": 1733654193, - "ledger_hash": "129dfe73ce18af23949f47330615eb078fc798b1c30ce435b97253e351d3938e", - "txlist_hash": "19fcf1b9ac6cfc30fdcb384030648c36c852d6c0046dd8c099bcd5e233afcd11", - "messages_hash": "866db7720758fb63c7db54892f3a6c04cbaff0b616afe7f4f0db13f963a98dea", - "previous_block_hash": "66beb5ea5d98fb0d256666c346474ecd19edb7b86c8adc0a4ec1ee0bb88a5cca", + "block_hash": "24100a2e929da6ee163f9710db8efbaca85f19101a3b869caf7c47fc69ea1e79", + "block_time": 1733662928, + "ledger_hash": "4c1955e9609c751f3bd23ab4e79524f761a774e4817f7bfa4945f01ed5fc2fe8", + "txlist_hash": "2d9b43604aa3d491cb58bfbfe246a19be9a1cb49313411571ab32fd493b1dd1f", + "messages_hash": "fa344060ce89302213bead5a679a8e936eb9b6f03963893d09fe986cd961a41b", + "previous_block_hash": "4e86867ff19ab5f8c6edfcce7beab0df102e903f9a94ad15af6c0fe5935916bc", "difficulty": 545259519, "transaction_count": 1 }, { "block_index": 230, - "block_hash": "66beb5ea5d98fb0d256666c346474ecd19edb7b86c8adc0a4ec1ee0bb88a5cca", - "block_time": 1733654190, - "ledger_hash": "804811fd4365022db0a2bac13ba63ef8e3385f4be36235bafc429836dffa7044", - "txlist_hash": "58576010915254b81d31dc51924bca80ae2a53a0a6c0bd7dc4585d39833aedf1", - "messages_hash": "a23b80911ed7e1ea52f92ad6e25229a84f5f641af4e5af43079d0566fdd975f1", - "previous_block_hash": "2c597d2a7b4a409cd227cc978aac1797dbe8131e82fa2db1b75a193f67f4a272", + "block_hash": "4e86867ff19ab5f8c6edfcce7beab0df102e903f9a94ad15af6c0fe5935916bc", + "block_time": 1733662924, + "ledger_hash": "3b4ac818c89ec20fe795ff45aa0ddb6252a42e5d39e887bec818b1a4e2835172", + "txlist_hash": "8df69dd5bc43012fbfed4d7c9d79bd6b0e47e75fac8c98f89ceaa562d20b3ed7", + "messages_hash": "050f2205d08ef79443c4575005e8991d8d4f17996f53f1942b9702b8bbe59c31", + "previous_block_hash": "7cecdf143482d91a29a97d0fee2369913272ce9d8c597c5b8916aae7e9f0fc6f", "difficulty": 545259519, "transaction_count": 1 } @@ -63,12 +63,12 @@ "/v2/blocks/last": { "result": { "block_index": 234, - "block_hash": "360fe4a638464554375560682e9ccf51ca9e7721e28e9c3e18080c3c09333be4", - "block_time": 1733654206, - "ledger_hash": "5394feb5908671378295b2994e54ba0a6ee5dc72307e644a630ceffaed39e3be", - "txlist_hash": "ae1fcb28a8f13bdfc6c90d0c3512a6e7d2ec197c7a5b9bd372cbe86ea79f45c9", - "messages_hash": "97ae54dc6c735be5c33642d2c006b00c9ea20a21ae4f9a5825e9c1432084d489", - "previous_block_hash": "434ed8d5110eba1cbd358db299e922001fa04e0ad0ed0ad27fe3b9ecf9e10d35", + "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", + "block_time": 1733662951, + "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", + "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", + "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", + "previous_block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482", "difficulty": 545259519, "transaction_count": 1 } @@ -76,12 +76,12 @@ "/v2/blocks/": { "result": { "block_index": 234, - "block_hash": "360fe4a638464554375560682e9ccf51ca9e7721e28e9c3e18080c3c09333be4", - "block_time": 1733654206, - "ledger_hash": "5394feb5908671378295b2994e54ba0a6ee5dc72307e644a630ceffaed39e3be", - "txlist_hash": "ae1fcb28a8f13bdfc6c90d0c3512a6e7d2ec197c7a5b9bd372cbe86ea79f45c9", - "messages_hash": "97ae54dc6c735be5c33642d2c006b00c9ea20a21ae4f9a5825e9c1432084d489", - "previous_block_hash": "434ed8d5110eba1cbd358db299e922001fa04e0ad0ed0ad27fe3b9ecf9e10d35", + "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", + "block_time": 1733662951, + "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", + "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", + "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", + "previous_block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482", "difficulty": 545259519, "transaction_count": 1 } @@ -89,12 +89,12 @@ "/v2/blocks/": { "result": { "block_index": 234, - "block_hash": "360fe4a638464554375560682e9ccf51ca9e7721e28e9c3e18080c3c09333be4", - "block_time": 1733654206, - "ledger_hash": "5394feb5908671378295b2994e54ba0a6ee5dc72307e644a630ceffaed39e3be", - "txlist_hash": "ae1fcb28a8f13bdfc6c90d0c3512a6e7d2ec197c7a5b9bd372cbe86ea79f45c9", - "messages_hash": "97ae54dc6c735be5c33642d2c006b00c9ea20a21ae4f9a5825e9c1432084d489", - "previous_block_hash": "434ed8d5110eba1cbd358db299e922001fa04e0ad0ed0ad27fe3b9ecf9e10d35", + "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", + "block_time": 1733662951, + "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", + "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", + "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", + "previous_block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482", "difficulty": 545259519, "transaction_count": 1 } @@ -103,17 +103,17 @@ "result": [ { "tx_index": 106, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_hash": "360fe4a638464554375560682e9ccf51ca9e7721e28e9c3e18080c3c09333be4", - "block_time": 1733654206, - "source": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", - "destination": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", + "block_time": 1733662951, + "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1 435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0 3 1", + "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", "transaction_type": "dispense", "events": [ { @@ -122,26 +122,26 @@ "params": { "asset": "MYASSETA", "block_index": 234, - "destination": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 0, "quantity": 2000000000, - "source": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 925, @@ -149,14 +149,14 @@ "params": { "asset": "XCP", "block_index": 234, - "destination": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 1, "quantity": 2000000000, - "source": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -166,9 +166,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 927, @@ -177,9 +177,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": 0, - "tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -189,9 +189,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 928, @@ -200,14 +200,14 @@ "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -218,9 +218,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 } ], "unpacked_data": { @@ -247,11 +247,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 234, - "ledger_hash": "5394feb5908671378295b2994e54ba0a6ee5dc72307e644a630ceffaed39e3be", - "messages_hash": "97ae54dc6c735be5c33642d2c006b00c9ea20a21ae4f9a5825e9c1432084d489", + "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", + "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", "transaction_count": 1, - "txlist_hash": "ae1fcb28a8f13bdfc6c90d0c3512a6e7d2ec197c7a5b9bd372cbe86ea79f45c9", - "block_time": 1733654206 + "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", + "block_time": 1733662951 }, "tx_hash": null }, @@ -260,10 +260,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106 }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c" + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" }, { "event_index": 928, @@ -272,14 +272,14 @@ "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -290,7 +290,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c" + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" }, { "event_index": 927, @@ -299,9 +299,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": 0, - "tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -311,22 +311,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c" + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" }, { "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -336,7 +336,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c" + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" } ], "next_cursor": 925, @@ -374,16 +374,16 @@ "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -393,7 +393,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c" + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" }, { "event_index": 924, @@ -403,12 +403,12 @@ "asset": "XCP", "block_index": 234, "calling_function": "utxo move", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 2000000000, "tx_index": 106, - "utxo": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", - "utxo_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "block_time": 1733654206, + "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -418,7 +418,7 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c" + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" }, { "event_index": 921, @@ -428,22 +428,22 @@ "asset": "MYASSETA", "block_index": 234, "calling_function": "utxo move", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 2000000000, "tx_index": 106, - "utxo": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", - "utxo_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "block_time": 1733654206, + "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c" + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" } ], "next_cursor": null, @@ -453,15 +453,15 @@ "result": [ { "block_index": 234, - "address": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -477,11 +477,11 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "utxo": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", - "utxo_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "block_time": 1733654206, + "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -497,15 +497,15 @@ "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "utxo": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", - "utxo_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "block_time": 1733654206, + "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -523,11 +523,11 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "utxo": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", - "utxo_address": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", - "block_time": 1733654206, + "utxo": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "utxo_address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -543,15 +543,15 @@ "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "utxo": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", - "utxo_address": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", - "block_time": 1733654206, + "utxo": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "utxo_address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -565,9 +565,9 @@ "result": [ { "type": "order", - "object_id": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890", + "object_id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", "block_index": 211, - "block_time": 1733654103 + "block_time": 1733662819 } ], "next_cursor": null, @@ -577,12 +577,12 @@ "result": [ { "tx_index": 63, - "tx_hash": "f573e95a41691b6842b786cbc6586d33101dafaa60c189b4ca7b718a32261db1", + "tx_hash": "de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6", "block_index": 188, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "offer_hash": "eb952b15d4f8a56bee18f52cff3a452d5bae33bc750ec75365fdb59b176c1918", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "offer_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", "status": "valid", - "block_time": 1733653974 + "block_time": 1733662715 } ], "next_cursor": null, @@ -592,18 +592,18 @@ "result": [ { "tx_index": 101, - "tx_hash": "2f8cbeec1de34a0acdb2a73b97f43a4bc9d6727e21551d053a24555f73ff3e26", + "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", "block_index": 228, - "source": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "asset": "PREMINT", "quantity": 50, "tag": "soft cap not reached", "status": "valid", - "block_time": 1733654183, + "block_time": 1733662918, "asset_info": { "asset_longname": null, "description": "My super description", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": false }, @@ -617,14 +617,14 @@ "result": [ { "tx_index": 105, - "tx_hash": "754a8571472b2a462478ef7ab57f7544660e6246b14e8ff610be7215c05acc9d", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "msg_index": 0, "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "issuer": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "transfer": false, "callable": false, "call_date": 0, @@ -638,7 +638,7 @@ "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", - "block_time": 1733654196, + "block_time": 1733662942, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -650,17 +650,17 @@ "result": [ { "tx_index": 106, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", - "destination": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -673,21 +673,21 @@ }, { "tx_index": 106, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", - "destination": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -703,26 +703,26 @@ { "tx_index": 106, "dispense_index": 0, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "destination": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "btc_amount": 1000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "last_status_tx_hash": null, - "origin": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -737,7 +737,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -756,15 +756,15 @@ "result": [ { "tx_index": 65, - "tx_hash": "d8579587191a163e823cc31cdb1f7531c5149b3c5df8d17a4816834b078a66b7", + "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", "block_index": 190, - "source": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", - "destination": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, - "block_time": 1733653992, + "block_time": 1733662722, "fee_paid_normalized": "0.00600000" } ], @@ -774,10 +774,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "754a8571472b2a462478ef7ab57f7544660e6246b14e8ff610be7215c05acc9d", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "tx_index": 105, "block_index": 232, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "asset": "OPENFAIR", "asset_parent": null, "asset_longname": null, @@ -801,7 +801,7 @@ "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733654196, + "block_time": 1733662942, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -816,21 +816,21 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "2c09e21e3acddbcfb05c8e148555306f0cd61b27370cbaeba326dab2ae860635", + "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", "tx_index": 97, "block_index": 221, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "fairminter_tx_hash": "49b096b7c2fe668062286cc86a91741a79aa8e6ee219f8060ffe79f99614067a", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "fairminter_tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", - "block_time": 1733654158, + "block_time": 1733662883, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -846,17 +846,17 @@ "result": [ { "tx_index": 106, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_hash": "360fe4a638464554375560682e9ccf51ca9e7721e28e9c3e18080c3c09333be4", - "block_time": 1733654206, - "source": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", - "destination": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", + "block_time": 1733662951, + "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1 435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0 3 1", + "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", "transaction_type": "dispense", "events": [ { @@ -865,26 +865,26 @@ "params": { "asset": "MYASSETA", "block_index": 234, - "destination": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 0, "quantity": 2000000000, - "source": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 925, @@ -892,14 +892,14 @@ "params": { "asset": "XCP", "block_index": 234, - "destination": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 1, "quantity": 2000000000, - "source": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -909,9 +909,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 927, @@ -920,9 +920,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": 0, - "tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -932,9 +932,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 928, @@ -943,14 +943,14 @@ "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -961,9 +961,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 } ], "unpacked_data": { @@ -976,17 +976,17 @@ }, { "tx_index": 105, - "tx_hash": "754a8571472b2a462478ef7ab57f7544660e6246b14e8ff610be7215c05acc9d", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "block_index": 232, - "block_hash": "5413c6000c9e29125abafe518c196f46ad945535a583952234af02b757fe87a7", - "block_time": 1733654196, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "block_hash": "5b934ef246230a877ae6d123edb3ed2e9e334e4e08e11d0d96617acbd2940927", + "block_time": 1733662942, + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " 754a8571472b2a462478ef7ab57f7544660e6246b14e8ff610be7215c05acc9d:1 2 0", + "utxos_info": " ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8:1 2 0", "transaction_type": "fairminter", "events": [ { @@ -1012,12 +1012,12 @@ "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "start_block": 0, "status": "open", - "tx_hash": "754a8571472b2a462478ef7ab57f7544660e6246b14e8ff610be7215c05acc9d", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "tx_index": 105, - "block_time": 1733654196, + "block_time": 1733662942, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1025,9 +1025,9 @@ "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "754a8571472b2a462478ef7ab57f7544660e6246b14e8ff610be7215c05acc9d", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "block_index": 232, - "block_time": 1733654196 + "block_time": 1733662942 }, { "event_index": 910, @@ -1037,11 +1037,11 @@ "asset_longname": null, "asset_name": "OPENFAIR", "block_index": 232, - "block_time": 1733654196 + "block_time": 1733662942 }, - "tx_hash": "754a8571472b2a462478ef7ab57f7544660e6246b14e8ff610be7215c05acc9d", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "block_index": 232, - "block_time": 1733654196 + "block_time": 1733662942 }, { "event_index": 911, @@ -1058,22 +1058,22 @@ "divisible": true, "fair_minting": true, "fee_paid": 50000000.0, - "issuer": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": "valid", "transfer": false, - "tx_hash": "754a8571472b2a462478ef7ab57f7544660e6246b14e8ff610be7215c05acc9d", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "tx_index": 105, - "block_time": 1733654196, + "block_time": 1733662942, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "754a8571472b2a462478ef7ab57f7544660e6246b14e8ff610be7215c05acc9d", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "block_index": 232, - "block_time": 1733654196 + "block_time": 1733662942 } ], "unpacked_data": { @@ -1184,53 +1184,53 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380ea8e3de055b7d485d24fa82a6734f9cfbcfe5c04806fee8ba56e259edd8957d1297baf377e3d9109a280444dac66fefa98354ded2447aec63279aebf4e6b40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d260d2e34c89b206a0797add1942aa6ca5cd4fdf80f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "73bdd77075418de2f1c4752d7d5a6ddf9fb9560dfc3c2b9bcd7126db77daf12b", + "hash": "799f8e97f7ac1576fd79057d81c71818eb79ec38be99555350cddcf84d96dfb2", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "d9db89f11b511852341b9aea2b442ca2ed2862c4703bd671b265eac8174c26a7", + "hash": "60400b16bf8d7717161813673d78b0fe4f50d988f62b2629c964461260f93f31", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "920d9f4a5d247ee14def243d5a3a91f5c7e936dfb7a208bc35731ac0f077e275", + "hash": "5b7cf6ab95178b2526a85bff6788f98be4caa143471d933e8363162a3247077c", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "c250ec49ceb71f977e199d3a67927cf2f061acc0a447b15798a689fae078360b", + "hash": "fa97d472b475f0dd1745c5e70af11bd0ab56fb354bb5cc0e7699ce3880237765", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "bae08f72669f0c6186fadb01360808d3699446d4426b97c446249bb843854d95", + "hash": "e3e15ea04b644d1d833088a5b0ee60a3bb4236b461ef3d865504e1949b1ba067", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "17500f718ad88287aa0946b9e50a2bdbe622f546c401bc324dc21d5a318e6635", + "hash": "d54e558dd98b683037111a91f1843db7196bf06116d3530fd353c6a3bb959e5b", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -1240,50 +1240,50 @@ "vout": [ { "value": 1000, - "script_pub_key": "512102a57db78ab15eab2e967e2200348c44f068cbb31bd7eb91c0d2e644f54af89deb2103d511376350633ab3cc6b58f750d042d58bf27bfe0fc923e2ac2dfe185293cadf21024347dc3befd17c460cbe14d7d9abd3c758397c7e9a3370cd681dc1036c802b5a53ae" + "script_pub_key": "51210397128e37f2c839dd94b4d90c4f7df343238ca6543dd370eb16e93907f4fd030a2102ad03ec3302f2c2ed16edcdd6fda9de031a92f16e3c292cde49cf61d3ab2a8d002103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03353ae" }, { "value": 1000, - "script_pub_key": "512103a57db78ab15eab2e96486fee9021640bbae7aa701c529e68f884936c0d80b70421028915b70cbee89ff7fc4010cbbbcb6bae24c505c39eca040f8d0d3d4d2c6952a121024347dc3befd17c460cbe14d7d9abd3c758397c7e9a3370cd681dc1036c802b5a53ae" + "script_pub_key": "51210297128e37f2c839dd944db29c45ec6ef4d56c9b1b257c4991cbf598cd109c1ab32103e2dc6cc432b62f7327b0875ec4c7d68b0dbcc650e8a0693304d8c37978c404252103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03353ae" }, { "value": 1000, - "script_pub_key": "512103847db78ab15eab2e967d2203b4664acd889e04cf52398a4393aa1b750d4463ad21028915b70cbee89fdde9f5857e07016bae24c505c39ec08162e860527eac69527a21024347dc3befd17c460cbe14d7d9abd3c758397c7e9a3370cd681dc1036c802b5a53ae" + "script_pub_key": "512102b6128e37f2c839dd94b7d90fcfaf1391c0c02fe63b735dbaa0db10d41058ce742102e2dc6cc432b62f59320512eb780dd68b0dbcc650e8aaec5e61b5ac4af8c404d42103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03353ae" }, { "value": 29999987000, - "script_pub_key": "0014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadc" + "script_pub_key": "0014a0a90e6acc5b35a094a931d109e64b559674fb84" } ], "vtxinwit": [ [ - "304402205f1e77c31c27a6fe9db31bc5a4a0f7d6030aca965ae05d8d236181a4d91abeb502203b0291e3724f300381254dffefa5624106eaa42766b2b02dda6f11e5e623b38201", - "024347dc3befd17c460cbe14d7d9abd3c758397c7e9a3370cd681dc1036c802b5a" + "30440220216482cdae9c1635bc183d916fdc36c7efbbe593b5b6c87b386d7fc98ecd0f990220060319eacf6920b8c98b7ae1e1db5e64483764e2e8e27b4d739716f47bd508ee01", + "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" ], [ - "30440220040fa2c4b2f49dda87f949a91e63bfcbba052b25a7c08ef0665fb2f4b86566d4022020cd0ce8dbed8da7f06f5e013fc4d45487001f2eae9340b816edf249421e313001", - "024347dc3befd17c460cbe14d7d9abd3c758397c7e9a3370cd681dc1036c802b5a" + "304402202f1cfce226cd446a2c00d9e6da89eb4b2fb7c9aa6f20741845e98ec76be4582e022044e302fa7a26c9004f5f7674feda5497aa3e101a380e947fdbc23a08a893d06e01", + "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" ], [ - "30440220649a24adb2a7ad10e9c32442bbaa1e666edd51cd5ec9823acecf761d6bf4ddfd02202916b1c8e9572425dba00874db735d87bf99f131bd07df87172edcb4a290bfe101", - "024347dc3befd17c460cbe14d7d9abd3c758397c7e9a3370cd681dc1036c802b5a" + "3044022005278a7b8c76c672f4f7f1c7af5c4dba5884adcfb8f7d00e22a36034e2fe89680220214c055c37265fea873a6c6c03e06c3546aa7f9d817a0c1ac8f0bdb9e6ebd5bc01", + "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" ], [ - "30440220457fa311d9bef7df4845cfe89b746f7423e6fbbded23a9d08a073e35d7c7bb590220120df6e52e6beb28c51dcc330d7f24c5c1a92a46f569a530d1013589d8afb97801", - "024347dc3befd17c460cbe14d7d9abd3c758397c7e9a3370cd681dc1036c802b5a" + "304402201d11fa7da8a8a001a34bf71eb4b8ed43f558c1538464782f955120d728907a1b0220356d21ffbda65e06543a6500f7e015f3bbf08c29acbc204b9467b93c3d3bc1c901", + "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" ], [ - "304402203203bac0f6f143ad9d65c4edfbdc3789deec62ae5c2bebf970e900be2e164157022076f88457bffe267882d3919f315d526817502f4eb9895a42b20e923166d04d9601", - "024347dc3befd17c460cbe14d7d9abd3c758397c7e9a3370cd681dc1036c802b5a" + "30440220764f43fd27dca8eb357be67bfc4720ea6cfd61802866eb2640c0f3fbbb1f705202206c927f6c72222bf964122682a669bc3b30de078530cb1f443d21831bb87fce8501", + "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" ], [ - "30440220276fa5851a2103377aa002013263828b25157b468f0036f04ff09d572398855c0220467f51ea4a82a2138582bd8f52838c50b91320e66536b750d088c1bc6ddb3de201", - "024347dc3befd17c460cbe14d7d9abd3c758397c7e9a3370cd681dc1036c802b5a" + "304402205b6744ccdca0ecc12b0ba2c8b4a6965507c328abcb89e07d13e0a76f0655fe6a02207c5200c79a7e87a01b5d20a8ecb18e3387922a47e246c18e9ec55e2e2d2c760801", + "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" ] ], "lock_time": 0, - "tx_hash": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0", - "tx_id": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0" + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_id": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab" }, "unpacked_data": { "message_type": "mpma_send", @@ -1291,14 +1291,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "quantity": 10, "memo": "memo2", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -1306,7 +1306,7 @@ }, { "asset": "XCP", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "quantity": 10, "memo": "memo1", "memo_is_hex": false, @@ -1326,18 +1326,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0200000000000000010000000000002710806fee8ba56e259edd8957d1297baf377e3d9109a2", + "data": "020000000000000001000000000000271080f73044edb424e8df3d85a40888172e373ed483c0", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "ef267ce2b70835e5f106e35bb12e22c8b21129f920711b1281eb67c9459b4668", + "hash": "002f40bdbe04cb71270828b3bd36a42730fe49089bc95f262b95834124b9463b", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -1347,22 +1347,22 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e540ff8c5ee79a3698727903355c0fbdc44e27313d276b22586f26f8dc1b984ae9e37834a8aa78828e68bdb742efe" + "script_pub_key": "6a2e0d3783d1420c0f9a2161d03e6e1a07fffe253f36576d8cea8dd5e795dda625acc0c60a786218ae94ac1adb38184a" }, { "value": 4949940000, - "script_pub_key": "0014444dac66fefa98354ded2447aec63279aebf4e6b" + "script_pub_key": "0014287acd9953ee89fa6b938a43fd6515acb4fd1e0f" } ], "vtxinwit": [ [ - "3044022064c873cef68745f271d16269852df5d4ccbac2c6e37e3b31915f55f2cc0842e602207b44146e40574598fdd67bc386e50bcbc8b54e83583e3dfe5f8fca48ee36650201", - "0216523da5ff7e7c12e1bf4ed26f38329adb24a87c44dc8e95401efcc6e76778a4" + "304402201944e806dd31809c8cea0f60894ad434b062224d3e68282275203c4af83465ad022069f435c39488f541a9d6cd663ed29fe02a3aaa8c37ba50982e39751ab2381ba701", + "030fc8286999a5759d9096b4f3d4f6c0377e40a1cf68bfa63856e63bd06bc878a5" ] ], "lock_time": 0, - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", - "tx_id": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e" + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_id": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf" }, "unpacked_data": { "message_type": "enhanced_send", @@ -1370,7 +1370,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "memo": null, "asset_info": { "asset_longname": null, @@ -1397,17 +1397,17 @@ "/v2/transactions/": { "result": { "tx_index": 106, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_hash": "360fe4a638464554375560682e9ccf51ca9e7721e28e9c3e18080c3c09333be4", - "block_time": 1733654206, - "source": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", - "destination": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", + "block_time": 1733662951, + "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1 435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0 3 1", + "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", "transaction_type": "dispense", "events": [ { @@ -1416,26 +1416,26 @@ "params": { "asset": "MYASSETA", "block_index": 234, - "destination": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 0, "quantity": 2000000000, - "source": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 925, @@ -1443,14 +1443,14 @@ "params": { "asset": "XCP", "block_index": 234, - "destination": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 1, "quantity": 2000000000, - "source": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1460,9 +1460,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 927, @@ -1471,9 +1471,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": 0, - "tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1483,9 +1483,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 928, @@ -1494,14 +1494,14 @@ "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1512,9 +1512,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 } ], "unpacked_data": { @@ -1529,17 +1529,17 @@ "/v2/transactions/": { "result": { "tx_index": 106, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_hash": "360fe4a638464554375560682e9ccf51ca9e7721e28e9c3e18080c3c09333be4", - "block_time": 1733654206, - "source": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", - "destination": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", + "block_time": 1733662951, + "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1 435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0 3 1", + "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", "transaction_type": "dispense", "events": [ { @@ -1548,26 +1548,26 @@ "params": { "asset": "MYASSETA", "block_index": 234, - "destination": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 0, "quantity": 2000000000, - "source": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 925, @@ -1575,14 +1575,14 @@ "params": { "asset": "XCP", "block_index": 234, - "destination": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 1, "quantity": 2000000000, - "source": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1592,9 +1592,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 927, @@ -1603,9 +1603,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": 0, - "tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1615,9 +1615,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 928, @@ -1626,14 +1626,14 @@ "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1644,9 +1644,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 } ], "unpacked_data": { @@ -1665,12 +1665,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106 }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 928, @@ -1679,14 +1679,14 @@ "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1697,9 +1697,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 927, @@ -1708,9 +1708,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": 0, - "tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1720,24 +1720,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1747,9 +1747,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 925, @@ -1757,14 +1757,14 @@ "params": { "asset": "XCP", "block_index": 234, - "destination": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 1, "quantity": 2000000000, - "source": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1774,9 +1774,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 } ], "next_cursor": 924, @@ -1789,12 +1789,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106 }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 928, @@ -1803,14 +1803,14 @@ "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1821,9 +1821,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 927, @@ -1832,9 +1832,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": 0, - "tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1844,24 +1844,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1871,9 +1871,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 925, @@ -1881,14 +1881,14 @@ "params": { "asset": "XCP", "block_index": 234, - "destination": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 1, "quantity": 2000000000, - "source": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1898,9 +1898,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 } ], "next_cursor": 924, @@ -1910,17 +1910,17 @@ "result": [ { "tx_index": 106, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", - "destination": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1933,21 +1933,21 @@ }, { "tx_index": 106, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", - "destination": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -1963,26 +1963,26 @@ { "tx_index": 106, "dispense_index": 0, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "destination": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "btc_amount": 1000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "last_status_tx_hash": null, - "origin": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1997,7 +1997,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2018,16 +2018,16 @@ "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2037,9 +2037,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 924, @@ -2049,12 +2049,12 @@ "asset": "XCP", "block_index": 234, "calling_function": "utxo move", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 2000000000, "tx_index": 106, - "utxo": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", - "utxo_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "block_time": 1733654206, + "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2064,9 +2064,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 921, @@ -2076,24 +2076,24 @@ "asset": "MYASSETA", "block_index": 234, "calling_function": "utxo move", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 2000000000, "tx_index": 106, - "utxo": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", - "utxo_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "block_time": 1733654206, + "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 } ], "next_cursor": null, @@ -2105,16 +2105,16 @@ "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2124,9 +2124,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 924, @@ -2136,12 +2136,12 @@ "asset": "XCP", "block_index": 234, "calling_function": "utxo move", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 2000000000, "tx_index": 106, - "utxo": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", - "utxo_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "block_time": 1733654206, + "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2151,9 +2151,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 921, @@ -2163,24 +2163,24 @@ "asset": "MYASSETA", "block_index": 234, "calling_function": "utxo move", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 2000000000, "tx_index": 106, - "utxo": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", - "utxo_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "block_time": 1733654206, + "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 } ], "next_cursor": null, @@ -2194,7 +2194,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -2204,7 +2204,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -2216,7 +2216,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -2226,7 +2226,7 @@ "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -2238,7 +2238,7 @@ "total": 180, "addresses": [ { - "address": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "utxo": null, "utxo_address": null, "quantity": 180, @@ -2248,7 +2248,7 @@ "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -2260,7 +2260,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "utxo": null, "utxo_address": null, "quantity": 40, @@ -2270,7 +2270,7 @@ "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -2282,7 +2282,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "utxo": null, "utxo_address": null, "quantity": 19, @@ -2292,7 +2292,7 @@ "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -2306,17 +2306,17 @@ "result": [ { "tx_index": 81, - "tx_hash": "f6c181806e13f071f09570069183d9759d4a9f8aab717fa3fa10c12e7878ea75", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_hash": "71b93fe3e2510b7799446016e5e06d495114469625f791534ac011f5f10a76ce", - "block_time": 1733654070, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "block_hash": "662c168d8674e444aa102dfae48120064c0f87a9a881dcd17c07cae9ab69839a", + "block_time": 1733662789, + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadc806fee8ba56e259edd8957d1297baf377e3d9109a280444dac66fefa98354ded2447aec63279aebf4e6b88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380a0a90e6acc5b35a094a931d109e64b559674fb8480f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " f6c181806e13f071f09570069183d9759d4a9f8aab717fa3fa10c12e7878ea75:0 4 ", + "utxos_info": " 5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf:0 4 ", "transaction_type": "mpma", "events": [ { @@ -2324,24 +2324,24 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc" + "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8" }, - "tx_hash": "f6c181806e13f071f09570069183d9759d4a9f8aab717fa3fa10c12e7878ea75", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_time": 1733654070 + "block_time": 1733662789 }, { "event_index": 705, "event": "ORDER_EXPIRATION", "params": { "block_index": 205, - "order_hash": "c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", - "source": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", - "block_time": 1733654070 + "order_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "block_time": 1733662789 }, - "tx_hash": "f6c181806e13f071f09570069183d9759d4a9f8aab717fa3fa10c12e7878ea75", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_time": 1733654070 + "block_time": 1733662789 }, { "event_index": 711, @@ -2349,27 +2349,27 @@ "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "memo": "the memo", "msg_index": 0, "quantity": 10, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "f6c181806e13f071f09570069183d9759d4a9f8aab717fa3fa10c12e7878ea75", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "tx_index": 81, - "block_time": 1733654070, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "f6c181806e13f071f09570069183d9759d4a9f8aab717fa3fa10c12e7878ea75", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_time": 1733654070 + "block_time": 1733662789 }, { "event_index": 712, @@ -2377,27 +2377,27 @@ "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "f6c181806e13f071f09570069183d9759d4a9f8aab717fa3fa10c12e7878ea75", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "tx_index": 81, - "block_time": 1733654070, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "f6c181806e13f071f09570069183d9759d4a9f8aab717fa3fa10c12e7878ea75", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_time": 1733654070 + "block_time": 1733662789 }, { "event_index": 713, @@ -2405,15 +2405,15 @@ "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "f6c181806e13f071f09570069183d9759d4a9f8aab717fa3fa10c12e7878ea75", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "tx_index": 81, - "block_time": 1733654070, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2423,9 +2423,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "f6c181806e13f071f09570069183d9759d4a9f8aab717fa3fa10c12e7878ea75", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_time": 1733654070 + "block_time": 1733662789 } ], "unpacked_data": { @@ -2434,14 +2434,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "quantity": 10, "memo": "the memo", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "quantity": 10, "memo": "memo1", "memo_is_hex": false @@ -2451,30 +2451,30 @@ }, { "tx_index": 80, - "tx_hash": "2e9a043723665e25f4b2021b5fe456913dcd48e6868f82e1edf14b7265e80db9", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "block_hash": "4f06e68522e018fae2cec83582b0f161630363471d1dc95a04e57707df810b34", - "block_time": 1733654067, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "block_hash": "31c2a66bb4ad76bc8c708308bfcef980d21165fb8136cf83b22bc1a4a95d61b6", + "block_time": 1733662785, + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadc806fee8ba56e259edd8957d1297baf377e3d9109a280444dac66fefa98354ded2447aec63279aebf4e6bc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380a0a90e6acc5b35a094a931d109e64b559674fb8480f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0fc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 2e9a043723665e25f4b2021b5fe456913dcd48e6868f82e1edf14b7265e80db9:0 4 ", + "utxos_info": " b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4:0 4 ", "transaction_type": "mpma", "events": [ { "event_index": 685, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db_c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", - "order_match_id": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db_c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", + "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "status": "expired" }, - "tx_hash": "2e9a043723665e25f4b2021b5fe456913dcd48e6868f82e1edf14b7265e80db9", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "block_time": 1733654067 + "block_time": 1733662785 }, { "event_index": 687, @@ -2484,26 +2484,26 @@ "get_remaining": 3000, "give_remaining": 3000, "status": "open", - "tx_hash": "c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", + "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "fee_required_remaining_normalized": "0.00000000" }, - "tx_hash": "2e9a043723665e25f4b2021b5fe456913dcd48e6868f82e1edf14b7265e80db9", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "block_time": 1733654067 + "block_time": 1733662785 }, { "event_index": 688, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 204, - "order_match_id": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db_c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", - "tx0_address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "tx1_address": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", - "block_time": 1733654067 + "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "block_time": 1733662785 }, - "tx_hash": "2e9a043723665e25f4b2021b5fe456913dcd48e6868f82e1edf14b7265e80db9", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "block_time": 1733654067 + "block_time": 1733662785 }, { "event_index": 689, @@ -2514,13 +2514,13 @@ "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890", + "tx_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "2e9a043723665e25f4b2021b5fe456913dcd48e6868f82e1edf14b7265e80db9", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "block_time": 1733654067 + "block_time": 1733662785 }, { "event_index": 690, @@ -2531,13 +2531,13 @@ "get_remaining": 2000, "give_remaining": 2000, "status": "open", - "tx_hash": "c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", + "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "2e9a043723665e25f4b2021b5fe456913dcd48e6868f82e1edf14b7265e80db9", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "block_time": 1733654067 + "block_time": 1733662785 }, { "event_index": 691, @@ -2549,20 +2549,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890_c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", + "id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "match_expire_index": 224, "status": "pending", - "tx0_address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx0_block_index": 189, "tx0_expiration": 21, - "tx0_hash": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890", + "tx0_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", "tx0_index": 64, - "tx1_address": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "tx1_block_index": 204, "tx1_expiration": 21, - "tx1_hash": "c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", + "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "tx1_index": 58, - "block_time": 1733654067, + "block_time": 1733662785, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2581,9 +2581,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "2e9a043723665e25f4b2021b5fe456913dcd48e6868f82e1edf14b7265e80db9", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "block_time": 1733654067 + "block_time": 1733662785 }, { "event_index": 697, @@ -2591,27 +2591,27 @@ "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "memo": "746865206d656d6f", "msg_index": 0, "quantity": 10, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "2e9a043723665e25f4b2021b5fe456913dcd48e6868f82e1edf14b7265e80db9", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "tx_index": 80, - "block_time": 1733654067, + "block_time": 1733662785, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2e9a043723665e25f4b2021b5fe456913dcd48e6868f82e1edf14b7265e80db9", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "block_time": 1733654067 + "block_time": 1733662785 }, { "event_index": 698, @@ -2619,27 +2619,27 @@ "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "memo": "746865206d656d6f", "msg_index": 1, "quantity": 10, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "2e9a043723665e25f4b2021b5fe456913dcd48e6868f82e1edf14b7265e80db9", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "tx_index": 80, - "block_time": 1733654067, + "block_time": 1733662785, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2e9a043723665e25f4b2021b5fe456913dcd48e6868f82e1edf14b7265e80db9", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "block_time": 1733654067 + "block_time": 1733662785 }, { "event_index": 699, @@ -2647,15 +2647,15 @@ "params": { "asset": "XCP", "block_index": 204, - "destination": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "memo": "746865206d656d6f", "msg_index": 2, "quantity": 10, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "2e9a043723665e25f4b2021b5fe456913dcd48e6868f82e1edf14b7265e80db9", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "tx_index": 80, - "block_time": 1733654067, + "block_time": 1733662785, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2665,9 +2665,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "2e9a043723665e25f4b2021b5fe456913dcd48e6868f82e1edf14b7265e80db9", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "block_time": 1733654067 + "block_time": 1733662785 } ], "unpacked_data": { @@ -2676,14 +2676,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true }, { "asset": "XCP", - "destination": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true @@ -2693,17 +2693,17 @@ }, { "tx_index": 79, - "tx_hash": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "block_hash": "275088446a73934bc91cc5b0c01edf6f25229b93c30762cc49fac56d42af7ee1", - "block_time": 1733654062, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "block_hash": "0de537875466fcabb29014860060168e58d39d6640e6be78625455093e5557db", + "block_time": 1733662781, + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380ea8e3de055b7d485d24fa82a6734f9cfbcfe5c04806fee8ba56e259edd8957d1297baf377e3d9109a280444dac66fefa98354ded2447aec63279aebf4e6b40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d260d2e34c89b206a0797add1942aa6ca5cd4fdf80f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0:0 4 ", + "utxos_info": " 8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab:0 4 ", "transaction_type": "mpma", "events": [ { @@ -2712,27 +2712,27 @@ "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "memo": "memo2", "msg_index": 0, "quantity": 10, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "tx_index": 79, - "block_time": 1733654062, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "block_time": 1733654062 + "block_time": 1733662781 }, { "event_index": 679, @@ -2740,27 +2740,27 @@ "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "tx_index": 79, - "block_time": 1733654062, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "block_time": 1733654062 + "block_time": 1733662781 }, { "event_index": 680, @@ -2768,15 +2768,15 @@ "params": { "asset": "XCP", "block_index": 203, - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "tx_index": 79, - "block_time": 1733654062, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2786,9 +2786,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "block_time": 1733654062 + "block_time": 1733662781 } ], "unpacked_data": { @@ -2797,14 +2797,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "quantity": 10, "memo": "memo2", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "quantity": 10, "memo": "memo1", "memo_is_hex": false @@ -2814,17 +2814,17 @@ }, { "tx_index": 78, - "tx_hash": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_hash": "7f4a8a8a7eabd1e98e2f1d82d77725c5381935cf0f4f2affe2f5d356b7fd76a1", - "block_time": 1733654049, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "block_hash": "592b0db0b71afdbe18b1fc5432bbfde15ca979682f0055e3e62c2d56161c659b", + "block_time": 1733662777, + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380ea8e3de055b7d485d24fa82a6734f9cfbcfe5c04806fee8ba56e259edd8957d1297baf377e3d9109a280444dac66fefa98354ded2447aec63279aebf4e6b88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d260d2e34c89b206a0797add1942aa6ca5cd4fdf80f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf:0 4 ", + "utxos_info": " 08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe:0 4 ", "transaction_type": "mpma", "events": [ { @@ -2832,24 +2832,24 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db" + "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29" }, - "tx_hash": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_time": 1733654049 + "block_time": 1733662777 }, { "event_index": 660, "event": "ORDER_EXPIRATION", "params": { "block_index": 202, - "order_hash": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db", - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "block_time": 1733654049 + "order_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_time": 1733662777 }, - "tx_hash": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_time": 1733654049 + "block_time": 1733662777 }, { "event_index": 666, @@ -2857,27 +2857,27 @@ "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "memo": "the memo", "msg_index": 0, "quantity": 10, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "tx_index": 78, - "block_time": 1733654049, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_time": 1733654049 + "block_time": 1733662777 }, { "event_index": 667, @@ -2885,27 +2885,27 @@ "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "memo": "the memo", "msg_index": 1, "quantity": 10, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "tx_index": 78, - "block_time": 1733654049, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_time": 1733654049 + "block_time": 1733662777 }, { "event_index": 668, @@ -2913,15 +2913,15 @@ "params": { "asset": "XCP", "block_index": 202, - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "memo": "the memo", "msg_index": 2, "quantity": 10, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "tx_index": 78, - "block_time": 1733654049, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2931,9 +2931,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_time": 1733654049 + "block_time": 1733662777 } ], "unpacked_data": { @@ -2942,14 +2942,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "quantity": 10, "memo": "the memo", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "quantity": 10, "memo": "the memo", "memo_is_hex": false @@ -2959,17 +2959,17 @@ }, { "tx_index": 77, - "tx_hash": "d6668b2c175b32b2f7821bce5471a8d22d764ec65e54f26c8c0c4b25d85d3c9e", + "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", "block_index": 201, - "block_hash": "082d167905d20267760d60d4089076b0671008c0666df6f4b888465f7e815464", - "block_time": 1733654034, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "block_hash": "10801583bacc821606b117a03aa3d8edc91e8b6c864a3f72a6dfac845ed9f0a6", + "block_time": 1733662764, + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880ea8e3de055b7d485d24fa82a6734f9cfbcfe5c04", + "data": "02000000178d82231300000000000003e880d260d2e34c89b206a0797add1942aa6ca5cd4fdf", "supported": true, - "utxos_info": " d6668b2c175b32b2f7821bce5471a8d22d764ec65e54f26c8c0c4b25d85d3c9e:1 2 0", + "utxos_info": " ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6:1 2 0", "transaction_type": "enhanced_send", "events": [ { @@ -2978,26 +2978,26 @@ "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "memo": null, "quantity": 1000, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "d6668b2c175b32b2f7821bce5471a8d22d764ec65e54f26c8c0c4b25d85d3c9e", + "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", "tx_index": 77, - "block_time": 1733654034, + "block_time": 1733662764, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "d6668b2c175b32b2f7821bce5471a8d22d764ec65e54f26c8c0c4b25d85d3c9e", + "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", "block_index": 201, - "block_time": 1733654034 + "block_time": 1733662764 } ], "unpacked_data": { @@ -3006,7 +3006,7 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "memo": null } } @@ -3022,29 +3022,29 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890_c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", - "tx0_address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "tx1_address": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", - "block_time": 1733654171 + "order_match_id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "block_time": 1733662907 }, - "tx_hash": "e682069a24b5506e29a2ad18899e8287b315113beceabf98c5aa54e9480a5ee5", + "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", "block_index": 225, - "block_time": 1733654171 + "block_time": 1733662907 }, { "event_index": 860, "event": "CREDIT", "params": { - "address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890_c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", + "event": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733654171, + "block_time": 1733662907, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3054,37 +3054,37 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "e682069a24b5506e29a2ad18899e8287b315113beceabf98c5aa54e9480a5ee5", + "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", "block_index": 225, - "block_time": 1733654171 + "block_time": 1733662907 }, { "event_index": 758, "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890", - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "block_time": 1733654103 + "order_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_time": 1733662819 }, - "tx_hash": "5fb5c86e70b8b84623b8d0615eeee87760f5e064c45c474b68bdf88f44610a30", + "tx_hash": "816df0c34171151d8c1947707f1c924dc6988f829038e9f0709bb2b7ab206acc", "block_index": 211, - "block_time": 1733654103 + "block_time": 1733662819 }, { "event_index": 757, "event": "CREDIT", "params": { - "address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "block_index": 211, "calling_function": "cancel order", - "event": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890", + "event": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", "quantity": 0, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733654103, + "block_time": 1733662819, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3094,9 +3094,9 @@ }, "quantity_normalized": "0.00000000" }, - "tx_hash": "5fb5c86e70b8b84623b8d0615eeee87760f5e064c45c474b68bdf88f44610a30", + "tx_hash": "816df0c34171151d8c1947707f1c924dc6988f829038e9f0709bb2b7ab206acc", "block_index": 211, - "block_time": 1733654103 + "block_time": 1733662819 }, { "event_index": 713, @@ -3104,15 +3104,15 @@ "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "f6c181806e13f071f09570069183d9759d4a9f8aab717fa3fa10c12e7878ea75", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "tx_index": 81, - "block_time": 1733654070, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3122,9 +3122,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "f6c181806e13f071f09570069183d9759d4a9f8aab717fa3fa10c12e7878ea75", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_time": 1733654070 + "block_time": 1733662789 } ], "next_cursor": 713, @@ -3133,17 +3133,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "memo": null, "quantity": 10000, - "source": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "status": "valid", - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "tx_index": 107, "asset_info": { "asset_longname": null, @@ -3154,22 +3154,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733654210.885726 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "CREDIT", "params": { - "address": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "asset": "XCP", "block_index": 234, "calling_function": "send", - "event": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3179,22 +3179,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733654210.885726 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "address": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "asset": "XCP", "block_index": 234, - "event": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3204,27 +3204,27 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733654210.885726 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1733654210.885726, + "block_time": 1733662956.0412934, "btc_amount": 0, - "data": "0200000000000000010000000000002710806fee8ba56e259edd8957d1297baf377e3d9109a2", + "data": "020000000000000001000000000000271080f73044edb424e8df3d85a40888172e373ed483c0", "destination": "", "fee": 10000, - "source": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "transaction_type": "enhanced_send", - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "tx_index": 107, - "utxos_info": " c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e:1 2 0", + "utxos_info": " f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf:1 2 0", "btc_amount_normalized": "0.00000000" }, - "timestamp": 1733654210.885726 + "timestamp": 1733662956.0412934 } ], "next_cursor": null, @@ -3233,7 +3233,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "A95428956980101314", "asset_longname": null, "quantity": 100000000000, @@ -3242,14 +3242,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "MPMASSET", "asset_longname": null, "quantity": 99999998960, @@ -3258,14 +3258,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "999.99998960" }, { - "address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "MYASSETA", "asset_longname": null, "quantity": 97999999980, @@ -3274,14 +3274,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "979.99999980" }, { - "address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "asset_longname": null, "quantity": 82599966196, @@ -3297,7 +3297,7 @@ "quantity_normalized": "825.99966196" }, { - "address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "TESTLOCKDESC", "asset_longname": null, "quantity": 9999990000, @@ -3306,7 +3306,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -3319,7 +3319,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "asset_longname": null, "quantity": 82599966196, @@ -3342,15 +3342,15 @@ "result": [ { "block_index": 225, - "address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 1000, "calling_function": "order expired", - "event": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890_c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", + "event": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733654171, + "block_time": 1733662907, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3362,15 +3362,15 @@ }, { "block_index": 205, - "address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "f6c181806e13f071f09570069183d9759d4a9f8aab717fa3fa10c12e7878ea75", + "event": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1733654070, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3382,15 +3382,15 @@ }, { "block_index": 204, - "address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "2e9a043723665e25f4b2021b5fe456913dcd48e6868f82e1edf14b7265e80db9", + "event": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1733654067, + "block_time": 1733662785, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3402,15 +3402,15 @@ }, { "block_index": 204, - "address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db_c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", + "event": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733654067, + "block_time": 1733662785, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3422,15 +3422,15 @@ }, { "block_index": 202, - "address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db", + "event": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733654049, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3448,15 +3448,15 @@ "result": [ { "block_index": 203, - "address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0", + "event": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1733654062, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3468,19 +3468,19 @@ }, { "block_index": 203, - "address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0", + "event": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1733654062, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -3488,15 +3488,15 @@ }, { "block_index": 202, - "address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "event": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1733654049, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3508,19 +3508,19 @@ }, { "block_index": 202, - "address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "event": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1733654049, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -3528,19 +3528,19 @@ }, { "block_index": 201, - "address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "d6668b2c175b32b2f7821bce5471a8d22d764ec65e54f26c8c0c4b25d85d3c9e", + "event": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1733654034, + "block_time": 1733662764, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -3559,16 +3559,16 @@ "result": [ { "tx_index": 24, - "tx_hash": "0e1668d4b65ff91d0def39c21b5d45206665df79338c6325d84ec7efafb64ecc", + "tx_hash": "3241987309692b6707b4651f9f2a8e60f491efb1911cae2686f47ae12966e8f1", "block_index": 128, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, "text": "Hello, world!", "locked": false, "status": "valid", - "block_time": 1733653731, + "block_time": 1733662470, "fee_fraction_int_normalized": "0.00000000" } ], @@ -3578,14 +3578,14 @@ "/v2/addresses/
/burns": { "result": [ { - "tx_index": 8, - "tx_hash": "4d73d2dad9d466959b2e006efe3a6d2cb5701bed056a9c55049e76829251a0b9", + "tx_index": 5, + "tx_hash": "87bf46153fabbf44f202f0538ee531356e5ce77768e094ec9859b5a11380c959", "block_index": 112, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733653663, + "block_time": 1733662402, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" } @@ -3597,17 +3597,17 @@ "result": [ { "tx_index": 79, - "tx_hash": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "memo1", "fee_paid": 0, - "block_time": 1733654062, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3620,21 +3620,21 @@ }, { "tx_index": 79, - "tx_hash": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 1, "memo": "memo3", "fee_paid": 0, - "block_time": 1733654062, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -3643,21 +3643,21 @@ }, { "tx_index": 79, - "tx_hash": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 0, "memo": "memo2", "fee_paid": 0, - "block_time": 1733654062, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -3666,17 +3666,17 @@ }, { "tx_index": 78, - "tx_hash": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "the memo", "fee_paid": 0, - "block_time": 1733654049, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3689,21 +3689,21 @@ }, { "tx_index": 78, - "tx_hash": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 1, "memo": "the memo", "fee_paid": 0, - "block_time": 1733654049, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -3718,21 +3718,21 @@ "result": [ { "tx_index": 38, - "tx_hash": "03002ca313a5d137f552190325d4ee41d73e65db9b240f6d017d81b0599faf21", + "tx_hash": "d566733813ff14d927b500e4d3c53d459f80cf6147bde7b6bab0bf07548d5d2b", "block_index": 142, - "source": "e2e73919a8deef754132ee5d7333e4a564de88a0a75a9cae0d4d35acba709794:0", - "destination": "bcrt1qjjz357altr3ks35ryc0f5t3jnh8c5gfmftz3ex", + "source": "eff988c400c90aba10b2dd3e2e1d5e3236a9917793fb5973f7323d76d6c6c545:0", + "destination": "bcrt1qcg7s7t5nr4edjh4znztk65wcrp3quf3h8ky2le", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, - "block_time": 1733653790, + "block_time": 1733662521, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -3757,9 +3757,9 @@ "result": [ { "tx_index": 68, - "tx_hash": "a853448add5cf3b7d499390daefeb82a1537c36d5a6cf65ebf98a47f9d495112", + "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "block_index": 194, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -3768,7 +3768,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3778,11 +3778,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733654007, + "block_time": 1733662737, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -3795,9 +3795,9 @@ }, { "tx_index": 26, - "tx_hash": "85039521bb843d04ff64d50995c5b214fbfd25d985e7a7527d0f62268e0ee72c", + "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -3806,7 +3806,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3816,7 +3816,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733653745, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3838,9 +3838,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "85039521bb843d04ff64d50995c5b214fbfd25d985e7a7527d0f62268e0ee72c", + "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -3849,7 +3849,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3859,7 +3859,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733653745, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3880,18 +3880,18 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "18ee2a1c7c6fd8a1c72f098e851417c2de191bebf8416686208f7913270ade87", + "tx_hash": "3d816bb9da3e8382155c32330e0949633245a5b06a4e040498c8290561e28139", "block_index": 194, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a853448add5cf3b7d499390daefeb82a1537c36d5a6cf65ebf98a47f9d495112", + "dispenser_tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "btc_amount": 4000, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3899,7 +3899,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3914,11 +3914,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733654007, + "block_time": 1733662737, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -3928,18 +3928,18 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "b963ee72475b420ca10b47d7aae08af1d35240e662d35c8dbc1ef4425de1042a", + "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "85039521bb843d04ff64d50995c5b214fbfd25d985e7a7527d0f62268e0ee72c", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3947,7 +3947,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3962,7 +3962,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733653745, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3976,18 +3976,18 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b6159254ea0341f3ffeabf661e1acdcfec60c8cbc1098c4da6a443a6fd601913", + "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", "block_index": 131, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "85039521bb843d04ff64d50995c5b214fbfd25d985e7a7527d0f62268e0ee72c", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3995,7 +3995,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4010,7 +4010,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733653741, + "block_time": 1733662481, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4030,18 +4030,18 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "18ee2a1c7c6fd8a1c72f098e851417c2de191bebf8416686208f7913270ade87", + "tx_hash": "3d816bb9da3e8382155c32330e0949633245a5b06a4e040498c8290561e28139", "block_index": 194, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a853448add5cf3b7d499390daefeb82a1537c36d5a6cf65ebf98a47f9d495112", + "dispenser_tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "btc_amount": 4000, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -4049,7 +4049,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -4064,11 +4064,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733654007, + "block_time": 1733662737, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -4078,18 +4078,18 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "b963ee72475b420ca10b47d7aae08af1d35240e662d35c8dbc1ef4425de1042a", + "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "85039521bb843d04ff64d50995c5b214fbfd25d985e7a7527d0f62268e0ee72c", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -4097,7 +4097,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4112,7 +4112,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733653745, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4126,18 +4126,18 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b6159254ea0341f3ffeabf661e1acdcfec60c8cbc1098c4da6a443a6fd601913", + "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", "block_index": 131, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "85039521bb843d04ff64d50995c5b214fbfd25d985e7a7527d0f62268e0ee72c", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -4145,7 +4145,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4160,7 +4160,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733653741, + "block_time": 1733662481, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4180,18 +4180,18 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "b963ee72475b420ca10b47d7aae08af1d35240e662d35c8dbc1ef4425de1042a", + "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "85039521bb843d04ff64d50995c5b214fbfd25d985e7a7527d0f62268e0ee72c", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -4199,7 +4199,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4214,7 +4214,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733653745, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4228,18 +4228,18 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b6159254ea0341f3ffeabf661e1acdcfec60c8cbc1098c4da6a443a6fd601913", + "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", "block_index": 131, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "85039521bb843d04ff64d50995c5b214fbfd25d985e7a7527d0f62268e0ee72c", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -4247,7 +4247,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4262,7 +4262,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733653741, + "block_time": 1733662481, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4282,18 +4282,18 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "b963ee72475b420ca10b47d7aae08af1d35240e662d35c8dbc1ef4425de1042a", + "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "85039521bb843d04ff64d50995c5b214fbfd25d985e7a7527d0f62268e0ee72c", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -4301,7 +4301,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4316,7 +4316,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733653745, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4330,18 +4330,18 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b6159254ea0341f3ffeabf661e1acdcfec60c8cbc1098c4da6a443a6fd601913", + "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", "block_index": 131, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "85039521bb843d04ff64d50995c5b214fbfd25d985e7a7527d0f62268e0ee72c", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -4349,7 +4349,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4364,7 +4364,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733653741, + "block_time": 1733662481, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4383,15 +4383,15 @@ "result": [ { "tx_index": 65, - "tx_hash": "d8579587191a163e823cc31cdb1f7531c5149b3c5df8d17a4816834b078a66b7", + "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", "block_index": 190, - "source": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", - "destination": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, - "block_time": 1733653992, + "block_time": 1733662722, "fee_paid_normalized": "0.00600000" } ], @@ -4402,14 +4402,14 @@ "result": [ { "tx_index": 76, - "tx_hash": "414360a5fc5d24157125d54fa71eb9591b739b3ff82ffd1bfeac2a68071da3f4", + "tx_hash": "1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644", "msg_index": 0, "block_index": 200, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "transfer": false, "callable": false, "call_date": 0, @@ -4423,20 +4423,20 @@ "description_locked": false, "fair_minting": false, "asset_events": "creation", - "block_time": 1733654030, + "block_time": 1733662760, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "24cee9f98a835a745cc5346f4a3bc7f18f0236268aff0a37c0f6f7624e10d50f", + "tx_hash": "af26ce6aa85ff2f672028a3cfecf49ed4d8b2791495b66b8198f5ae9cb182479", "msg_index": 0, "block_index": 156, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "transfer": false, "callable": false, "call_date": 0, @@ -4450,20 +4450,20 @@ "description_locked": false, "fair_minting": false, "asset_events": "creation", - "block_time": 1733653860, + "block_time": 1733662592, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "ee5a4168eaa0e468c983eff5e33febf93da88887d2484a8b0d5a7b9457425178", + "tx_hash": "d6711f9495e7f4d3d0267e48487c2329555979680e084182b8a5e06cd65e5b55", "msg_index": 0, "block_index": 155, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "transfer": false, "callable": false, "call_date": 0, @@ -4477,20 +4477,20 @@ "description_locked": true, "fair_minting": false, "asset_events": "lock_description", - "block_time": 1733653857, + "block_time": 1733662579, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "601fe6981f837d643a302ac1ab57b3a440a8361d27d8f5f876a2c02b210d3d22", + "tx_hash": "f300f4f1d3c80fd6f7807624d2236e0de7a91528e43ff41eb2cbaddbaceea14e", "msg_index": 0, "block_index": 154, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "transfer": false, "callable": false, "call_date": 0, @@ -4504,20 +4504,20 @@ "description_locked": false, "fair_minting": false, "asset_events": "creation", - "block_time": 1733653844, + "block_time": 1733662576, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "683bc4c14978cc6c5928378b079765f1788498fa3b77ef92a1c268e59cf18388", + "tx_hash": "aafc3281649611fab635e59b621a98cd2e246b3d7da0cb364f0b08c39e28fe94", "msg_index": 0, "block_index": 153, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "transfer": false, "callable": false, "call_date": 0, @@ -4531,7 +4531,7 @@ "description_locked": false, "fair_minting": false, "asset_events": "creation", - "block_time": 1733653840, + "block_time": 1733662572, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -4545,8 +4545,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "owner": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 100000000000, @@ -4554,16 +4554,16 @@ "description_locked": false, "first_issuance_block_index": 200, "last_issuance_block_index": 200, - "first_issuance_block_time": 1733654030, - "last_issuance_block_time": 1733654030, + "first_issuance_block_time": 1733662760, + "last_issuance_block_time": 1733662760, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "owner": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 10000000000, @@ -4571,16 +4571,16 @@ "description_locked": false, "first_issuance_block_index": 153, "last_issuance_block_index": 155, - "first_issuance_block_time": 1733653840, - "last_issuance_block_time": 1733653857, + "first_issuance_block_time": 1733662572, + "last_issuance_block_time": 1733662579, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "owner": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 180, @@ -4588,16 +4588,16 @@ "description_locked": false, "first_issuance_block_index": 148, "last_issuance_block_index": 150, - "first_issuance_block_time": 1733653823, - "last_issuance_block_time": 1733653830, + "first_issuance_block_time": 1733662552, + "last_issuance_block_time": 1733662559, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "owner": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 100000000000, @@ -4605,16 +4605,16 @@ "description_locked": false, "first_issuance_block_index": 139, "last_issuance_block_index": 139, - "first_issuance_block_time": 1733653769, - "last_issuance_block_time": 1733653769, + "first_issuance_block_time": 1733662509, + "last_issuance_block_time": 1733662509, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "owner": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 40, @@ -4622,8 +4622,8 @@ "description_locked": false, "first_issuance_block_index": 126, "last_issuance_block_index": 127, - "first_issuance_block_time": 1733653724, - "last_issuance_block_time": 1733653728, + "first_issuance_block_time": 1733662462, + "last_issuance_block_time": 1733662467, "supply_normalized": "0.00000040" } ], @@ -4636,8 +4636,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "owner": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 100000000000, @@ -4645,16 +4645,16 @@ "description_locked": false, "first_issuance_block_index": 200, "last_issuance_block_index": 200, - "first_issuance_block_time": 1733654030, - "last_issuance_block_time": 1733654030, + "first_issuance_block_time": 1733662760, + "last_issuance_block_time": 1733662760, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "owner": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 10000000000, @@ -4662,16 +4662,16 @@ "description_locked": false, "first_issuance_block_index": 153, "last_issuance_block_index": 155, - "first_issuance_block_time": 1733653840, - "last_issuance_block_time": 1733653857, + "first_issuance_block_time": 1733662572, + "last_issuance_block_time": 1733662579, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "owner": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 180, @@ -4679,16 +4679,16 @@ "description_locked": false, "first_issuance_block_index": 148, "last_issuance_block_index": 150, - "first_issuance_block_time": 1733653823, - "last_issuance_block_time": 1733653830, + "first_issuance_block_time": 1733662552, + "last_issuance_block_time": 1733662559, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "owner": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 100000000000, @@ -4696,16 +4696,16 @@ "description_locked": false, "first_issuance_block_index": 139, "last_issuance_block_index": 139, - "first_issuance_block_time": 1733653769, - "last_issuance_block_time": 1733653769, + "first_issuance_block_time": 1733662509, + "last_issuance_block_time": 1733662509, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "owner": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 40, @@ -4713,8 +4713,8 @@ "description_locked": false, "first_issuance_block_index": 126, "last_issuance_block_index": 127, - "first_issuance_block_time": 1733653724, - "last_issuance_block_time": 1733653728, + "first_issuance_block_time": 1733662462, + "last_issuance_block_time": 1733662467, "supply_normalized": "0.00000040" } ], @@ -4727,8 +4727,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "owner": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 100000000000, @@ -4736,16 +4736,16 @@ "description_locked": false, "first_issuance_block_index": 200, "last_issuance_block_index": 200, - "first_issuance_block_time": 1733654030, - "last_issuance_block_time": 1733654030, + "first_issuance_block_time": 1733662760, + "last_issuance_block_time": 1733662760, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "owner": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 10000000000, @@ -4753,16 +4753,16 @@ "description_locked": false, "first_issuance_block_index": 153, "last_issuance_block_index": 155, - "first_issuance_block_time": 1733653840, - "last_issuance_block_time": 1733653857, + "first_issuance_block_time": 1733662572, + "last_issuance_block_time": 1733662579, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "owner": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 180, @@ -4770,16 +4770,16 @@ "description_locked": false, "first_issuance_block_index": 148, "last_issuance_block_index": 150, - "first_issuance_block_time": 1733653823, - "last_issuance_block_time": 1733653830, + "first_issuance_block_time": 1733662552, + "last_issuance_block_time": 1733662559, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "owner": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 100000000000, @@ -4787,16 +4787,16 @@ "description_locked": false, "first_issuance_block_index": 139, "last_issuance_block_index": 139, - "first_issuance_block_time": 1733653769, - "last_issuance_block_time": 1733653769, + "first_issuance_block_time": 1733662509, + "last_issuance_block_time": 1733662509, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "owner": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false, "supply": 40, @@ -4804,8 +4804,8 @@ "description_locked": false, "first_issuance_block_index": 126, "last_issuance_block_index": 127, - "first_issuance_block_time": 1733653724, - "last_issuance_block_time": 1733653728, + "first_issuance_block_time": 1733662462, + "last_issuance_block_time": 1733662467, "supply_normalized": "0.00000040" } ], @@ -4816,17 +4816,17 @@ "result": [ { "tx_index": 79, - "tx_hash": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "block_hash": "275088446a73934bc91cc5b0c01edf6f25229b93c30762cc49fac56d42af7ee1", - "block_time": 1733654062, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "block_hash": "0de537875466fcabb29014860060168e58d39d6640e6be78625455093e5557db", + "block_time": 1733662781, + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380ea8e3de055b7d485d24fa82a6734f9cfbcfe5c04806fee8ba56e259edd8957d1297baf377e3d9109a280444dac66fefa98354ded2447aec63279aebf4e6b40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "03000380d260d2e34c89b206a0797add1942aa6ca5cd4fdf80f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0:0 4 ", + "utxos_info": " 8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab:0 4 ", "transaction_type": "mpma", "events": [ { @@ -4835,27 +4835,27 @@ "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "memo": "memo2", "msg_index": 0, "quantity": 10, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "tx_index": 79, - "block_time": 1733654062, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "block_time": 1733654062 + "block_time": 1733662781 }, { "event_index": 679, @@ -4863,27 +4863,27 @@ "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "tx_index": 79, - "block_time": 1733654062, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "block_time": 1733654062 + "block_time": 1733662781 }, { "event_index": 680, @@ -4891,15 +4891,15 @@ "params": { "asset": "XCP", "block_index": 203, - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "tx_index": 79, - "block_time": 1733654062, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4909,9 +4909,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "block_time": 1733654062 + "block_time": 1733662781 } ], "unpacked_data": { @@ -4920,14 +4920,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "quantity": 10, "memo": "memo2", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "quantity": 10, "memo": "memo1", "memo_is_hex": false @@ -4937,17 +4937,17 @@ }, { "tx_index": 78, - "tx_hash": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_hash": "7f4a8a8a7eabd1e98e2f1d82d77725c5381935cf0f4f2affe2f5d356b7fd76a1", - "block_time": 1733654049, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "block_hash": "592b0db0b71afdbe18b1fc5432bbfde15ca979682f0055e3e62c2d56161c659b", + "block_time": 1733662777, + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380ea8e3de055b7d485d24fa82a6734f9cfbcfe5c04806fee8ba56e259edd8957d1297baf377e3d9109a280444dac66fefa98354ded2447aec63279aebf4e6b88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "03000380d260d2e34c89b206a0797add1942aa6ca5cd4fdf80f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf:0 4 ", + "utxos_info": " 08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe:0 4 ", "transaction_type": "mpma", "events": [ { @@ -4955,24 +4955,24 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db" + "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29" }, - "tx_hash": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_time": 1733654049 + "block_time": 1733662777 }, { "event_index": 660, "event": "ORDER_EXPIRATION", "params": { "block_index": 202, - "order_hash": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db", - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "block_time": 1733654049 + "order_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_time": 1733662777 }, - "tx_hash": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_time": 1733654049 + "block_time": 1733662777 }, { "event_index": 666, @@ -4980,27 +4980,27 @@ "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "memo": "the memo", "msg_index": 0, "quantity": 10, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "tx_index": 78, - "block_time": 1733654049, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_time": 1733654049 + "block_time": 1733662777 }, { "event_index": 667, @@ -5008,27 +5008,27 @@ "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "memo": "the memo", "msg_index": 1, "quantity": 10, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "tx_index": 78, - "block_time": 1733654049, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_time": 1733654049 + "block_time": 1733662777 }, { "event_index": 668, @@ -5036,15 +5036,15 @@ "params": { "asset": "XCP", "block_index": 202, - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "memo": "the memo", "msg_index": 2, "quantity": 10, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "tx_index": 78, - "block_time": 1733654049, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5054,9 +5054,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "block_time": 1733654049 + "block_time": 1733662777 } ], "unpacked_data": { @@ -5065,14 +5065,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "quantity": 10, "memo": "the memo", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "quantity": 10, "memo": "the memo", "memo_is_hex": false @@ -5082,17 +5082,17 @@ }, { "tx_index": 77, - "tx_hash": "d6668b2c175b32b2f7821bce5471a8d22d764ec65e54f26c8c0c4b25d85d3c9e", + "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", "block_index": 201, - "block_hash": "082d167905d20267760d60d4089076b0671008c0666df6f4b888465f7e815464", - "block_time": 1733654034, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "block_hash": "10801583bacc821606b117a03aa3d8edc91e8b6c864a3f72a6dfac845ed9f0a6", + "block_time": 1733662764, + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880ea8e3de055b7d485d24fa82a6734f9cfbcfe5c04", + "data": "02000000178d82231300000000000003e880d260d2e34c89b206a0797add1942aa6ca5cd4fdf", "supported": true, - "utxos_info": " d6668b2c175b32b2f7821bce5471a8d22d764ec65e54f26c8c0c4b25d85d3c9e:1 2 0", + "utxos_info": " ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6:1 2 0", "transaction_type": "enhanced_send", "events": [ { @@ -5101,26 +5101,26 @@ "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "memo": null, "quantity": 1000, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "d6668b2c175b32b2f7821bce5471a8d22d764ec65e54f26c8c0c4b25d85d3c9e", + "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", "tx_index": 77, - "block_time": 1733654034, + "block_time": 1733662764, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "d6668b2c175b32b2f7821bce5471a8d22d764ec65e54f26c8c0c4b25d85d3c9e", + "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", "block_index": 201, - "block_time": 1733654034 + "block_time": 1733662764 } ], "unpacked_data": { @@ -5129,24 +5129,24 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "memo": null } } }, { "tx_index": 76, - "tx_hash": "414360a5fc5d24157125d54fa71eb9591b739b3ff82ffd1bfeac2a68071da3f4", + "tx_hash": "1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644", "block_index": 200, - "block_hash": "2dca7da03616dc9a478a6b796a45b1e77f5d7daf008c4d669ff3f49e770151cf", - "block_time": 1733654030, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "block_hash": "3e589a03624f3b3414e98872b3f5818c624e0b28da6495b611bb10403669e396", + "block_time": 1733662760, + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 414360a5fc5d24157125d54fa71eb9591b739b3ff82ffd1bfeac2a68071da3f4:1 2 0", + "utxos_info": " 1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644:1 2 0", "transaction_type": "issuance", "events": [ { @@ -5157,11 +5157,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 200, - "block_time": 1733654030 + "block_time": 1733662760 }, - "tx_hash": "414360a5fc5d24157125d54fa71eb9591b739b3ff82ffd1bfeac2a68071da3f4", + "tx_hash": "1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644", "block_index": 200, - "block_time": 1733654030 + "block_time": 1733662760 }, { "event_index": 645, @@ -5178,22 +5178,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", "transfer": false, - "tx_hash": "414360a5fc5d24157125d54fa71eb9591b739b3ff82ffd1bfeac2a68071da3f4", + "tx_hash": "1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644", "tx_index": 76, - "block_time": 1733654030, + "block_time": 1733662760, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "414360a5fc5d24157125d54fa71eb9591b739b3ff82ffd1bfeac2a68071da3f4", + "tx_hash": "1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644", "block_index": 200, - "block_time": 1733654030 + "block_time": 1733662760 } ], "unpacked_data": { @@ -5217,17 +5217,17 @@ }, { "tx_index": 68, - "tx_hash": "a853448add5cf3b7d499390daefeb82a1537c36d5a6cf65ebf98a47f9d495112", + "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "block_index": 193, - "block_hash": "6d6e02ef8c5f379752e78639002ad59884199f7e16226ffa196a5611ee57fa2a", - "block_time": 1733654004, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "block_hash": "10b675298433b89dad6dfa3551134328a0689c8e59eb4c543ae2ddcfcff81544", + "block_time": 1733662733, + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " a853448add5cf3b7d499390daefeb82a1537c36d5a6cf65ebf98a47f9d495112:1 2 0", + "utxos_info": " ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952:1 2 0", "transaction_type": "dispenser", "events": [ { @@ -5241,17 +5241,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "satoshirate": 1, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": 0, - "tx_hash": "a853448add5cf3b7d499390daefeb82a1537c36d5a6cf65ebf98a47f9d495112", + "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "tx_index": 68, - "block_time": 1733654004, + "block_time": 1733662733, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -5260,9 +5260,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "a853448add5cf3b7d499390daefeb82a1537c36d5a6cf65ebf98a47f9d495112", + "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "block_index": 193, - "block_time": 1733654004 + "block_time": 1733662733 } ], "unpacked_data": { @@ -5288,19 +5288,19 @@ "result": [ { "tx_index": 42, - "tx_hash": "488ad8ca3e241a9007c30ae55791c9e9f050526725ae0e84de257c9829ac2b3d", + "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", "block_index": 146, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", - "block_time": 1733653806, + "block_time": 1733662534, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -5322,9 +5322,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "85d1eb2ccb489dc630f805ae3d12eab0297fbd148888b67dd53ae32a3136e746", + "tx_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", "block_index": 179, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5340,7 +5340,7 @@ "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733653875, + "block_time": 1733662607, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5368,9 +5368,9 @@ }, { "tx_index": 55, - "tx_hash": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db", + "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", "block_index": 202, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5386,7 +5386,7 @@ "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733654049, + "block_time": 1733662777, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5414,9 +5414,9 @@ }, { "tx_index": 62, - "tx_hash": "eb952b15d4f8a56bee18f52cff3a452d5bae33bc750ec75365fdb59b176c1918", + "tx_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", "block_index": 188, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5432,7 +5432,7 @@ "status": "cancelled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733653974, + "block_time": 1733662715, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5460,9 +5460,9 @@ }, { "tx_index": 64, - "tx_hash": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890", + "tx_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", "block_index": 211, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5478,7 +5478,7 @@ "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733654103, + "block_time": 1733662819, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5511,10 +5511,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "952fde8d8325c80cee778d27228a3b1062d18562de30ba1b3906cc2422d2e789", + "tx_hash": "f49987520b37269d66e22c08d64105ad8b3ca4ddd9cf77289a9c701eb7cd17fd", "tx_index": 44, "block_index": 150, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "FREEFAIRMINT", "asset_parent": null, "asset_longname": null, @@ -5538,7 +5538,7 @@ "earned_quantity": 180, "paid_quantity": 0, "commission": 0, - "block_time": 1733653830, + "block_time": 1733662559, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", @@ -5550,10 +5550,10 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "18a7222c2fdd87d1f2931fca715fecfe079e9eb665fa1d9d83e996a4ce50f73c", + "tx_hash": "c08fd3a8aeff123265f1bb8c22f18a72614767838b8dba6a17ddd8de121b8486", "tx_index": 43, "block_index": 147, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -5577,7 +5577,7 @@ "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733653810, + "block_time": 1733662539, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -5586,10 +5586,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "fefb0f65d00c999c36fd89464cc7c05c2a357981fa3c068087d0eb8105d962b5", + "tx_hash": "944f4b25248d9ceabac7ba67e9b8c5cba51f208732d6e10967981e481d445bab", "tx_index": 22, "block_index": 126, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "FAIRMINTD", "asset_parent": null, "asset_longname": null, @@ -5613,7 +5613,7 @@ "earned_quantity": 40, "paid_quantity": 34, "commission": 0, - "block_time": 1733653724, + "block_time": 1733662462, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -5625,10 +5625,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "ea3df907916a247fffb2bb210625d6506e4ebc3511b7e6af58fe7aac93e86369", + "tx_hash": "3fe3cc258aff8adebf2c59df508d6e915c65e494545f1973cbd6fac50bf52f7a", "tx_index": 18, "block_index": 122, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "FAIRMINTC", "asset_parent": null, "asset_longname": null, @@ -5652,7 +5652,7 @@ "earned_quantity": 19, "paid_quantity": 5, "commission": 0, - "block_time": 1733653701, + "block_time": 1733662438, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -5664,10 +5664,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "ff5ec87f6d65f88ee7d9048eeda29ebab9481dc8ed465af3c9c33008a02d8703", + "tx_hash": "f1650bc5e4862573c5bdcaeee8c79235a3afbbe4a4b1dde5ae00856fc2ec3092", "tx_index": 14, "block_index": 121, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "FAIRMINTB", "asset_parent": null, "asset_longname": null, @@ -5691,7 +5691,7 @@ "earned_quantity": 300000000, "paid_quantity": 300000000, "commission": 0, - "block_time": 1733653698, + "block_time": 1733662435, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -5703,10 +5703,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "7c648f7e7bcb7410380e2a34aff33e77107b0c59ec9143b07b485d011f53b1f7", + "tx_hash": "78a0d2b2e6a58b814c45278e7486d9916983dd9996fa320ebd4c77c3efecc28c", "tx_index": 10, "block_index": 116, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "FAIRMINTA", "asset_parent": null, "asset_longname": null, @@ -5730,7 +5730,7 @@ "earned_quantity": 10000000000, "paid_quantity": 10000000000, "commission": 0, - "block_time": 1733653679, + "block_time": 1733662417, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -5748,21 +5748,21 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "57c0de70098f1e4d28ef4824531d432946f1ef93d96648f41ef038da3076e918", + "tx_hash": "f7afb409d53d760cc0e1b6287fb322b46c0cec5b0db19e0db1e4cb8e9acfa06c", "tx_index": 46, "block_index": 150, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", - "fairminter_tx_hash": "952fde8d8325c80cee778d27228a3b1062d18562de30ba1b3906cc2422d2e789", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "fairminter_tx_hash": "f49987520b37269d66e22c08d64105ad8b3ca4ddd9cf77289a9c701eb7cd17fd", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1733653830, + "block_time": 1733662559, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -5771,21 +5771,21 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "0970a4545d89311234570fda47a43b5390f8ccebd96a54e0ac5c61f48d827c36", + "tx_hash": "0f816a7124ca2d321d50cb5a756e505409860107a5cdf6818af0c49903109e92", "tx_index": 45, "block_index": 149, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", - "fairminter_tx_hash": "952fde8d8325c80cee778d27228a3b1062d18562de30ba1b3906cc2422d2e789", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "fairminter_tx_hash": "f49987520b37269d66e22c08d64105ad8b3ca4ddd9cf77289a9c701eb7cd17fd", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1733653827, + "block_time": 1733662555, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -5794,21 +5794,21 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "c1e2765719a534129bf1bc6e17ae5850eb64e878f0f778df0d180ab989c3f87d", + "tx_hash": "bd8a49f0e5175b0e9376309693c7ab46f23e81ff6da37e173fafd49112e3a002", "tx_index": 23, "block_index": 127, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", - "fairminter_tx_hash": "fefb0f65d00c999c36fd89464cc7c05c2a357981fa3c068087d0eb8105d962b5", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "fairminter_tx_hash": "944f4b25248d9ceabac7ba67e9b8c5cba51f208732d6e10967981e481d445bab", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", - "block_time": 1733653728, + "block_time": 1733662467, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -5817,21 +5817,21 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "4ce0f020aad643bf0e7ad62d1b67f9285216f78914369a064b3d3ef95c4b0490", + "tx_hash": "5442ddf25d7b2d0522c3e6ee4f6ea07046e498791dad9a59493585cd95e4a482", "tx_index": 21, "block_index": 125, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", - "fairminter_tx_hash": "ea3df907916a247fffb2bb210625d6506e4ebc3511b7e6af58fe7aac93e86369", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "fairminter_tx_hash": "3fe3cc258aff8adebf2c59df508d6e915c65e494545f1973cbd6fac50bf52f7a", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", - "block_time": 1733653721, + "block_time": 1733662459, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -5840,21 +5840,21 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "ff59cc2db558c9b639da10bb9b5d93a290b3fee7c2b3cfc99a617413a7af75c3", + "tx_hash": "9044b8e851b9db643759825189ee18e3a4f8e024073cee1071770547f10d5441", "tx_index": 20, "block_index": 124, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", - "fairminter_tx_hash": "ea3df907916a247fffb2bb210625d6506e4ebc3511b7e6af58fe7aac93e86369", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "fairminter_tx_hash": "3fe3cc258aff8adebf2c59df508d6e915c65e494545f1973cbd6fac50bf52f7a", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", - "block_time": 1733653718, + "block_time": 1733662456, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -5863,21 +5863,21 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "da7c91109ff61de0eeff1934626f1be6d6d2602931b79ea98ee9ec3a40409f81", + "tx_hash": "9a0ee57960e481e4db622af7aada351d92452cbffc33a5a0620d13c09b3fb924", "tx_index": 19, "block_index": 123, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", - "fairminter_tx_hash": "ea3df907916a247fffb2bb210625d6506e4ebc3511b7e6af58fe7aac93e86369", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "fairminter_tx_hash": "3fe3cc258aff8adebf2c59df508d6e915c65e494545f1973cbd6fac50bf52f7a", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", - "block_time": 1733653704, + "block_time": 1733662442, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -5886,21 +5886,21 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "ef0f9eed610300849b802a2a29aab090fb7c6a317f62dfe0971d49fc00a68e07", + "tx_hash": "393205372ad51ba0bcf4bc28968fa4d1453aab18ae0c057a72eb47ab5a60a5b1", "tx_index": 15, "block_index": 118, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", - "fairminter_tx_hash": "ff5ec87f6d65f88ee7d9048eeda29ebab9481dc8ed465af3c9c33008a02d8703", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "fairminter_tx_hash": "f1650bc5e4862573c5bdcaeee8c79235a3afbbe4a4b1dde5ae00856fc2ec3092", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", - "block_time": 1733653686, + "block_time": 1733662424, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -5909,21 +5909,21 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "a5bbd6bb942bc48349b587c1781ae02b7e31e2dce06ebc8ccf49016c08767601", + "tx_hash": "25af25186fc3e49b496ad5ee19fed27ef2a5109e584442cddd3eb85b6acdcadd", "tx_index": 11, "block_index": 114, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", - "fairminter_tx_hash": "7c648f7e7bcb7410380e2a34aff33e77107b0c59ec9143b07b485d011f53b1f7", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "fairminter_tx_hash": "78a0d2b2e6a58b814c45278e7486d9916983dd9996fa320ebd4c77c3efecc28c", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", - "block_time": 1733653672, + "block_time": 1733662411, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -5946,12 +5946,12 @@ "asset": "UTXOASSET", "asset_longname": null, "quantity": 1000000000, - "utxo": "6c0ed9d9a7666e9345a6ccf236dbc21c6f71362370e367d6cec885f358640c2d:0", - "utxo_address": "bcrt1qmhgnkthw2e97ak84cf0yl0v7wwu9qfxlus0e8m", + "utxo": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0", + "utxo_address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmhgnkthw2e97ak84cf0yl0v7wwu9qfxlus0e8m", + "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "divisible": true, "locked": false }, @@ -5973,7 +5973,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -5986,29 +5986,29 @@ "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "02000000000101bcbd2c4155783e9a10b0f42a2cde2540a7a2b0e667467ae1844938876aff281d00000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadcffffffff0200000000000000002b6a2950ad9d620c830c40709fbd4b0bd36404de95d67d381508b00827f024a000af0ff3d3b543441cfd28cf00f2052a01000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadc02000000000000" + "rawtransaction": "02000000000101924d72a09461c8a24f938092ec2c38ee65a0860665187ebc36ee0a773dcb312e00000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff0200000000000000002b6a29c1f068038c28abd4c1a685dad029f822c87e68e49f72de9cdd2ed2c905060888251c4114f8a9594d0300f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } }, "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "order_match_id": "3762a961768c36422a62995a35bb8d8f5c3dba07a2d06c584fc40d10ccee8a9d_d5d82a365e3711ded3343ae4d58693a4d355c2a52c1fc21217582524cfc4ac50", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "order_match_id": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076_97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590b3762a961768c36422a62995a35bb8d8f5c3dba07a2d06c584fc40d10ccee8a9dd5d82a365e3711ded3343ae4d58693a4d355c2a52c1fc21217582524cfc4ac50", + "data": "434e5452505254590bc3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c40940507697a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999999000, "btc_fee": 0, - "rawtransaction": "0200000000010162f7254e52a9619021945ac53f3d2a285974afb4ba26aeeed59fb110cec32f9f00000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadcffffffff03e803000000000000160014ddd13b2eee564beed8f5c25e4fbd9e73b85024df00000000000000004b6a49ae980be8abaa6b26d1848829e402ca527cedf793ba2a0c454a10c126e84978a1cb6e655f991279a1cf2887e22b3504e6b34eb8a4627d2c53609258818746a39f052da8ba707d98c93618ee052a01000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadc02000000000000" + "rawtransaction": "0200000000010125aba795909c8b9f384c4ebff2c61f344c437c974c6b3277de4e1b644480f30200000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff03e80300000000000016001447e5951068f42b237b00d9525db4515fd642e8e700000000000000004b6a498d7fd3aeb2357e4c9dcb457b6a9b8353d683928a73043d4b4710b8657a90cf67bc673b73d3ad872313602266cd30e3d901f0806a34111b0fc9f9c6c1eee6965d1e6eadb1af6f76e10118ee052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } }, "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "quantity": 1000, "overburn": false, "skip_validation": false @@ -6019,29 +6019,29 @@ "btc_out": 1000, "btc_change": 4999999000, "btc_fee": 0, - "rawtransaction": "02000000000101d75d3b7c5b379f63b7e378a8e5c20509be1271aaa78e321c1d7cc514cf5be18c00000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadcffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac18ee052a01000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadc02000000000000" + "rawtransaction": "02000000000101ef341ce05ee7aa7a2ce0be2425da212c732d47d2b295fb2a53b04af584e3913800000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac18ee052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "offer_hash": "d5d82a365e3711ded3343ae4d58693a4d355c2a52c1fc21217582524cfc4ac50", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "offer_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "skip_validation": false }, "name": "cancel", - "data": "434e54525052545946d5d82a365e3711ded3343ae4d58693a4d355c2a52c1fc21217582524cfc4ac50", + "data": "434e5452505254594697a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "btc_in": 4949950000, "btc_out": 0, "btc_change": 4949950000, "btc_fee": 0, - "rawtransaction": "020000000001019dcc5ac01572be10f68f4eb146620e6644757fb57aef7824462a2b4771854a7501000000160014f942938d23dce27801698c1741ef3490cabe5cbcffffffff0200000000000000002b6a29c3c7ea08ef9525123100e70d3d2145ee48b95e9d26687189b31c7aef04176e15e9af919c284a1f53fb303e0a2701000000160014f942938d23dce27801698c1741ef3490cabe5cbc02000000000000" + "rawtransaction": "02000000000101d854173e9ed4905322fd15252603e6fb0fa74ece29662dd694bf7c5d46db34ed01000000160014ca742dc81cac024b4cbde6236e1c599304258b4cffffffff0200000000000000002b6a29f7dae01011d34722e465f0868d3df317e5c5199fb830e35626de317c584150be3114face31c0a76fc8303e0a2701000000160014ca742dc81cac024b4cbde6236e1c599304258b4c02000000000000" } }, "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -6061,13 +6061,13 @@ "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "020000000001012d40d01b7c6ca8a9f3bf71dff64517ec281f7306df6a4a049047bd4eb6814f7c00000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadcffffffff020000000000000000226a20a7d1b2246ce9f96e5047dd95da617f0ff5cc26cf78b07e2f72678af06e6f5f4700f2052a01000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadc02000000000000" + "rawtransaction": "020000000001012ac40fdeebf7c01a2698f5b5e7eea0010fbdde64b345f0a16732c59b93419efd00000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000226a2091e0960c55d817b983e462979b739182d16cb862cec1127feab9baa6875c8fff00f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } }, "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -6092,13 +6092,13 @@ "btc_out": 0, "btc_change": 4949873799, "btc_fee": 0, - "rawtransaction": "020000000001014c8218fb53f1d1d2b6c2343f457b8f88bb816e7d0d4c2dea771519544fe75f4302000000160014e7ecb7bc543becd809a56f28774475f2ff4af7dbffffffff0200000000000000002c6a2ab150dfe2b80ded93630a6589fc75257ed3e15b4fc0c7b1af9e292c0e08d55647871a40ae938284cb1b968714092701000000160014e7ecb7bc543becd809a56f28774475f2ff4af7db02000000000000" + "rawtransaction": "020000000001018ba93f0a63356315c790b72f8b7e31503ec8c37b2213ce56abaa0fd3102b1424020000001600140fa13933cab9aaea4cec2b6194cc224402aa6efeffffffff0200000000000000002c6a2ae136236b460653c4983ef1fd9789b3859175df5c946229068f3aa8b3b370ec456bad04d6778e55c73cf587140927010000001600140fa13933cab9aaea4cec2b6194cc224402aa6efe02000000000000" } }, "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "quantity_per_unit": 1, "asset": "MYASSETA", "dividend_asset": "XCP", @@ -6106,7 +6106,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -6125,16 +6125,16 @@ "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "02000000000101c5e6772957e4d28185cc0d47c465629f68f9d267a81ff822f0caa4130b85e25300000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadcffffffff020000000000000000236a210757d5d7af136a8e47d61c68094df5e4e7817e13ed20fe25a3d48af307b0a7444700f2052a01000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadc02000000000000" + "rawtransaction": "0200000000010119223da59577f02cdf31d254f84c7868f7156ac26b2c3242e18c5ce0afe91db500000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000236a21bf2eb869a55c3e60dce8f1e8c72d87a431653b501e8053af28e8bac1ae9c65793500f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } }, "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "transfer_destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "lock": false, "reset": false, @@ -6148,22 +6148,22 @@ "btc_out": 546, "btc_change": 4999999454, "btc_fee": 0, - "rawtransaction": "020000000001011e59576875cb2d76c489adaa8f6f82d1e5d1f0d20974500b0c9a395f7843ef7200000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadcffffffff032202000000000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadc0000000000000000236a210d7c228194c0f40783d0d69ae6f9aea68c50bbcce20cb6f2ef0cd9b7daf26a4cc8deef052a01000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadc02000000000000" + "rawtransaction": "02000000000101ab9a4793ec37e972e246f834cee22b215ee18a2e7de88553a263a50070c7dc3100000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff032202000000000000160014a0a90e6acc5b35a094a931d109e64b559674fb840000000000000000236a2138872d422e7694fa97d233e6740fc804551c12dbd0f6742a238caa5d6c8774d576deef052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } }, "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", 1 ], [ "FAIRMINTC", - "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", 2 ] ], @@ -6172,18 +6172,18 @@ "skip_validation": false }, "name": "mpma", - "data": "434e54525052545903000280f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadc80ea8e3de055b7d485d24fa82a6734f9cfbcfe5c044000003ceebf84b91000000000000000240000000000000004000000000000000100", + "data": "434e54525052545903000280a0a90e6acc5b35a094a931d109e64b559674fb8480d260d2e34c89b206a0797add1942aa6ca5cd4fdf4000003ceebf84b91000000000000000240000000000000004000000000000000100", "btc_in": 4949808000, "btc_out": 2000, "btc_change": 4949806000, "btc_fee": 0, - "rawtransaction": "0200000000010175ea78782ec110faa37f71ab8a9f4a9d75d98391067095f071f0136e8081c1f603000000160014ea8e3de055b7d485d24fa82a6734f9cfbcfe5c04ffffffff03e8030000000000006951210268a5797523c89adf4953e5871ca5ce4d0495d8c79a9208cb842271bdac2ad0cd2102c196356ed5796172ee021e9b495b5ba605c78af308bb3568557e6a7de4c86dba2102de99551f4b3eb4cb440733fa6b4ec4460f581fba8e1c5da73730952789c060d653aee8030000000000006951210277a5797523c89adf4940e5859c5664cceb9e424b2710890911d96e9b36d807aa21021b4ab4845b44812759d69b4906f371c1313e454ff6e73128557e56935b4cd4bf2102de99551f4b3eb4cb440733fa6b4ec4460f581fba8e1c5da73730952789c060d653aeb00b082701000000160014ea8e3de055b7d485d24fa82a6734f9cfbcfe5c0402000000000000" + "rawtransaction": "02000000000101cfaf6940994f3be90705a5a2849361ba870bf35d6d15b4e377d3bb8cdb847d5c03000000160014d260d2e34c89b206a0797add1942aa6ca5cd4fdfffffffff03e803000000000000695121033d9b8157b929434e54cde851f7659e44eb253e7aaa820bbcaa6f245009a00db7210301654169ce49901de71854042d3eaae893f45ef15a74f0459b6dbac4fc337a8821032a0b9b5c054cfd3455e6bd304ee97b1a1fb37c7fe90d392c05114eef7d1cc09653aee80300000000000069512103229b8157b929434e54dee85377c5374a81cd654f0a16a28d7b62c21b5c3679202103fae1c0bbae9b73516eaa52a4544477f1d15e3254973b2f059b6d862a43b7c33821032a0b9b5c054cfd3455e6bd304ee97b1a1fb37c7fe90d392c05114eef7d1cc09653aeb00b082701000000160014d260d2e34c89b206a0797add1942aa6ca5cd4fdf02000000000000" } }, "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "BURNER", @@ -6201,7 +6201,7 @@ "get_asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -6215,14 +6215,14 @@ "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "020000000001018bbd62d367f7ef1f526b8ea16876a2bc787f74801311abced4cce82f571b1f0e00000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadcffffffff020000000000000000356a3391cdd12881318daa77f831c26241d8c6c780ffd924f2b515af17fc4e3aeb7bcbdac703dba46b1c801000958ebf0ff7ed9e78f200f2052a01000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadc02000000000000" + "rawtransaction": "02000000000101df7d6fd911e1547352154244e36a896a2b8077d35da4c69ec4e6821a07112fc800000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000356a33361b6c0c54044c46f87e5bf78e109b5eb37250d937c29a7a320a81baf09eb66312aaa6b9ef81b7b61f218ee8455e2567d22b2600f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } }, "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "quantity": 1000, "memo": null, @@ -6239,37 +6239,37 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880ea8e3de055b7d485d24fa82a6734f9cfbcfe5c04", + "data": "434e54525052545902000000000000000100000000000003e880d260d2e34c89b206a0797add1942aa6ca5cd4fdf", "btc_in": 5000000000, "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "020000000001014ffbd08663a9d76ae25b1c23aad4a4fbc98db7cc3bafc6abe636af6d5efcc86f00000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadcffffffff020000000000000000306a2ed69000aeef87f17de242292a4a5b0924d16cf51b681c7a01ec1569d79994a42eb8ad248632ee5111aaeb116054b800f2052a01000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadc02000000000000" + "rawtransaction": "02000000000101d30a122e70bbcfc68361c85f3a50c18060c0e32c3a3f7f4b5bb6bb3481cfee6600000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000306a2e8fcb24bf55bc4978d9a430f9b41f1a04b346404d61e3d16305958566dc7055705582269294f8ec2ebb0b1e8d956400f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } }, "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480ea8e3de055b7d485d24fa82a6734f9cfbcfe5c0407ffff", + "data": "434e5452505254590480d260d2e34c89b206a0797add1942aa6ca5cd4fdf07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "02000000000101047b32bc2f978a440a696b27eeb9a49b93d8613c764baca295d3d5af2166842400000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadcffffffff020000000000000000236a211f546e2b10cacf5a70a14011b2e6b2755ef4779406d483a77465eb8d62eb4410be00f2052a01000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadc02000000000000" + "rawtransaction": "02000000000101e5ca9aa28f0d76341d561b6074ff4734ba5be20a53b0b3d39df6b6f8879b493100000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000236a21a8a573db466a5d914540aad096f0997de899868a65f4360cf638b01cd7f0041b3b00f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } }, "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "quantity": 1000, "skip_validation": false }, @@ -6279,13 +6279,13 @@ "btc_out": 1000, "btc_change": 4999999000, "btc_fee": 0, - "rawtransaction": "020000000001015d26c5ae76f2f03ec706416e43a2dcc222da3d8237a372b72e3752bd2e0eb22d00000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadcffffffff03e803000000000000160014444dac66fefa98354ded2447aec63279aebf4e6b00000000000000000c6a0a4f428e2a847f7347818c18ee052a01000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadc02000000000000" + "rawtransaction": "02000000000101215f231861e5b622b58e6b2abee10cad2699238d105dff1a04abdc554d6c835b00000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff03e803000000000000160014287acd9953ee89fa6b938a43fd6515acb4fd1e0f00000000000000000c6a0ab5093e6d20cfa6727b4418ee052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } }, "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -6317,20 +6317,20 @@ "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "020000000001016c2f1b0dea67de75c4108d4a96ce0892c31605aef2ef3354d3f492bc9058e60a00000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadcffffffff020000000000000000316a2fec0d6b83ce6c5f9b2dc97b4584f736214417ddb45217baa9995f3b42d27c17c9516aeb37ac56c663f1f785b5e798f800f2052a01000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadc02000000000000" + "rawtransaction": "020000000001017c751df4631de1c9616aec45e7634a049c92b31ce9d74ca78df32c3fa09629af00000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000316a2f2b660474faa29eb9c5ccae18ce3b8e4fc0526cc81b281186cf19754fc822748732d2ab25928b3cdc59830bbb095c3e00f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } }, "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "OPENFAIR", "quantity": 0, "skip_validation": false, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "divisible": true, "locked": false }, @@ -6342,13 +6342,13 @@ "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "0200000000010107099604bc565fef4dd6043f8e829e6f83f2d107948c17c33e665a23a3cc810d00000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadcffffffff020000000000000000156a1366cf910fc7cb7a99fc336785179e709dfcdb8b00f2052a01000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadc02000000000000" + "rawtransaction": "02000000000101ce2278c985d555c1c97a5d9608b5e76e53af29de8da614a3fa5ba3e1f8748a9700000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000156a13ea1510453fd7721e4c0fd34d6760c74a07fb4d00f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } }, "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -6368,30 +6368,30 @@ "btc_out": 10000, "btc_change": 4999990000, "btc_fee": 0, - "rawtransaction": "02000000000101b9ef0e72471a2608008af029733824d672f344c8dc1b7c2f284ea4627dc70feb00000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadcffffffff031027000000000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadc0000000000000000146a1283e49ab14310aa4d2b9ec6feaf728c1161a6f0ca052a01000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadc02000000000000" + "rawtransaction": "02000000000101a083620385610e58938234512b566b6b433db4be019147169c8eb57543417e8b00000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff031027000000000000160014a0a90e6acc5b35a094a931d109e64b559674fb840000000000000000146a12aeb7b16f0af5ae303e8ba37097a47641614df0ca052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } }, "/v2/utxos//compose/detach": { "result": { "params": { - "source": "6c0ed9d9a7666e9345a6ccf236dbc21c6f71362370e367d6cec885f358640c2d:0", - "destination": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "skip_validation": false }, "name": "detach", - "data": "434e5452505254596662637274317137773467726d65306e3278746d7135706332326c373865786e746564306b6b7566706e337a74", + "data": "434e54525052545966626372743171357a357375366b767476363670393966783867736e656a74326b743866377579673961736c61", "btc_in": 10000, "btc_out": 0, "btc_change": 10000, "btc_fee": 0, - "rawtransaction": "020000000001012d0c6458f385c8ced667e3702336716f1cc2db36f2cca645936e66a7d9d90e6c00000000160014ddd13b2eee564beed8f5c25e4fbd9e73b85024dfffffffff020000000000000000376a358231e661c705a101130ad598df35038684f0b3797e6206c812a7980385e7ffa5ab5e61133c4c9db3251cabac759352b19b1113e2051027000000000000160014ddd13b2eee564beed8f5c25e4fbd9e73b85024df02000000000000" + "rawtransaction": "02000000000101103306445e9e2206e7e480f5849f2ab7d012ec7c728afc41bfc478783a198cbc0000000016001447e5951068f42b237b00d9525db4515fd642e8e7ffffffff020000000000000000376a353a36eec8bd08a6a4377ee7e6e279b070abec5f17aaa20991607f3e514a2f67bec0ba05de90f349c74207f20b9f942694aff01abd43102700000000000016001447e5951068f42b237b00d9525db4515fd642e8e702000000000000" } }, "/v2/utxos//compose/movetoutxo": { "result": { "params": { - "source": "6c0ed9d9a7666e9345a6ccf236dbc21c6f71362370e367d6cec885f358640c2d:0", - "destination": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "skip_validation": false }, "name": "move", @@ -6400,7 +6400,7 @@ "btc_out": 10000, "btc_change": null, "btc_fee": 0, - "rawtransaction": "020000000001012d0c6458f385c8ced667e3702336716f1cc2db36f2cca645936e66a7d9d90e6c00000000160014ddd13b2eee564beed8f5c25e4fbd9e73b85024dfffffffff011027000000000000160014f3aa81ef2f9a8cbd8281c295ff1f269af2d7dadc02000000000000" + "rawtransaction": "02000000000101103306445e9e2206e7e480f5849f2ab7d012ec7c728afc41bfc478783a198cbc0000000016001447e5951068f42b237b00d9525db4515fd642e8e7ffffffff011027000000000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" } }, "/v2/compose/attach/estimatexcpfees": { @@ -6412,8 +6412,8 @@ "asset": "OPENFAIR", "asset_id": "117132633401", "asset_longname": null, - "issuer": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "owner": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "owner": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "divisible": true, "locked": false, "supply": 0, @@ -6421,16 +6421,16 @@ "description_locked": false, "first_issuance_block_index": 232, "last_issuance_block_index": 232, - "first_issuance_block_time": 1733654196, - "last_issuance_block_time": 1733654196, + "first_issuance_block_time": 1733662942, + "last_issuance_block_time": 1733662942, "supply_normalized": "0.00000000" }, { "asset": "PREMINT", "asset_id": "4837764613", "asset_longname": null, - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", - "owner": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "owner": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": false, "supply": 0, @@ -6438,16 +6438,16 @@ "description_locked": false, "first_issuance_block_index": 227, "last_issuance_block_index": 229, - "first_issuance_block_time": 1733654180, - "last_issuance_block_time": 1733654186, + "first_issuance_block_time": 1733662914, + "last_issuance_block_time": 1733662921, "supply_normalized": "0.00000000" }, { "asset": "STARTNOW", "asset_id": "150450094622", "asset_longname": null, - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", - "owner": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "owner": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": false, "supply": 0, @@ -6455,16 +6455,16 @@ "description_locked": false, "first_issuance_block_index": 225, "last_issuance_block_index": 226, - "first_issuance_block_time": 1733654171, - "last_issuance_block_time": 1733654175, + "first_issuance_block_time": 1733662907, + "last_issuance_block_time": 1733662911, "supply_normalized": "0.00000000" }, { "asset": "EXPANSIVE", "asset_id": "1024679892006", "asset_longname": null, - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", - "owner": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "owner": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": false, "supply": 0, @@ -6472,16 +6472,16 @@ "description_locked": false, "first_issuance_block_index": 222, "last_issuance_block_index": 223, - "first_issuance_block_time": 1733654161, - "last_issuance_block_time": 1733654164, + "first_issuance_block_time": 1733662886, + "last_issuance_block_time": 1733662889, "supply_normalized": "0.00000000" }, { "asset": "BURNER", "asset_id": "21328597", "asset_longname": null, - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", - "owner": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "owner": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true, "supply": 100000000, @@ -6489,8 +6489,8 @@ "description_locked": false, "first_issuance_block_index": 220, "last_issuance_block_index": 221, - "first_issuance_block_time": 1733654154, - "last_issuance_block_time": 1733654158, + "first_issuance_block_time": 1733662879, + "last_issuance_block_time": 1733662883, "supply_normalized": "1.00000000" } ], @@ -6502,8 +6502,8 @@ "asset": "BURNER", "asset_id": "21328597", "asset_longname": null, - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", - "owner": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "owner": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true, "supply": 100000000, @@ -6511,15 +6511,15 @@ "description_locked": false, "first_issuance_block_index": 220, "last_issuance_block_index": 221, - "first_issuance_block_time": 1733654154, - "last_issuance_block_time": 1733654158, + "first_issuance_block_time": 1733662879, + "last_issuance_block_time": 1733662883, "supply_normalized": "1.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -6528,14 +6528,14 @@ "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, "quantity_normalized": "0.80000000" }, { - "address": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -6544,7 +6544,7 @@ "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -6557,7 +6557,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "asset_longname": null, "quantity": 82599966196, @@ -6580,9 +6580,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "85d1eb2ccb489dc630f805ae3d12eab0297fbd148888b67dd53ae32a3136e746", + "tx_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", "block_index": 179, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6598,7 +6598,7 @@ "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733653875, + "block_time": 1733662607, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6626,9 +6626,9 @@ }, { "tx_index": 55, - "tx_hash": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db", + "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", "block_index": 202, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6644,7 +6644,7 @@ "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733654049, + "block_time": 1733662777, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6672,9 +6672,9 @@ }, { "tx_index": 62, - "tx_hash": "eb952b15d4f8a56bee18f52cff3a452d5bae33bc750ec75365fdb59b176c1918", + "tx_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", "block_index": 188, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6690,7 +6690,7 @@ "status": "cancelled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733653974, + "block_time": 1733662715, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6718,9 +6718,9 @@ }, { "tx_index": 64, - "tx_hash": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890", + "tx_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", "block_index": 211, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -6736,7 +6736,7 @@ "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733654103, + "block_time": 1733662819, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6764,9 +6764,9 @@ }, { "tx_index": 56, - "tx_hash": "7b05968a87bb2320e00dd665e078afa54d760736e70225c51b9ceb6294ec64ce", + "tx_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", "block_index": 182, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6782,7 +6782,7 @@ "status": "filled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733653941, + "block_time": 1733662675, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6815,13 +6815,13 @@ "/v2/assets//matches": { "result": [ { - "id": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db_c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", + "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "tx0_index": 55, - "tx0_hash": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db", - "tx0_address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 58, - "tx1_hash": "c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", - "tx1_address": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6834,7 +6834,7 @@ "match_expire_index": 203, "fee_paid": 0, "status": "expired", - "block_time": 1733654067, + "block_time": 1733662785, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6854,13 +6854,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db_7b05968a87bb2320e00dd665e078afa54d760736e70225c51b9ceb6294ec64ce", + "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", "tx0_index": 55, - "tx0_hash": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db", - "tx0_address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 56, - "tx1_hash": "7b05968a87bb2320e00dd665e078afa54d760736e70225c51b9ceb6294ec64ce", - "tx1_address": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "tx1_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6873,7 +6873,7 @@ "match_expire_index": 201, "fee_paid": 0, "status": "completed", - "block_time": 1733653941, + "block_time": 1733662675, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6893,13 +6893,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "85d1eb2ccb489dc630f805ae3d12eab0297fbd148888b67dd53ae32a3136e746_16ae9452389a45479d749a8738ec8b505c96a0dbfeab55bb8582a94c4ced8f6d", + "id": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf_4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", "tx0_index": 53, - "tx0_hash": "85d1eb2ccb489dc630f805ae3d12eab0297fbd148888b67dd53ae32a3136e746", - "tx0_address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "tx0_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 54, - "tx1_hash": "16ae9452389a45479d749a8738ec8b505c96a0dbfeab55bb8582a94c4ced8f6d", - "tx1_address": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "tx1_hash": "4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", + "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6912,7 +6912,7 @@ "match_expire_index": 178, "fee_paid": 0, "status": "expired", - "block_time": 1733653875, + "block_time": 1733662607, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6932,13 +6932,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890_c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", + "id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "tx0_index": 64, - "tx0_hash": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890", - "tx0_address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "tx0_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 58, - "tx1_hash": "c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", - "tx1_address": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6951,7 +6951,7 @@ "match_expire_index": 224, "fee_paid": 0, "status": "expired", - "block_time": 1733654171, + "block_time": 1733662907, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6978,19 +6978,19 @@ "result": [ { "block_index": 221, - "address": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "asset": "BURNER", "quantity": 20000000, "calling_function": "fairmint commission", - "event": "2c09e21e3acddbcfb05c8e148555306f0cd61b27370cbaeba326dab2ae860635", + "event": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", "tx_index": 97, "utxo": null, "utxo_address": null, - "block_time": 1733654158, + "block_time": 1733662883, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -6998,19 +6998,19 @@ }, { "block_index": 221, - "address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "asset": "BURNER", "quantity": 80000000, "calling_function": "fairmint", - "event": "2c09e21e3acddbcfb05c8e148555306f0cd61b27370cbaeba326dab2ae860635", + "event": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", "tx_index": 97, "utxo": null, "utxo_address": null, - "block_time": 1733654158, + "block_time": 1733662883, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -7028,11 +7028,11 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "utxo": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", - "utxo_address": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", - "block_time": 1733654206, + "utxo": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "utxo_address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7044,15 +7044,15 @@ }, { "block_index": 232, - "address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "754a8571472b2a462478ef7ab57f7544660e6246b14e8ff610be7215c05acc9d", + "event": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1733654196, + "block_time": 1733662942, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7064,15 +7064,15 @@ }, { "block_index": 227, - "address": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "2f8cbeec1de34a0acdb2a73b97f43a4bc9d6727e21551d053a24555f73ff3e26", + "event": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", "tx_index": 101, "utxo": null, "utxo_address": null, - "block_time": 1733654180, + "block_time": 1733662914, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7084,15 +7084,15 @@ }, { "block_index": 225, - "address": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "e682069a24b5506e29a2ad18899e8287b315113beceabf98c5aa54e9480a5ee5", + "event": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", "tx_index": 100, "utxo": null, "utxo_address": null, - "block_time": 1733654171, + "block_time": 1733662907, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7104,15 +7104,15 @@ }, { "block_index": 222, - "address": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "c116c037e8404f257440dc659117ae54297a12e44713c7bf66e846984440c522", + "event": "55c081be300d1ac4ff7b175d9795db435293e7dc10a2b88ba972b6995ca61ac6", "tx_index": 98, "utxo": null, "utxo_address": null, - "block_time": 1733654161, + "block_time": 1733662886, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7135,14 +7135,14 @@ "result": [ { "tx_index": 97, - "tx_hash": "2c09e21e3acddbcfb05c8e148555306f0cd61b27370cbaeba326dab2ae860635", + "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", "msg_index": 0, "block_index": 221, "asset": "BURNER", "quantity": 100000000, "divisible": true, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "transfer": false, "callable": false, "call_date": 0, @@ -7156,20 +7156,20 @@ "description_locked": true, "fair_minting": false, "asset_events": "fairmint", - "block_time": 1733654158, + "block_time": 1733662883, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 96, - "tx_hash": "49b096b7c2fe668062286cc86a91741a79aa8e6ee219f8060ffe79f99614067a", + "tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", "msg_index": 0, "block_index": 220, "asset": "BURNER", "quantity": 0, "divisible": true, - "source": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "transfer": false, "callable": false, "call_date": 0, @@ -7183,7 +7183,7 @@ "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", - "block_time": 1733654154, + "block_time": 1733662879, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -7195,17 +7195,17 @@ "result": [ { "tx_index": 106, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", - "destination": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7218,17 +7218,17 @@ }, { "tx_index": 81, - "tx_hash": "f6c181806e13f071f09570069183d9759d4a9f8aab717fa3fa10c12e7878ea75", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", - "destination": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "memo1", "fee_paid": 0, - "block_time": 1733654070, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7241,17 +7241,17 @@ }, { "tx_index": 80, - "tx_hash": "2e9a043723665e25f4b2021b5fe456913dcd48e6868f82e1edf14b7265e80db9", + "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", "block_index": 204, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", - "destination": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "746865206d656d6f", "fee_paid": 0, - "block_time": 1733654067, + "block_time": 1733662785, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7264,17 +7264,17 @@ }, { "tx_index": 79, - "tx_hash": "8ef67d7d6c1d5c0628b4e83a97fff0a84ed3fcdba16fed84f0afd24a0a9640f0", + "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", "block_index": 203, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "memo1", "fee_paid": 0, - "block_time": 1733654062, + "block_time": 1733662781, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7287,17 +7287,17 @@ }, { "tx_index": 78, - "tx_hash": "a230c82ed1a96e4d8423294791f26c21da217f818ca195fe15ba90fe340b3caf", + "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", "block_index": 202, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "the memo", "fee_paid": 0, - "block_time": 1733654049, + "block_time": 1733662777, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7316,9 +7316,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "85039521bb843d04ff64d50995c5b214fbfd25d985e7a7527d0f62268e0ee72c", + "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7327,7 +7327,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7337,7 +7337,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733653745, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7354,9 +7354,9 @@ }, { "tx_index": 29, - "tx_hash": "f0f33719a51934b12121cefb85a8f26cc29f1d6020fc551c4de5629502ae163c", + "tx_hash": "6daa84f64ee34d9155c3428658588fff312d5e267875c528a19e7b6706fb3fa5", "block_index": 133, - "source": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7365,7 +7365,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "origin": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7375,7 +7375,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733653748, + "block_time": 1733662488, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7392,9 +7392,9 @@ }, { "tx_index": 30, - "tx_hash": "44e8e7bd6b69c345d0f80a3239d39fa08d587946cb1e1dd2bd528f4e5ccd11a7", + "tx_hash": "ea1a192405fa4439cd194c2dd622e088addef725cb25debbd12b34766f2140a7", "block_index": 141, - "source": "mnGojhWPPrex3Zx2FCC9fMnGMb1oqQ3QYh", + "source": "mwGrVHb495rLnPnW2W9yvMfsayfdGhBD7M", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7402,10 +7402,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "19ba0f01d225db6100cfe6738fc7349818c4189e36fa8f7927399dca0b62a0ea", - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "last_status_tx_hash": "8d23eecb8396aa466580dc248667649c9fd8e56e37ec0e13c9361bb3e7ab2dd0", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 0, - "last_status_tx_source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "last_status_tx_source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "close_block_index": 141, "price": 1.0, "fiat_price": null, @@ -7413,7 +7413,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733653786, + "block_time": 1733662517, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7430,18 +7430,18 @@ }, { "tx_index": 33, - "tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "block_index": 234, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "last_status_tx_hash": null, - "origin": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7451,7 +7451,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7473,9 +7473,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "85039521bb843d04ff64d50995c5b214fbfd25d985e7a7527d0f62268e0ee72c", + "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7484,7 +7484,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7494,7 +7494,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733653745, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7514,7 +7514,7 @@ "result": [ { "asset": "BURNER", - "address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "quantity": 80000000, "escrow": null, "cursor_id": "balances_55", @@ -7523,7 +7523,7 @@ "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -7531,7 +7531,7 @@ }, { "asset": "BURNER", - "address": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "quantity": 20000000, "escrow": null, "cursor_id": "balances_56", @@ -7540,7 +7540,7 @@ "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -7555,26 +7555,26 @@ { "tx_index": 106, "dispense_index": 0, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "destination": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "btc_amount": 1000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "last_status_tx_hash": null, - "origin": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7589,7 +7589,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7603,26 +7603,26 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "f4c1495e8f29a70de8153f7f46d4dd351129bc7818158826dc6de3104b72fe58", + "tx_hash": "72aeb92e989c915f9b002d26cd474ce972dcb2c06d76abfabf4feee4d3ba3e25", "block_index": 138, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "destination": "bcrt1qmhgnkthw2e97ak84cf0yl0v7wwu9qfxlus0e8m", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "destination": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "btc_amount": 10000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "last_status_tx_hash": null, - "origin": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7637,7 +7637,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733653766, + "block_time": 1733662506, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7651,18 +7651,18 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "b963ee72475b420ca10b47d7aae08af1d35240e662d35c8dbc1ef4425de1042a", + "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "85039521bb843d04ff64d50995c5b214fbfd25d985e7a7527d0f62268e0ee72c", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7670,7 +7670,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7685,7 +7685,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733653745, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7699,18 +7699,18 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b6159254ea0341f3ffeabf661e1acdcfec60c8cbc1098c4da6a443a6fd601913", + "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", "block_index": 131, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "85039521bb843d04ff64d50995c5b214fbfd25d985e7a7527d0f62268e0ee72c", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7718,7 +7718,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7733,7 +7733,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733653741, + "block_time": 1733662481, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7756,10 +7756,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "49b096b7c2fe668062286cc86a91741a79aa8e6ee219f8060ffe79f99614067a", + "tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", "tx_index": 96, "block_index": 221, - "source": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "asset": "BURNER", "asset_parent": null, "asset_longname": null, @@ -7783,7 +7783,7 @@ "earned_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, - "block_time": 1733654158, + "block_time": 1733662883, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "1.00000000", "soft_cap_normalized": "0.00000000", @@ -7801,21 +7801,21 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "2c09e21e3acddbcfb05c8e148555306f0cd61b27370cbaeba326dab2ae860635", + "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", "tx_index": 97, "block_index": 221, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "fairminter_tx_hash": "49b096b7c2fe668062286cc86a91741a79aa8e6ee219f8060ffe79f99614067a", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "fairminter_tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", - "block_time": 1733654158, + "block_time": 1733662883, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -7836,9 +7836,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "85d1eb2ccb489dc630f805ae3d12eab0297fbd148888b67dd53ae32a3136e746", + "tx_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", "block_index": 179, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7854,7 +7854,7 @@ "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733653875, + "block_time": 1733662607, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7882,9 +7882,9 @@ }, { "tx_index": 55, - "tx_hash": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db", + "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", "block_index": 202, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7900,7 +7900,7 @@ "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733654049, + "block_time": 1733662777, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7928,9 +7928,9 @@ }, { "tx_index": 56, - "tx_hash": "7b05968a87bb2320e00dd665e078afa54d760736e70225c51b9ceb6294ec64ce", + "tx_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", "block_index": 182, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7946,7 +7946,7 @@ "status": "filled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733653941, + "block_time": 1733662675, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7974,9 +7974,9 @@ }, { "tx_index": 58, - "tx_hash": "c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", + "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "block_index": 205, - "source": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7992,7 +7992,7 @@ "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733654070, + "block_time": 1733662789, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -8020,9 +8020,9 @@ }, { "tx_index": 62, - "tx_hash": "eb952b15d4f8a56bee18f52cff3a452d5bae33bc750ec75365fdb59b176c1918", + "tx_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", "block_index": 188, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -8038,7 +8038,7 @@ "status": "cancelled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733653974, + "block_time": 1733662715, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8071,9 +8071,9 @@ "/v2/orders/": { "result": { "tx_index": 104, - "tx_hash": "d5d82a365e3711ded3343ae4d58693a4d355c2a52c1fc21217582524cfc4ac50", + "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "block_index": 231, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 0, @@ -8089,7 +8089,7 @@ "status": "open", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733654193, + "block_time": 1733662928, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -8100,7 +8100,7 @@ "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmhgnkthw2e97ak84cf0yl0v7wwu9qfxlus0e8m", + "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "divisible": true, "locked": false }, @@ -8119,13 +8119,13 @@ "/v2/orders//matches": { "result": [ { - "id": "3762a961768c36422a62995a35bb8d8f5c3dba07a2d06c584fc40d10ccee8a9d_d5d82a365e3711ded3343ae4d58693a4d355c2a52c1fc21217582524cfc4ac50", + "id": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076_97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "tx0_index": 103, - "tx0_hash": "3762a961768c36422a62995a35bb8d8f5c3dba07a2d06c584fc40d10ccee8a9d", - "tx0_address": "bcrt1qmhgnkthw2e97ak84cf0yl0v7wwu9qfxlus0e8m", + "tx0_hash": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076", + "tx0_address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "tx1_index": 104, - "tx1_hash": "d5d82a365e3711ded3343ae4d58693a4d355c2a52c1fc21217582524cfc4ac50", - "tx1_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "tx1_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx1_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8138,11 +8138,11 @@ "match_expire_index": 251, "fee_paid": 0, "status": "pending", - "block_time": 1733654193, + "block_time": 1733662928, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmhgnkthw2e97ak84cf0yl0v7wwu9qfxlus0e8m", + "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "divisible": true, "locked": false }, @@ -8165,14 +8165,14 @@ "result": [ { "tx_index": 57, - "tx_hash": "7b7c75a3ff18be8fb5580ab1114527633ec360d50a518b4a05cb5f90fc12e6ba", + "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", "block_index": 182, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", - "destination": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "btc_amount": 2000, - "order_match_id": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db_7b05968a87bb2320e00dd665e078afa54d760736e70225c51b9ceb6294ec64ce", + "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", "status": "valid", - "block_time": 1733653941, + "block_time": 1733662675, "btc_amount_normalized": "0.00002000" } ], @@ -8183,9 +8183,9 @@ "result": [ { "tx_index": 56, - "tx_hash": "7b05968a87bb2320e00dd665e078afa54d760736e70225c51b9ceb6294ec64ce", + "tx_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", "block_index": 182, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -8202,7 +8202,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1733653941, + "block_time": 1733662675, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -8228,9 +8228,9 @@ }, { "tx_index": 58, - "tx_hash": "c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", + "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "block_index": 205, - "source": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -8247,7 +8247,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1733654070, + "block_time": 1733662789, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -8273,9 +8273,9 @@ }, { "tx_index": 53, - "tx_hash": "85d1eb2ccb489dc630f805ae3d12eab0297fbd148888b67dd53ae32a3136e746", + "tx_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", "block_index": 179, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -8292,7 +8292,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733653875, + "block_time": 1733662607, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8318,9 +8318,9 @@ }, { "tx_index": 55, - "tx_hash": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db", + "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", "block_index": 202, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -8337,7 +8337,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733654049, + "block_time": 1733662777, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8363,9 +8363,9 @@ }, { "tx_index": 62, - "tx_hash": "eb952b15d4f8a56bee18f52cff3a452d5bae33bc750ec75365fdb59b176c1918", + "tx_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", "block_index": 188, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -8382,7 +8382,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733653974, + "block_time": 1733662715, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8413,13 +8413,13 @@ "/v2/orders///matches": { "result": [ { - "id": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db_c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", + "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "tx0_index": 55, - "tx0_hash": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db", - "tx0_address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 58, - "tx1_hash": "c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", - "tx1_address": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -8435,7 +8435,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733654067, + "block_time": 1733662785, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8455,13 +8455,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db_7b05968a87bb2320e00dd665e078afa54d760736e70225c51b9ceb6294ec64ce", + "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", "tx0_index": 55, - "tx0_hash": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db", - "tx0_address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 56, - "tx1_hash": "7b05968a87bb2320e00dd665e078afa54d760736e70225c51b9ceb6294ec64ce", - "tx1_address": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "tx1_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -8477,7 +8477,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733653941, + "block_time": 1733662675, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8497,13 +8497,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "85d1eb2ccb489dc630f805ae3d12eab0297fbd148888b67dd53ae32a3136e746_16ae9452389a45479d749a8738ec8b505c96a0dbfeab55bb8582a94c4ced8f6d", + "id": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf_4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", "tx0_index": 53, - "tx0_hash": "85d1eb2ccb489dc630f805ae3d12eab0297fbd148888b67dd53ae32a3136e746", - "tx0_address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "tx0_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 54, - "tx1_hash": "16ae9452389a45479d749a8738ec8b505c96a0dbfeab55bb8582a94c4ced8f6d", - "tx1_address": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "tx1_hash": "4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", + "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8519,7 +8519,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733653875, + "block_time": 1733662607, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8539,13 +8539,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890_c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", + "id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "tx0_index": 64, - "tx0_hash": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890", - "tx0_address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "tx0_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 58, - "tx1_hash": "c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", - "tx1_address": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8561,7 +8561,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733654171, + "block_time": 1733662907, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8587,13 +8587,13 @@ "/v2/order_matches": { "result": [ { - "id": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db_c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", + "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "tx0_index": 55, - "tx0_hash": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db", - "tx0_address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 58, - "tx1_hash": "c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", - "tx1_address": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -8606,7 +8606,7 @@ "match_expire_index": 203, "fee_paid": 0, "status": "expired", - "block_time": 1733654067, + "block_time": 1733662785, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8626,13 +8626,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db_7b05968a87bb2320e00dd665e078afa54d760736e70225c51b9ceb6294ec64ce", + "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", "tx0_index": 55, - "tx0_hash": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db", - "tx0_address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 56, - "tx1_hash": "7b05968a87bb2320e00dd665e078afa54d760736e70225c51b9ceb6294ec64ce", - "tx1_address": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "tx1_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -8645,7 +8645,7 @@ "match_expire_index": 201, "fee_paid": 0, "status": "completed", - "block_time": 1733653941, + "block_time": 1733662675, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8665,13 +8665,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "85d1eb2ccb489dc630f805ae3d12eab0297fbd148888b67dd53ae32a3136e746_16ae9452389a45479d749a8738ec8b505c96a0dbfeab55bb8582a94c4ced8f6d", + "id": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf_4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", "tx0_index": 53, - "tx0_hash": "85d1eb2ccb489dc630f805ae3d12eab0297fbd148888b67dd53ae32a3136e746", - "tx0_address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "tx0_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 54, - "tx1_hash": "16ae9452389a45479d749a8738ec8b505c96a0dbfeab55bb8582a94c4ced8f6d", - "tx1_address": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "tx1_hash": "4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", + "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8684,7 +8684,7 @@ "match_expire_index": 178, "fee_paid": 0, "status": "expired", - "block_time": 1733653875, + "block_time": 1733662607, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8704,13 +8704,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890_c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", + "id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "tx0_index": 64, - "tx0_hash": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890", - "tx0_address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "tx0_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "tx1_index": 58, - "tx1_hash": "c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", - "tx1_address": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8723,7 +8723,7 @@ "match_expire_index": 224, "fee_paid": 0, "status": "expired", - "block_time": 1733654171, + "block_time": 1733662907, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8743,13 +8743,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "3762a961768c36422a62995a35bb8d8f5c3dba07a2d06c584fc40d10ccee8a9d_d5d82a365e3711ded3343ae4d58693a4d355c2a52c1fc21217582524cfc4ac50", + "id": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076_97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "tx0_index": 103, - "tx0_hash": "3762a961768c36422a62995a35bb8d8f5c3dba07a2d06c584fc40d10ccee8a9d", - "tx0_address": "bcrt1qmhgnkthw2e97ak84cf0yl0v7wwu9qfxlus0e8m", + "tx0_hash": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076", + "tx0_address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "tx1_index": 104, - "tx1_hash": "d5d82a365e3711ded3343ae4d58693a4d355c2a52c1fc21217582524cfc4ac50", - "tx1_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "tx1_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx1_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8762,11 +8762,11 @@ "match_expire_index": 251, "fee_paid": 0, "status": "pending", - "block_time": 1733654193, + "block_time": 1733662928, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmhgnkthw2e97ak84cf0yl0v7wwu9qfxlus0e8m", + "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "divisible": true, "locked": false }, @@ -8807,61 +8807,61 @@ "result": [ { "tx_index": 9, - "tx_hash": "13d8e42d5c11d7dd3aae29e284f52fe33f10646b748b36b09e2f356ac8601ec2", + "tx_hash": "95db2791e37d288a1a4fb3c7414e3aca564b4024baaaf2c7bc77689349c31ca7", "block_index": 112, - "source": "bcrt1qspkkcgh8yyzfa4mh69yu97m5mshzt8p8wapmx9", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733653663, + "block_time": 1733662402, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 8, - "tx_hash": "4d73d2dad9d466959b2e006efe3a6d2cb5701bed056a9c55049e76829251a0b9", + "tx_hash": "6de7deec7c8727742c815e615c25f63198863a9719b8689ce8570a98b634ce88", "block_index": 112, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733653663, + "block_time": 1733662402, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 7, - "tx_hash": "54d4fa4cc894f35b918235f996733dd45d146a55bb62b543c3e04a2c3de512a3", + "tx_hash": "ea86811a25f89384639a856ef3b3d26ebabfac1d2c31342efdef66929a8caf85", "block_index": 112, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733653663, + "block_time": 1733662402, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 6, - "tx_hash": "6bd50f95acc75506114f8661479c25c320c7422b83cddd168e18629f971bf87c", + "tx_hash": "adc429a9b034bc1bf40ab54154ae4ed40522824a59177a92f9bae9163626d06a", "block_index": 112, - "source": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "source": "bcrt1qcg7s7t5nr4edjh4znztk65wcrp3quf3h8ky2le", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733653663, + "block_time": 1733662402, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 5, - "tx_hash": "df6492a64ce5d5f81771c5a56b8d998611a5321df9f371ca6b5f4145422f667c", + "tx_hash": "87bf46153fabbf44f202f0538ee531356e5ce77768e094ec9859b5a11380c959", "block_index": 112, - "source": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733653663, + "block_time": 1733662402, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" } @@ -8873,9 +8873,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "85039521bb843d04ff64d50995c5b214fbfd25d985e7a7527d0f62268e0ee72c", + "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8884,7 +8884,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8894,7 +8894,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733653745, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8911,9 +8911,9 @@ }, { "tx_index": 29, - "tx_hash": "f0f33719a51934b12121cefb85a8f26cc29f1d6020fc551c4de5629502ae163c", + "tx_hash": "6daa84f64ee34d9155c3428658588fff312d5e267875c528a19e7b6706fb3fa5", "block_index": 133, - "source": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8922,7 +8922,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "origin": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8932,7 +8932,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733653748, + "block_time": 1733662488, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8949,9 +8949,9 @@ }, { "tx_index": 30, - "tx_hash": "44e8e7bd6b69c345d0f80a3239d39fa08d587946cb1e1dd2bd528f4e5ccd11a7", + "tx_hash": "ea1a192405fa4439cd194c2dd622e088addef725cb25debbd12b34766f2140a7", "block_index": 141, - "source": "mnGojhWPPrex3Zx2FCC9fMnGMb1oqQ3QYh", + "source": "mwGrVHb495rLnPnW2W9yvMfsayfdGhBD7M", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8959,10 +8959,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "19ba0f01d225db6100cfe6738fc7349818c4189e36fa8f7927399dca0b62a0ea", - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "last_status_tx_hash": "8d23eecb8396aa466580dc248667649c9fd8e56e37ec0e13c9361bb3e7ab2dd0", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 0, - "last_status_tx_source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "last_status_tx_source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "close_block_index": 141, "price": 1.0, "fiat_price": null, @@ -8970,7 +8970,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733653786, + "block_time": 1733662517, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8987,9 +8987,9 @@ }, { "tx_index": 68, - "tx_hash": "a853448add5cf3b7d499390daefeb82a1537c36d5a6cf65ebf98a47f9d495112", + "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "block_index": 194, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8998,7 +8998,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -9008,11 +9008,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733654007, + "block_time": 1733662737, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -9025,18 +9025,18 @@ }, { "tx_index": 33, - "tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "block_index": 234, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "last_status_tx_hash": null, - "origin": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9046,7 +9046,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9068,9 +9068,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "85039521bb843d04ff64d50995c5b214fbfd25d985e7a7527d0f62268e0ee72c", + "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -9079,7 +9079,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9089,7 +9089,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733653745, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9110,18 +9110,18 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "b963ee72475b420ca10b47d7aae08af1d35240e662d35c8dbc1ef4425de1042a", + "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "85039521bb843d04ff64d50995c5b214fbfd25d985e7a7527d0f62268e0ee72c", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9129,7 +9129,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9144,7 +9144,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733653745, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9158,18 +9158,18 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b6159254ea0341f3ffeabf661e1acdcfec60c8cbc1098c4da6a443a6fd601913", + "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", "block_index": 131, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "85039521bb843d04ff64d50995c5b214fbfd25d985e7a7527d0f62268e0ee72c", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9177,7 +9177,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9192,7 +9192,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733653741, + "block_time": 1733662481, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9211,19 +9211,19 @@ "result": [ { "tx_index": 42, - "tx_hash": "488ad8ca3e241a9007c30ae55791c9e9f050526725ae0e84de257c9829ac2b3d", + "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", "block_index": 146, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", - "block_time": 1733653806, + "block_time": 1733662534, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -9244,19 +9244,19 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "488ad8ca3e241a9007c30ae55791c9e9f050526725ae0e84de257c9829ac2b3d", + "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", "block_index": 146, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", - "block_time": 1733653806, + "block_time": 1733662534, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -9279,11 +9279,11 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "488ad8ca3e241a9007c30ae55791c9e9f050526725ae0e84de257c9829ac2b3d", + "event": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", "tx_index": 42, - "utxo": "6a3b9739a1c67ae9286edef5d3c069b8b1cf3e385b6f0dbec84efa0ea55e3d12:0", - "utxo_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "block_time": 1733653806, + "utxo": "4d60faaba1be8d75881d245edb4e2f8aed601765899645793cf6d3d731c5d520:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662534, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9304,27 +9304,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 234, - "ledger_hash": "5394feb5908671378295b2994e54ba0a6ee5dc72307e644a630ceffaed39e3be", - "messages_hash": "97ae54dc6c735be5c33642d2c006b00c9ea20a21ae4f9a5825e9c1432084d489", + "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", + "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", "transaction_count": 1, - "txlist_hash": "ae1fcb28a8f13bdfc6c90d0c3512a6e7d2ec197c7a5b9bd372cbe86ea79f45c9", - "block_time": 1733654206 + "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", + "block_time": 1733662951 }, "tx_hash": null, "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 929, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106 }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 928, @@ -9333,14 +9333,14 @@ "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9351,9 +9351,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 927, @@ -9362,9 +9362,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": 0, - "tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9374,24 +9374,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9401,9 +9401,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 } ], "next_cursor": 925, @@ -9415,15 +9415,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 234, - "ledger_hash": "5394feb5908671378295b2994e54ba0a6ee5dc72307e644a630ceffaed39e3be", - "messages_hash": "97ae54dc6c735be5c33642d2c006b00c9ea20a21ae4f9a5825e9c1432084d489", + "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", + "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", "transaction_count": 1, - "txlist_hash": "ae1fcb28a8f13bdfc6c90d0c3512a6e7d2ec197c7a5b9bd372cbe86ea79f45c9", - "block_time": 1733654206 + "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", + "block_time": 1733662951 }, "tx_hash": null, "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 } }, "/v2/events/counts": { @@ -9458,16 +9458,16 @@ "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9477,9 +9477,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 924, @@ -9489,12 +9489,12 @@ "asset": "XCP", "block_index": 234, "calling_function": "utxo move", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 2000000000, "tx_index": 106, - "utxo": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", - "utxo_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "block_time": 1733654206, + "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9504,9 +9504,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 921, @@ -9516,24 +9516,24 @@ "asset": "MYASSETA", "block_index": 234, "calling_function": "utxo move", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 2000000000, "tx_index": 106, - "utxo": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", - "utxo_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "block_time": 1733654206, + "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 }, { "event_index": 877, @@ -9543,39 +9543,39 @@ "asset": "PREMINT", "block_index": 227, "calling_function": "escrowed premint", - "event": "2f8cbeec1de34a0acdb2a73b97f43a4bc9d6727e21551d053a24555f73ff3e26", + "event": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", "quantity": 50, "tx_index": 101, "utxo": null, "utxo_address": null, - "block_time": 1733654180, + "block_time": 1733662914, "asset_info": { "asset_longname": null, "description": "My super description", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": false }, "quantity_normalized": "0.00000050" }, - "tx_hash": "2f8cbeec1de34a0acdb2a73b97f43a4bc9d6727e21551d053a24555f73ff3e26", + "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", "block_index": 227, - "block_time": 1733654180 + "block_time": 1733662914 }, { "event_index": 860, "event": "CREDIT", "params": { - "address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890_c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", + "event": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733654171, + "block_time": 1733662907, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9585,9 +9585,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "e682069a24b5506e29a2ad18899e8287b315113beceabf98c5aa54e9480a5ee5", + "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", "block_index": 225, - "block_time": 1733654171 + "block_time": 1733662907 } ], "next_cursor": 834, @@ -9604,26 +9604,26 @@ { "tx_index": 106, "dispense_index": 0, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "destination": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "btc_amount": 1000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "last_status_tx_hash": null, - "origin": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9638,7 +9638,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9652,18 +9652,18 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "18ee2a1c7c6fd8a1c72f098e851417c2de191bebf8416686208f7913270ade87", + "tx_hash": "3d816bb9da3e8382155c32330e0949633245a5b06a4e040498c8290561e28139", "block_index": 194, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "a853448add5cf3b7d499390daefeb82a1537c36d5a6cf65ebf98a47f9d495112", + "dispenser_tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "btc_amount": 4000, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9671,7 +9671,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -9686,11 +9686,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733654007, + "block_time": 1733662737, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -9700,26 +9700,26 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "f4c1495e8f29a70de8153f7f46d4dd351129bc7818158826dc6de3104b72fe58", + "tx_hash": "72aeb92e989c915f9b002d26cd474ce972dcb2c06d76abfabf4feee4d3ba3e25", "block_index": 138, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "destination": "bcrt1qmhgnkthw2e97ak84cf0yl0v7wwu9qfxlus0e8m", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "destination": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "btc_amount": 10000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "last_status_tx_hash": null, - "origin": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9734,7 +9734,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733653766, + "block_time": 1733662506, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9748,18 +9748,18 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "b963ee72475b420ca10b47d7aae08af1d35240e662d35c8dbc1ef4425de1042a", + "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "85039521bb843d04ff64d50995c5b214fbfd25d985e7a7527d0f62268e0ee72c", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9767,7 +9767,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9782,7 +9782,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733653745, + "block_time": 1733662484, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9796,18 +9796,18 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "b6159254ea0341f3ffeabf661e1acdcfec60c8cbc1098c4da6a443a6fd601913", + "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", "block_index": 131, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "85039521bb843d04ff64d50995c5b214fbfd25d985e7a7527d0f62268e0ee72c", + "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9815,7 +9815,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9830,7 +9830,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733653741, + "block_time": 1733662481, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9849,17 +9849,17 @@ "result": [ { "tx_index": 106, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", - "destination": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9872,21 +9872,21 @@ }, { "tx_index": 106, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "source": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", - "destination": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -9895,17 +9895,17 @@ }, { "tx_index": 81, - "tx_hash": "f6c181806e13f071f09570069183d9759d4a9f8aab717fa3fa10c12e7878ea75", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", - "destination": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "memo1", "fee_paid": 0, - "block_time": 1733654070, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9918,21 +9918,21 @@ }, { "tx_index": 81, - "tx_hash": "f6c181806e13f071f09570069183d9759d4a9f8aab717fa3fa10c12e7878ea75", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", - "destination": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 1, "memo": "memo3", "fee_paid": 0, - "block_time": 1733654070, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -9941,21 +9941,21 @@ }, { "tx_index": 81, - "tx_hash": "f6c181806e13f071f09570069183d9759d4a9f8aab717fa3fa10c12e7878ea75", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", - "destination": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 0, "memo": "the memo", "fee_paid": 0, - "block_time": 1733654070, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -9970,14 +9970,14 @@ "result": [ { "tx_index": 105, - "tx_hash": "754a8571472b2a462478ef7ab57f7544660e6246b14e8ff610be7215c05acc9d", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "msg_index": 0, "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "issuer": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "transfer": false, "callable": false, "call_date": 0, @@ -9991,20 +9991,20 @@ "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", - "block_time": 1733654196, + "block_time": 1733662942, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 102, - "tx_hash": "ef202ecf5421a00683e950adda2466c2cf3240a6d3b2b93e6f243ca5d4e786e3", + "tx_hash": "b78410a2a80a2abbde1b69ab81f14bd7d3a9620b7d8594371942c474a0ea8776", "msg_index": 0, "block_index": 229, "asset": "PREMINT", "quantity": 0, "divisible": true, - "source": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "transfer": false, "callable": false, "call_date": 0, @@ -10018,20 +10018,20 @@ "description_locked": false, "fair_minting": false, "asset_events": "change_description", - "block_time": 1733654186, + "block_time": 1733662921, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 101, - "tx_hash": "2f8cbeec1de34a0acdb2a73b97f43a4bc9d6727e21551d053a24555f73ff3e26", + "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", "msg_index": 1, "block_index": 228, "asset": "PREMINT", "quantity": 0, "divisible": true, - "source": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "transfer": false, "callable": false, "call_date": 0, @@ -10045,20 +10045,20 @@ "description_locked": false, "fair_minting": false, "asset_events": "close_fairminter", - "block_time": 1733654183, + "block_time": 1733662918, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 101, - "tx_hash": "2f8cbeec1de34a0acdb2a73b97f43a4bc9d6727e21551d053a24555f73ff3e26", + "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", "msg_index": 0, "block_index": 227, "asset": "PREMINT", "quantity": 50, "divisible": true, - "source": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "transfer": false, "callable": false, "call_date": 0, @@ -10072,20 +10072,20 @@ "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", - "block_time": 1733654180, + "block_time": 1733662914, "quantity_normalized": "0.00000050", "fee_paid_normalized": "0.50000000" }, { "tx_index": 100, - "tx_hash": "e682069a24b5506e29a2ad18899e8287b315113beceabf98c5aa54e9480a5ee5", + "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", "msg_index": 1, "block_index": 226, "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "transfer": false, "callable": false, "call_date": 0, @@ -10099,7 +10099,7 @@ "description_locked": false, "fair_minting": false, "asset_events": "close_fairminter", - "block_time": 1733654175, + "block_time": 1733662911, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -10110,14 +10110,14 @@ "/v2/issuances/": { "result": { "tx_index": 105, - "tx_hash": "754a8571472b2a462478ef7ab57f7544660e6246b14e8ff610be7215c05acc9d", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "msg_index": 0, "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "issuer": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "transfer": false, "callable": false, "call_date": 0, @@ -10131,7 +10131,7 @@ "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", - "block_time": 1733654196, + "block_time": 1733662942, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10140,15 +10140,15 @@ "result": [ { "tx_index": 65, - "tx_hash": "d8579587191a163e823cc31cdb1f7531c5149b3c5df8d17a4816834b078a66b7", + "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", "block_index": 190, - "source": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", - "destination": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, - "block_time": 1733653992, + "block_time": 1733662722, "fee_paid_normalized": "0.00600000" } ], @@ -10159,15 +10159,15 @@ "result": [ { "tx_index": 65, - "tx_hash": "d8579587191a163e823cc31cdb1f7531c5149b3c5df8d17a4816834b078a66b7", + "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", "block_index": 190, - "source": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", - "destination": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, - "block_time": 1733653992, + "block_time": 1733662722, "fee_paid_normalized": "0.00600000" } ], @@ -10178,30 +10178,30 @@ "result": [ { "tx_index": 25, - "tx_hash": "1902fead7efffbb2a73d2c75e4342001f0ca3710d4267b5d57dcb12a2f38b726", + "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", "block_index": 129, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, "text": "price-USD", "locked": false, "status": "valid", - "block_time": 1733653735, + "block_time": 1733662474, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "0e1668d4b65ff91d0def39c21b5d45206665df79338c6325d84ec7efafb64ecc", + "tx_hash": "3241987309692b6707b4651f9f2a8e60f491efb1911cae2686f47ae12966e8f1", "block_index": 128, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, "text": "Hello, world!", "locked": false, "status": "valid", - "block_time": 1733653731, + "block_time": 1733662470, "fee_fraction_int_normalized": "0.00000000" } ], @@ -10211,26 +10211,26 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "1902fead7efffbb2a73d2c75e4342001f0ca3710d4267b5d57dcb12a2f38b726", + "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", "block_index": 129, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, "text": "price-USD", "locked": false, "status": "valid", - "block_time": 1733653735, + "block_time": 1733662474, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "754a8571472b2a462478ef7ab57f7544660e6246b14e8ff610be7215c05acc9d", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "tx_index": 105, "block_index": 232, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "asset": "OPENFAIR", "asset_parent": null, "asset_longname": null, @@ -10254,7 +10254,7 @@ "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733654196, + "block_time": 1733662942, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10263,10 +10263,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "2f8cbeec1de34a0acdb2a73b97f43a4bc9d6727e21551d053a24555f73ff3e26", + "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", "tx_index": 101, "block_index": 228, - "source": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "asset": "PREMINT", "asset_parent": null, "asset_longname": null, @@ -10290,7 +10290,7 @@ "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733654183, + "block_time": 1733662918, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -10299,10 +10299,10 @@ "premint_quantity_normalized": "0.00000050" }, { - "tx_hash": "e682069a24b5506e29a2ad18899e8287b315113beceabf98c5aa54e9480a5ee5", + "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", "tx_index": 100, "block_index": 226, - "source": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "asset": "STARTNOW", "asset_parent": null, "asset_longname": null, @@ -10326,7 +10326,7 @@ "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733654175, + "block_time": 1733662911, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -10335,10 +10335,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "35576850811706ba6d11a8a4b1d9a00aac5630e8d192afe28194e25288c488b4", + "tx_hash": "21f686ef5af2440a808c1ccfdcf310053abc7d20da5eedcf6fb011ae89d8c422", "tx_index": 99, "block_index": 224, - "source": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "asset": null, "asset_parent": null, "asset_longname": null, @@ -10362,13 +10362,13 @@ "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733654168 + "block_time": 1733662893 }, { - "tx_hash": "c116c037e8404f257440dc659117ae54297a12e44713c7bf66e846984440c522", + "tx_hash": "55c081be300d1ac4ff7b175d9795db435293e7dc10a2b88ba972b6995ca61ac6", "tx_index": 98, "block_index": 223, - "source": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "asset": "EXPANSIVE", "asset_parent": null, "asset_longname": null, @@ -10392,7 +10392,7 @@ "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733654164, + "block_time": 1733662889, "price_normalized": "99900000000.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10407,21 +10407,21 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "2c09e21e3acddbcfb05c8e148555306f0cd61b27370cbaeba326dab2ae860635", + "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", "tx_index": 97, "block_index": 221, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "fairminter_tx_hash": "49b096b7c2fe668062286cc86a91741a79aa8e6ee219f8060ffe79f99614067a", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "fairminter_tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", - "block_time": 1733654158, + "block_time": 1733662883, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -10430,21 +10430,21 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "da452a0f7f70998c86cf392318f4e58e352d8c0e2aa478fd5e5e5b9989a6268f", + "tx_hash": "c078a7713eeb7de231ecc35c7a5d3af052929fd457546e76e80ce3c601ae9565", "tx_index": 95, "block_index": 219, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "fairminter_tx_hash": "94c5fb25310cf6f9bc3c3f06e9db9d1181c721fae9f3beaecfaa381cfd151928", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "fairminter_tx_hash": "d2edc737c747e5f2031640e260b79f9298e92c792db93cbed5c3674e5acd5e6e", "asset": "LOCKDESC", "earn_quantity": 800000000, "paid_quantity": 0, "commission": 200000000, "status": "valid", - "block_time": 1733654151, + "block_time": 1733662876, "asset_info": { "asset_longname": null, "description": "My super asset LOCKDESC", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -10453,21 +10453,21 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "259b49943292411a6f170ea181ad368a8c399859b47172976afd0f53074f69e1", + "tx_hash": "35d1f1891ee7d00d5e7f8dfaa155d686d598074dd15b652ec736869735701453", "tx_index": 91, "block_index": 215, - "source": "bcrt1qspkkcgh8yyzfa4mh69yu97m5mshzt8p8wapmx9", - "fairminter_tx_hash": "98d35bb7c33a0045de0227eb471730d7569ef91abce4d97b9a0696463b00c26f", + "source": "bcrt1qj6tvevnnae8pm3edzntcj226e4ldzjefd2zw0x", + "fairminter_tx_hash": "547d662c481b6cce1fd0eebfbf61582a4c72c8f1c0c61721ae06a1b2d9ca776e", "asset": "A95428959531084712", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1733654126, + "block_time": 1733662853, "asset_info": { "asset_longname": "PARENTA.SUBASSETC", "description": "", - "issuer": "bcrt1qspkkcgh8yyzfa4mh69yu97m5mshzt8p8wapmx9", + "issuer": "bcrt1qj6tvevnnae8pm3edzntcj226e4ldzjefd2zw0x", "divisible": true, "locked": false }, @@ -10476,21 +10476,21 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "57c0de70098f1e4d28ef4824531d432946f1ef93d96648f41ef038da3076e918", + "tx_hash": "f7afb409d53d760cc0e1b6287fb322b46c0cec5b0db19e0db1e4cb8e9acfa06c", "tx_index": 46, "block_index": 150, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", - "fairminter_tx_hash": "952fde8d8325c80cee778d27228a3b1062d18562de30ba1b3906cc2422d2e789", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "fairminter_tx_hash": "f49987520b37269d66e22c08d64105ad8b3ca4ddd9cf77289a9c701eb7cd17fd", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1733653830, + "block_time": 1733662559, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -10499,21 +10499,21 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "0970a4545d89311234570fda47a43b5390f8ccebd96a54e0ac5c61f48d827c36", + "tx_hash": "0f816a7124ca2d321d50cb5a756e505409860107a5cdf6818af0c49903109e92", "tx_index": 45, "block_index": 149, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", - "fairminter_tx_hash": "952fde8d8325c80cee778d27228a3b1062d18562de30ba1b3906cc2422d2e789", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "fairminter_tx_hash": "f49987520b37269d66e22c08d64105ad8b3ca4ddd9cf77289a9c701eb7cd17fd", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1733653827, + "block_time": 1733662555, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -10527,21 +10527,21 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "2c09e21e3acddbcfb05c8e148555306f0cd61b27370cbaeba326dab2ae860635", + "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", "tx_index": 97, "block_index": 221, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "fairminter_tx_hash": "49b096b7c2fe668062286cc86a91741a79aa8e6ee219f8060ffe79f99614067a", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "fairminter_tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", - "block_time": 1733654158, + "block_time": 1733662883, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -10553,22 +10553,22 @@ "/v2/bitcoin/addresses/utxos": { "result": [ { - "vout": 0, + "vout": 2, "height": 199, - "value": 10000, + "value": 4949920000, "confirmations": 36, - "amount": 0.0001, - "txid": "6c0ed9d9a7666e9345a6ccf236dbc21c6f71362370e367d6cec885f358640c2d", - "address": "bcrt1qmhgnkthw2e97ak84cf0yl0v7wwu9qfxlus0e8m" + "amount": 49.4992, + "txid": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", + "address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne" }, { - "vout": 2, + "vout": 0, "height": 199, - "value": 4949920000, + "value": 10000, "confirmations": 36, - "amount": 49.4992, - "txid": "6c0ed9d9a7666e9345a6ccf236dbc21c6f71362370e367d6cec885f358640c2d", - "address": "bcrt1qmhgnkthw2e97ak84cf0yl0v7wwu9qfxlus0e8m" + "amount": 0.0001, + "txid": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", + "address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne" }, { "vout": 0, @@ -10576,8 +10576,8 @@ "value": 15000, "confirmations": 2, "amount": 0.00015, - "txid": "7b092032201181dc2517467c92d7676340bdf9774b813fb8a1a94fb4b8f6b4e7", - "address": "bcrt1qmhgnkthw2e97ak84cf0yl0v7wwu9qfxlus0e8m" + "txid": "d48b379c567d8e56220067a7bc50b6d785a11121b304f71ad1854660c070c9bf", + "address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne" } ], "next_cursor": null, @@ -10586,28 +10586,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "31765d8edb38984cc0c390b1f6f26ccda5ab8aaa8214de7b0b0066097eea1200" + "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551" }, { - "tx_hash": "6dd6833f201b0ccd66e4eabf9331b3074af2b1eb6cd97ecc03960818ccf5da30" + "tx_hash": "c022cb0c0b98e04e436d5df0c7410993517ee3e9e62f947ed1fd42997fa40f8f" }, { - "tx_hash": "45df051b690bfcfc5614d8320cbd196e142f96b898481237f6ee6cd1711b8062" + "tx_hash": "61f41ef6ab83e2901e1c39f89c0c5850308b98b4ed814cee93127808b7bd3c91" }, { - "tx_hash": "06860c1cb37050d9ca2a66f29b340ca5ae2ea17b957b627b8177c5af430573a4" + "tx_hash": "ce4ebdc15f8677b23ee6f97b3f33ff103d754d54f993ab6f528797866d22419b" }, { - "tx_hash": "372b2f31a70ab0e9e448e1ef77efb148a540c5fae64f51eebebb90d27aa92fb6" + "tx_hash": "95db2791e37d288a1a4fb3c7414e3aca564b4024baaaf2c7bc77689349c31ca7" }, { - "tx_hash": "d8579587191a163e823cc31cdb1f7531c5149b3c5df8d17a4816834b078a66b7" + "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8" }, { - "tx_hash": "6739387dc34a5953dff104fa5882d1b544832202a815526dd57819a7a7c464fa" + "tx_hash": "756966acacb7de325ad5f8f9b4ecc373854b6e7b0e706c205666bd59c3ed59c3" }, { - "tx_hash": "c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc" + "tx_hash": "f1122472a2791b85e5881888994ffd1fbb6d2fbdf6ed9bc814022197b8d461e0" } ], "next_cursor": null, @@ -10615,19 +10615,19 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 4, - "tx_hash": "f819e697768a2decd52a804e1324d14924ad8a2c41e847a6ed04473a4833913a" + "block_index": 10, + "tx_hash": "e469fe31857a7f2fec51624324263fba1a5acd7a1ba7fcc455e2239904119973" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ { "vout": 0, - "height": 199, - "value": 10000, - "confirmations": 36, - "amount": 0.0001, - "txid": "6c0ed9d9a7666e9345a6ccf236dbc21c6f71362370e367d6cec885f358640c2d" + "height": 233, + "value": 15000, + "confirmations": 2, + "amount": 0.00015, + "txid": "d48b379c567d8e56220067a7bc50b6d785a11121b304f71ad1854660c070c9bf" }, { "vout": 2, @@ -10635,25 +10635,25 @@ "value": 4949920000, "confirmations": 36, "amount": 49.4992, - "txid": "6c0ed9d9a7666e9345a6ccf236dbc21c6f71362370e367d6cec885f358640c2d" + "txid": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310" }, { "vout": 0, - "height": 233, - "value": 15000, - "confirmations": 2, - "amount": 0.00015, - "txid": "7b092032201181dc2517467c92d7676340bdf9774b813fb8a1a94fb4b8f6b4e7" + "height": 199, + "value": 10000, + "confirmations": 36, + "amount": 0.0001, + "txid": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "024347dc3befd17c460cbe14d7d9abd3c758397c7e9a3370cd681dc1036c802b5a" + "result": "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" }, "/v2/bitcoin/transactions/": { - "result": "020000000001012a28e0c2eb970794d7a208de42c2c42efb2c64c2e77980f4fc35b11c7b7377470100000000ffffffff03e803000000000000160014f942938d23dce27801698c1741ef3490cabe5cbc00000000000000000c6a0a42d6702ba0d57218fee98714092701000000160014e7ecb7bc543becd809a56f28774475f2ff4af7db02473044022016e0dfc2169864d512056b966fb67fe4a837c42550b58939cb5adb639ad61d2702203d4c018e53ea1dd9451c47012abb052b605a286f1b77485df96427822b1899de012102926e782b84454c5ee6701767e7723491732b5d24d3e58b56152961797cc0e2ad00000000" + "result": "020000000001011ceb53c6a3dce3d18382ad5e3780d0ea8d60fb0a2f98eb1251498608aa6858730100000000ffffffff03e803000000000000160014ca742dc81cac024b4cbde6236e1c599304258b4c00000000000000000c6a0ae188dda1bd4cd0f449a487140927010000001600140fa13933cab9aaea4cec2b6194cc224402aa6efe024730440220352aeb29117b931d5eebdf47f842688e1a116a0b6097cd220d203728209a24110220206b2946f514d6783bb2159466e097ef9cc807d5224470bc0c2003d49c322ea7012102aaee4b16d3883ba2f7cd0fc3e4ce2217159a774fd9f34ca4756a232e0799a47400000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58676 @@ -10726,27 +10726,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "tx_index": 107 }, - "timestamp": 1733654210.885726 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "memo": null, "quantity": 10000, - "source": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "status": "valid", - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "tx_index": 107, "asset_info": { "asset_longname": null, @@ -10757,22 +10757,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733654210.885726 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "CREDIT", "params": { - "address": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "asset": "XCP", "block_index": 234, "calling_function": "send", - "event": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10782,22 +10782,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733654210.885726 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "address": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "asset": "XCP", "block_index": 234, - "event": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10807,27 +10807,27 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733654210.885726 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1733654210.885726, + "block_time": 1733662956.0412934, "btc_amount": 0, - "data": "0200000000000000010000000000002710806fee8ba56e259edd8957d1297baf377e3d9109a2", + "data": "020000000000000001000000000000271080f73044edb424e8df3d85a40888172e373ed483c0", "destination": "", "fee": 10000, - "source": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "transaction_type": "enhanced_send", - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "tx_index": 107, - "utxos_info": " c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e:1 2 0", + "utxos_info": " f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf:1 2 0", "btc_amount_normalized": "0.00000000" }, - "timestamp": 1733654210.885726 + "timestamp": 1733662956.0412934 } ], "next_cursor": null, @@ -10836,19 +10836,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "CREDIT", "params": { - "address": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "asset": "XCP", "block_index": 234, "calling_function": "send", - "event": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10858,7 +10858,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733654210.885726 + "timestamp": 1733662956.0412934 } ], "next_cursor": null, @@ -10867,27 +10867,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "tx_index": 107 }, - "timestamp": 1733654210.885726 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "memo": null, "quantity": 10000, - "source": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "status": "valid", - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "tx_index": 107, "asset_info": { "asset_longname": null, @@ -10898,22 +10898,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733654210.885726 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "CREDIT", "params": { - "address": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "asset": "XCP", "block_index": 234, "calling_function": "send", - "event": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10923,22 +10923,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733654210.885726 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "address": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "asset": "XCP", "block_index": 234, - "event": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10948,27 +10948,27 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733654210.885726 + "timestamp": 1733662956.0412934 }, { - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1733654210.885726, + "block_time": 1733662956.0412934, "btc_amount": 0, - "data": "0200000000000000010000000000002710806fee8ba56e259edd8957d1297baf377e3d9109a2", + "data": "020000000000000001000000000000271080f73044edb424e8df3d85a40888172e373ed483c0", "destination": "", "fee": 10000, - "source": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "transaction_type": "enhanced_send", - "tx_hash": "c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e", + "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", "tx_index": 107, - "utxos_info": " c2850cb959994763a338f94f18b61dc12cdfddcdbf5cef5e50b0585bf20b456e:1 2 0", + "utxos_info": " f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf:1 2 0", "btc_amount_normalized": "0.00000000" }, - "timestamp": 1733654210.885726 + "timestamp": 1733662956.0412934 } ], "next_cursor": null, @@ -20709,15 +20709,15 @@ "event_index": 917, "event": "NEW_BLOCK", "params": { - "block_hash": "360fe4a638464554375560682e9ccf51ca9e7721e28e9c3e18080c3c09333be4", + "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", "block_index": 234, - "block_time": 1733654206, + "block_time": 1733662951, "difficulty": 545259519, - "previous_block_hash": "434ed8d5110eba1cbd358db299e922001fa04e0ad0ed0ad27fe3b9ecf9e10d35" + "previous_block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482" }, "tx_hash": null, "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 } ], "next_cursor": 915, @@ -20729,23 +20729,23 @@ "event_index": 918, "event": "NEW_TRANSACTION", "params": { - "block_hash": "360fe4a638464554375560682e9ccf51ca9e7721e28e9c3e18080c3c09333be4", + "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", "block_index": 234, - "block_time": 1733654206, + "block_time": 1733662951, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "fee": 0, - "source": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "transaction_type": "dispense", - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "utxos_info": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1 435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0 3 1", + "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 } ], "next_cursor": 908, @@ -20759,16 +20759,16 @@ "params": { "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "out_index": 0, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733654206, + "block_time": 1733662951, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 } ], "next_cursor": 592, @@ -20781,15 +20781,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 234, - "ledger_hash": "5394feb5908671378295b2994e54ba0a6ee5dc72307e644a630ceffaed39e3be", - "messages_hash": "97ae54dc6c735be5c33642d2c006b00c9ea20a21ae4f9a5825e9c1432084d489", + "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", + "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", "transaction_count": 1, - "txlist_hash": "ae1fcb28a8f13bdfc6c90d0c3512a6e7d2ec197c7a5b9bd372cbe86ea79f45c9", - "block_time": 1733654206 + "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", + "block_time": 1733662951 }, "tx_hash": null, "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 } ], "next_cursor": 916, @@ -20802,12 +20802,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106 }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 } ], "next_cursor": 913, @@ -20823,12 +20823,12 @@ "address": null, "asset": "XCP", "block_index": 234, - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 2000000000, "tx_index": 106, - "utxo": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", - "utxo_address": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", - "block_time": 1733654206, + "utxo": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "utxo_address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -20838,9 +20838,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 } ], "next_cursor": 920, @@ -20852,16 +20852,16 @@ "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -20871,9 +20871,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 } ], "next_cursor": 924, @@ -20887,26 +20887,26 @@ "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "memo": null, "quantity": 1000, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "d6668b2c175b32b2f7821bce5471a8d22d764ec65e54f26c8c0c4b25d85d3c9e", + "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", "tx_index": 77, - "block_time": 1733654034, + "block_time": 1733662764, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "d6668b2c175b32b2f7821bce5471a8d22d764ec65e54f26c8c0c4b25d85d3c9e", + "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", "block_index": 201, - "block_time": 1733654034 + "block_time": 1733662764 } ], "next_cursor": 528, @@ -20920,15 +20920,15 @@ "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "f6c181806e13f071f09570069183d9759d4a9f8aab717fa3fa10c12e7878ea75", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "tx_index": 81, - "block_time": 1733654070, + "block_time": 1733662789, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -20938,9 +20938,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "f6c181806e13f071f09570069183d9759d4a9f8aab717fa3fa10c12e7878ea75", + "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", "block_index": 205, - "block_time": 1733654070 + "block_time": 1733662789 } ], "next_cursor": 712, @@ -20963,20 +20963,20 @@ "event": "SWEEP", "params": { "block_index": 190, - "destination": "bcrt1qg3x6ceh7l2vr2n0dy3r6a33j0xht7nnt60lvk3", + "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "status": "valid", - "tx_hash": "d8579587191a163e823cc31cdb1f7531c5149b3c5df8d17a4816834b078a66b7", + "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", "tx_index": 65, - "block_time": 1733653992, + "block_time": 1733662722, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "d8579587191a163e823cc31cdb1f7531c5149b3c5df8d17a4816834b078a66b7", + "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", "block_index": 190, - "block_time": 1733653992 + "block_time": 1733662722 } ], "next_cursor": null, @@ -20993,15 +20993,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "488ad8ca3e241a9007c30ae55791c9e9f050526725ae0e84de257c9829ac2b3d", + "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", "tx_index": 42, - "block_time": 1733653806, + "block_time": 1733662534, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -21015,9 +21015,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "488ad8ca3e241a9007c30ae55791c9e9f050526725ae0e84de257c9829ac2b3d", + "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", "block_index": 146, - "block_time": 1733653806 + "block_time": 1733662534 } ], "next_cursor": null, @@ -21038,11 +21038,11 @@ "asset_longname": null, "asset_name": "OPENFAIR", "block_index": 232, - "block_time": 1733654196 + "block_time": 1733662942 }, - "tx_hash": "754a8571472b2a462478ef7ab57f7544660e6246b14e8ff610be7215c05acc9d", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "block_index": 232, - "block_time": 1733654196 + "block_time": 1733662942 } ], "next_cursor": 875, @@ -21065,22 +21065,22 @@ "divisible": true, "fair_minting": true, "fee_paid": 50000000.0, - "issuer": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": "valid", "transfer": false, - "tx_hash": "754a8571472b2a462478ef7ab57f7544660e6246b14e8ff610be7215c05acc9d", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "tx_index": 105, - "block_time": 1733654196, + "block_time": 1733662942, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "754a8571472b2a462478ef7ab57f7544660e6246b14e8ff610be7215c05acc9d", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "block_index": 232, - "block_time": 1733654196 + "block_time": 1733662942 } ], "next_cursor": 890, @@ -21095,16 +21095,16 @@ "asset": "PREMINT", "block_index": 228, "quantity": 50, - "source": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "status": "valid", "tag": "soft cap not reached", - "tx_hash": "2f8cbeec1de34a0acdb2a73b97f43a4bc9d6727e21551d053a24555f73ff3e26", + "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", "tx_index": 101, - "block_time": 1733654183, + "block_time": 1733662918, "asset_info": { "asset_longname": null, "description": "My super description", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": false }, @@ -21112,7 +21112,7 @@ }, "tx_hash": null, "block_index": 228, - "block_time": 1733654183 + "block_time": 1733662918 } ], "next_cursor": 832, @@ -21137,11 +21137,11 @@ "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": "open", - "tx_hash": "d5d82a365e3711ded3343ae4d58693a4d355c2a52c1fc21217582524cfc4ac50", + "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "tx_index": 104, - "block_time": 1733654193, + "block_time": 1733662928, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -21152,7 +21152,7 @@ "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmhgnkthw2e97ak84cf0yl0v7wwu9qfxlus0e8m", + "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "divisible": true, "locked": false }, @@ -21165,9 +21165,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "d5d82a365e3711ded3343ae4d58693a4d355c2a52c1fc21217582524cfc4ac50", + "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "block_index": 231, - "block_time": 1733654193 + "block_time": 1733662928 } ], "next_cursor": 896, @@ -21185,24 +21185,24 @@ "fee_paid": 0, "forward_asset": "UTXOASSET", "forward_quantity": 1000, - "id": "3762a961768c36422a62995a35bb8d8f5c3dba07a2d06c584fc40d10ccee8a9d_d5d82a365e3711ded3343ae4d58693a4d355c2a52c1fc21217582524cfc4ac50", + "id": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076_97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "match_expire_index": 251, "status": "pending", - "tx0_address": "bcrt1qmhgnkthw2e97ak84cf0yl0v7wwu9qfxlus0e8m", + "tx0_address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "tx0_block_index": 230, "tx0_expiration": 21, - "tx0_hash": "3762a961768c36422a62995a35bb8d8f5c3dba07a2d06c584fc40d10ccee8a9d", + "tx0_hash": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076", "tx0_index": 103, - "tx1_address": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "tx1_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "tx1_block_index": 231, "tx1_expiration": 21, - "tx1_hash": "d5d82a365e3711ded3343ae4d58693a4d355c2a52c1fc21217582524cfc4ac50", + "tx1_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "tx1_index": 104, - "block_time": 1733654193, + "block_time": 1733662928, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmhgnkthw2e97ak84cf0yl0v7wwu9qfxlus0e8m", + "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "divisible": true, "locked": false }, @@ -21217,9 +21217,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "d5d82a365e3711ded3343ae4d58693a4d355c2a52c1fc21217582524cfc4ac50", + "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "block_index": 231, - "block_time": 1733654193 + "block_time": 1733662928 } ], "next_cursor": 691, @@ -21236,13 +21236,13 @@ "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "d5d82a365e3711ded3343ae4d58693a4d355c2a52c1fc21217582524cfc4ac50", + "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "d5d82a365e3711ded3343ae4d58693a4d355c2a52c1fc21217582524cfc4ac50", + "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", "block_index": 231, - "block_time": 1733654193 + "block_time": 1733662928 } ], "next_cursor": 902, @@ -21255,11 +21255,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "7b05968a87bb2320e00dd665e078afa54d760736e70225c51b9ceb6294ec64ce" + "tx_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15" }, - "tx_hash": "7b7c75a3ff18be8fb5580ab1114527633ec360d50a518b4a05cb5f90fc12e6ba", + "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", "block_index": 182, - "block_time": 1733653941 + "block_time": 1733662675 } ], "next_cursor": null, @@ -21271,13 +21271,13 @@ "event_index": 859, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890_c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", - "order_match_id": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890_c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", + "id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "order_match_id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", "status": "expired" }, - "tx_hash": "e682069a24b5506e29a2ad18899e8287b315113beceabf98c5aa54e9480a5ee5", + "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", "block_index": 225, - "block_time": 1733654171 + "block_time": 1733662907 } ], "next_cursor": 685, @@ -21291,18 +21291,18 @@ "params": { "block_index": 182, "btc_amount": 2000, - "destination": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "order_match_id": "37555338d5b7c63c7078511248d5328f6958b74e6e88834785041799d9c997db_7b05968a87bb2320e00dd665e078afa54d760736e70225c51b9ceb6294ec64ce", - "source": "bcrt1qa28rmcz4kl2gt5j04q4xwd8ee770uhqy06y9fk", + "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", "status": "valid", - "tx_hash": "7b7c75a3ff18be8fb5580ab1114527633ec360d50a518b4a05cb5f90fc12e6ba", + "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", "tx_index": 57, - "block_time": 1733653941, + "block_time": 1733662675, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "7b7c75a3ff18be8fb5580ab1114527633ec360d50a518b4a05cb5f90fc12e6ba", + "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", "block_index": 182, - "block_time": 1733653941 + "block_time": 1733662675 } ], "next_cursor": null, @@ -21315,16 +21315,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 188, - "offer_hash": "eb952b15d4f8a56bee18f52cff3a452d5bae33bc750ec75365fdb59b176c1918", - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "offer_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": "valid", - "tx_hash": "f573e95a41691b6842b786cbc6586d33101dafaa60c189b4ca7b718a32261db1", + "tx_hash": "de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6", "tx_index": 63, - "block_time": 1733653974 + "block_time": 1733662715 }, - "tx_hash": "f573e95a41691b6842b786cbc6586d33101dafaa60c189b4ca7b718a32261db1", + "tx_hash": "de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6", "block_index": 188, - "block_time": 1733653974 + "block_time": 1733662715 } ], "next_cursor": null, @@ -21337,13 +21337,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890", - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "block_time": 1733654103 + "order_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_time": 1733662819 }, - "tx_hash": "5fb5c86e70b8b84623b8d0615eeee87760f5e064c45c474b68bdf88f44610a30", + "tx_hash": "816df0c34171151d8c1947707f1c924dc6988f829038e9f0709bb2b7ab206acc", "block_index": 211, - "block_time": 1733654103 + "block_time": 1733662819 } ], "next_cursor": 705, @@ -21356,14 +21356,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "e980d3335d0012ccc000f26614a7577a5b20d2d75ad65bb20d84154e26b9a890_c7fdc92d7ecd950064c2a30023b922a28fdd5eaa4ef8b87e5fa070ef0faa2cfc", - "tx0_address": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "tx1_address": "bcrt1qdlhghftwyk0dmz2h6y5hhteh0c7ezzdzlt48dr", - "block_time": 1733654171 + "order_match_id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "block_time": 1733662907 }, - "tx_hash": "e682069a24b5506e29a2ad18899e8287b315113beceabf98c5aa54e9480a5ee5", + "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", "block_index": 225, - "block_time": 1733654171 + "block_time": 1733662907 } ], "next_cursor": 688, @@ -21382,17 +21382,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "satoshirate": 1, - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "status": 0, - "tx_hash": "a853448add5cf3b7d499390daefeb82a1537c36d5a6cf65ebf98a47f9d495112", + "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "tx_index": 68, - "block_time": 1733654004, + "block_time": 1733662733, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", + "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", "divisible": true, "locked": false }, @@ -21401,9 +21401,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "a853448add5cf3b7d499390daefeb82a1537c36d5a6cf65ebf98a47f9d495112", + "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", "block_index": 193, - "block_time": 1733654004 + "block_time": 1733662733 } ], "next_cursor": 264, @@ -21418,9 +21418,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": 0, - "tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", + "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -21430,9 +21430,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 } ], "next_cursor": 594, @@ -21446,13 +21446,13 @@ "params": { "asset": "XCP", "block_index": 135, - "destination": "mnGojhWPPrex3Zx2FCC9fMnGMb1oqQ3QYh", + "destination": "mwGrVHb495rLnPnW2W9yvMfsayfdGhBD7M", "dispense_quantity": 10, - "dispenser_tx_hash": "44e8e7bd6b69c345d0f80a3239d39fa08d587946cb1e1dd2bd528f4e5ccd11a7", - "source": "bcrt1q7w4grme0n2xtmq5pc22l78exnted0kkufpn3zt", - "tx_hash": "21f25c44388b40860e2395c5ee0f9f744064fa1aab70e8dde433c2d0eeb7dda2", + "dispenser_tx_hash": "ea1a192405fa4439cd194c2dd622e088addef725cb25debbd12b34766f2140a7", + "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx_hash": "afb9a582e852714df40622021ba105bd464db5e07f74867a31b84ad7c34ce16f", "tx_index": 31, - "block_time": 1733653755, + "block_time": 1733662496, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -21462,9 +21462,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "21f25c44388b40860e2395c5ee0f9f744064fa1aab70e8dde433c2d0eeb7dda2", + "tx_hash": "afb9a582e852714df40622021ba105bd464db5e07f74867a31b84ad7c34ce16f", "block_index": 135, - "block_time": 1733653755 + "block_time": 1733662496 } ], "next_cursor": null, @@ -21479,14 +21479,14 @@ "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qulkt00z580kdszd9du58w3r47tl54a7m8cxl4y", + "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "e5f687d670fa6dd8f4b77bc32ee93a528b8c89d00db4a31fad79c1e78f75e0ff", - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -21497,9 +21497,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 } ], "next_cursor": 595, @@ -21514,19 +21514,19 @@ "block_index": 129, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "1902fead7efffbb2a73d2c75e4342001f0ca3710d4267b5d57dcb12a2f38b726", + "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", "tx_index": 25, "value": 66600.0, - "block_time": 1733653735, + "block_time": 1733662474, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "1902fead7efffbb2a73d2c75e4342001f0ca3710d4267b5d57dcb12a2f38b726", + "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", "block_index": 129, - "block_time": 1733653735 + "block_time": 1733662474 } ], "next_cursor": 205, @@ -21557,12 +21557,12 @@ "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "start_block": 0, "status": "open", - "tx_hash": "754a8571472b2a462478ef7ab57f7544660e6246b14e8ff610be7215c05acc9d", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "tx_index": 105, - "block_time": 1733654196, + "block_time": 1733662942, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -21570,9 +21570,9 @@ "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "754a8571472b2a462478ef7ab57f7544660e6246b14e8ff610be7215c05acc9d", + "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", "block_index": 232, - "block_time": 1733654196 + "block_time": 1733662942 } ], "next_cursor": 874, @@ -21585,11 +21585,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "2f8cbeec1de34a0acdb2a73b97f43a4bc9d6727e21551d053a24555f73ff3e26" + "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb" }, "tx_hash": null, "block_index": 228, - "block_time": 1733654183 + "block_time": 1733662918 } ], "next_cursor": 869, @@ -21605,17 +21605,17 @@ "block_index": 221, "commission": 20000000, "earn_quantity": 80000000, - "fairminter_tx_hash": "49b096b7c2fe668062286cc86a91741a79aa8e6ee219f8060ffe79f99614067a", + "fairminter_tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", "paid_quantity": 100000000, - "source": "bcrt1ql9pf8rfrmn38sqtf3st5rme5jr9tuh9ucwa5qm", + "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", "status": "valid", - "tx_hash": "2c09e21e3acddbcfb05c8e148555306f0cd61b27370cbaeba326dab2ae860635", + "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", "tx_index": 97, - "block_time": 1733654158, + "block_time": 1733662883, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qvkgyv4pmumha8889le3g9t5uya7qjhx5dug3fz", + "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", "divisible": true, "locked": true }, @@ -21623,9 +21623,9 @@ "commission_normalized": "0.20000000", "paid_quantity_normalized": "1.00000000" }, - "tx_hash": "2c09e21e3acddbcfb05c8e148555306f0cd61b27370cbaeba326dab2ae860635", + "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", "block_index": 221, - "block_time": 1733654158 + "block_time": 1733662883 } ], "next_cursor": 816, @@ -21639,28 +21639,28 @@ "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "6c0ed9d9a7666e9345a6ccf236dbc21c6f71362370e367d6cec885f358640c2d:0", + "destination": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qmhgnkthw2e97ak84cf0yl0v7wwu9qfxlus0e8m", + "source": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "status": "valid", - "tx_hash": "6c0ed9d9a7666e9345a6ccf236dbc21c6f71362370e367d6cec885f358640c2d", + "tx_hash": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", "tx_index": 75, - "block_time": 1733654026, + "block_time": 1733662757, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmhgnkthw2e97ak84cf0yl0v7wwu9qfxlus0e8m", + "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "6c0ed9d9a7666e9345a6ccf236dbc21c6f71362370e367d6cec885f358640c2d", + "tx_hash": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", "block_index": 199, - "block_time": 1733654026 + "block_time": 1733662757 } ], "next_cursor": 611, @@ -21674,28 +21674,28 @@ "params": { "asset": "UTXOASSET", "block_index": 198, - "destination": "bcrt1qmhgnkthw2e97ak84cf0yl0v7wwu9qfxlus0e8m", + "destination": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "9581c2db516994627b9a688eee9da7126ae0a22ff586e0a4476e8a70744455d5:0", + "source": "3ca9e2bddd0a9a542e219bd11e8a9d82cb47504bdb3f2bada362cc2160adfcff:0", "status": "valid", - "tx_hash": "7eda461c9128423a552df9c463a405fe7a970d69db2c2333135f0794196b5cac", + "tx_hash": "cfd9a40c7741775c65321b2673f86310bb1f15fc0bfb711b58cfe0ed5acf4d71", "tx_index": 74, - "block_time": 1733654023, + "block_time": 1733662753, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qmhgnkthw2e97ak84cf0yl0v7wwu9qfxlus0e8m", + "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "7eda461c9128423a552df9c463a405fe7a970d69db2c2333135f0794196b5cac", + "tx_hash": "cfd9a40c7741775c65321b2673f86310bb1f15fc0bfb711b58cfe0ed5acf4d71", "block_index": 198, - "block_time": 1733654023 + "block_time": 1733662753 } ], "next_cursor": 304, @@ -21709,14 +21709,14 @@ "params": { "asset": "XCP", "block_index": 234, - "destination": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c:0", + "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", "msg_index": 1, "quantity": 2000000000, - "source": "4777737b1cb135fcf48079e7c2642cfb2ec4c242de08a2d7940797ebc2e0282a:1", + "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", "status": "valid", - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "tx_index": 106, - "block_time": 1733654206, + "block_time": 1733662951, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -21726,9 +21726,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "435fe74f54191577ea2d4c0d7d6e81bb888f7b453f34c2b6d2d1f153fb18824c", + "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", "block_index": 234, - "block_time": 1733654206 + "block_time": 1733662951 } ], "next_cursor": 922, @@ -21743,17 +21743,17 @@ "block_index": 112, "burned": 50000000, "earned": 74999998167, - "source": "bcrt1qspkkcgh8yyzfa4mh69yu97m5mshzt8p8wapmx9", + "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", "status": "valid", - "tx_hash": "13d8e42d5c11d7dd3aae29e284f52fe33f10646b748b36b09e2f356ac8601ec2", + "tx_hash": "95db2791e37d288a1a4fb3c7414e3aca564b4024baaaf2c7bc77689349c31ca7", "tx_index": 9, - "block_time": 1733653663, + "block_time": 1733662402, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, - "tx_hash": "13d8e42d5c11d7dd3aae29e284f52fe33f10646b748b36b09e2f356ac8601ec2", + "tx_hash": "95db2791e37d288a1a4fb3c7414e3aca564b4024baaaf2c7bc77689349c31ca7", "block_index": 112, - "block_time": 1733653663 + "block_time": 1733662402 } ], "next_cursor": 58, diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index f852718427..e9c53b07da 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -438,7 +438,7 @@ def run_scenarios(serve=False, wsgi_server="gunicorn"): print(regtest_node_thread.node.server_out.getvalue()) raise e finally: - print(regtest_node_thread.node.server_out.getvalue()) + #print(regtest_node_thread.node.server_out.getvalue()) regtest_node_thread.stop() From 6b7dc99aeb121f5fbb124dd5d97bb9c75e56b8e2 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 8 Dec 2024 12:51:55 +0000 Subject: [PATCH 4/5] check parent process also with pid --- .../counterpartycore/lib/api/api_server.py | 22 ++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/counterparty-core/counterpartycore/lib/api/api_server.py b/counterparty-core/counterpartycore/lib/api/api_server.py index 3af43b9591..85617eadc8 100644 --- a/counterparty-core/counterpartycore/lib/api/api_server.py +++ b/counterparty-core/counterpartycore/lib/api/api_server.py @@ -478,7 +478,7 @@ def check_database_version(): database.update_version(state_db) -def run_api_server(args, server_ready_value, stop_event): +def run_api_server(args, server_ready_value, stop_event, parent_pid): logger.info("Starting API Server process...") def handle_interrupt_signal(signum, frame): @@ -513,7 +513,7 @@ def handle_interrupt_signal(signum, frame): wsgi_server = wsgi.WSGIApplication(app, args=args) logger.info("Starting Parent Process Checker thread...") - parent_checker = ParentProcessChecker(wsgi_server, stop_event) + parent_checker = ParentProcessChecker(wsgi_server, stop_event, parent_pid) parent_checker.start() app.app_context().push() @@ -542,19 +542,30 @@ def handle_interrupt_signal(signum, frame): logger.info("API Server stopped.") +def is_process_alive(pid): + """Check For the existence of a unix pid.""" + try: + os.kill(pid, 0) + except OSError: + return False + else: + return True + + # This thread is used for the following two reasons: # 1. `docker-compose stop` does not send a SIGTERM to the child processes (in this case the API v2 process) # 2. `process.terminate()` does not trigger a `KeyboardInterrupt` or execute the `finally` block. class ParentProcessChecker(threading.Thread): - def __init__(self, wsgi_server, stop_event): + def __init__(self, wsgi_server, stop_event, parent_pid): super().__init__(name="ParentProcessChecker") self.daemon = True self.wsgi_server = wsgi_server self.stop_event = stop_event + self.parent_pid = parent_pid def run(self): try: - while not self.stop_event.is_set(): + while not self.stop_event.is_set() and is_process_alive(self.parent_pid): time.sleep(1) logger.debug("Parent process stopped. Exiting...") if self.wsgi_server is not None: @@ -573,7 +584,8 @@ def start(self, args): if self.process is not None: raise Exception("API Server is already running") self.process = Process( - target=run_api_server, args=(vars(args), self.server_ready_value, self.stop_event) + target=run_api_server, + args=(vars(args), self.server_ready_value, self.stop_event, os.getpid()), ) self.process.start() return self.process From cad0f1d8b172a9c221e265092a9474eb90a3c59a Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 8 Dec 2024 13:38:30 +0000 Subject: [PATCH 5/5] fix ruff --- .github/workflows/ruff-check.yml | 2 +- .github/workflows/ruff-format.yml | 2 +- apiary.apib | 4626 ++++++++--------- .../counterpartycore/lib/setup.py | 6 +- .../test/fixtures/scenarios.py | 4 +- .../test/p2sh_encoding_test.py | 37 +- .../test/regtest/apidoc/apicache.json | 3970 +++++++------- .../test/regtest/testscenarios.py | 2 +- .../counterpartywallet/wallet/btcwallet.py | 4 +- 9 files changed, 4331 insertions(+), 4322 deletions(-) diff --git a/.github/workflows/ruff-check.yml b/.github/workflows/ruff-check.yml index 3e2777efd0..47ecb05979 100644 --- a/.github/workflows/ruff-check.yml +++ b/.github/workflows/ruff-check.yml @@ -7,4 +7,4 @@ jobs: - uses: actions/checkout@v4 - uses: chartboost/ruff-action@v1 with: - version: 0.7.4 + version: 0.8.2 diff --git a/.github/workflows/ruff-format.yml b/.github/workflows/ruff-format.yml index 77d384dd60..ee3970942f 100644 --- a/.github/workflows/ruff-format.yml +++ b/.github/workflows/ruff-format.yml @@ -8,4 +8,4 @@ jobs: - uses: chartboost/ruff-action@v1 with: args: "format --check" - version: 0.7.4 + version: 0.8.2 diff --git a/apiary.apib b/apiary.apib index b4b4878e57..fd1e70586c 100644 --- a/apiary.apib +++ b/apiary.apib @@ -1,4 +1,4 @@ -[//]: # (Generated by genapidoc.py on 2024-12-08 13:02:46.546232. Do not edit manually.) +[//]: # (Generated by genapidoc.py on 2024-12-08 13:22:19.439495. Do not edit manually.) FORMAT: 1A HOST: https://api.counterparty.io:4000 @@ -188,15 +188,15 @@ Here is a list of events classified by theme and for each an example response: "event_index": 917, "event": "NEW_BLOCK", "params": { - "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", + "block_hash": "00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45", "block_index": 234, - "block_time": 1733662951, + "block_time": 1733664124, "difficulty": 545259519, - "previous_block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482" + "previous_block_hash": "603c0b67e999c35cec4f4087e3c7b289be955ffa9129efb92fcd29a661dcf7c6" }, "tx_hash": null, "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 915, @@ -213,23 +213,23 @@ Here is a list of events classified by theme and for each an example response: "event_index": 918, "event": "NEW_TRANSACTION", "params": { - "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", + "block_hash": "00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45", "block_index": 234, - "block_time": 1733662951, + "block_time": 1733664124, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "destination": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "fee": 0, - "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "source": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "transaction_type": "dispense", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", + "utxos_info": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1 ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0 3 1", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 908, @@ -248,16 +248,16 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "destination": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "out_index": 0, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 592, @@ -275,15 +275,15 @@ Here is a list of events classified by theme and for each an example response: "event": "BLOCK_PARSED", "params": { "block_index": 234, - "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", - "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", + "ledger_hash": "45ce2aec46047790b784c61e48d1a4a33fab17a4ae86db0601f02b5bc64a0fa1", + "messages_hash": "222bf6a0adcb1f8c1df56bb65831fdc05183e797fbca2ac43dbb06bdd89b9a88", "transaction_count": 1, - "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", - "block_time": 1733662951 + "txlist_hash": "f0253bdf0d14167513005643cdec3e8872519b0226a5194e52eae3149f35ddd5", + "block_time": 1733664124 }, "tx_hash": null, "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 916, @@ -301,12 +301,12 @@ Here is a list of events classified by theme and for each an example response: "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106 }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 913, @@ -329,12 +329,12 @@ Here is a list of events classified by theme and for each an example response: "address": null, "asset": "XCP", "block_index": 234, - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 2000000000, "tx_index": 106, - "utxo": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "utxo_address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", - "block_time": 1733662951, + "utxo": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "utxo_address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -344,9 +344,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 920, @@ -363,16 +363,16 @@ Here is a list of events classified by theme and for each an example response: "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -382,9 +382,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 924, @@ -403,26 +403,26 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "memo": null, "quantity": 1000, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", + "tx_hash": "dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66", "tx_index": 77, - "block_time": 1733662764, + "block_time": 1733663958, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", + "tx_hash": "dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66", "block_index": 201, - "block_time": 1733662764 + "block_time": 1733663958 } ], "next_cursor": 528, @@ -441,15 +441,15 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "tx_index": 81, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -459,9 +459,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_time": 1733662789 + "block_time": 1733663983 } ], "next_cursor": 712, @@ -499,20 +499,20 @@ Here is a list of events classified by theme and for each an example response: "event": "SWEEP", "params": { "block_index": 190, - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "status": "valid", - "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", + "tx_hash": "f6f1dd1640fa599d048daaa43dd7ad57104761cce91bb73182ac3ce688e2daf1", "tx_index": 65, - "block_time": 1733662722, + "block_time": 1733663898, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", + "tx_hash": "f6f1dd1640fa599d048daaa43dd7ad57104761cce91bb73182ac3ce688e2daf1", "block_index": 190, - "block_time": 1733662722 + "block_time": 1733663898 } ], "next_cursor": null, @@ -534,15 +534,15 @@ 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": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", + "tx_hash": "9676962b470a9998d30eeaec911a79f39a722075bb60a164d5e1ef5f59945120", "tx_index": 42, - "block_time": 1733662534, + "block_time": 1733663711, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -556,9 +556,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": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", + "tx_hash": "9676962b470a9998d30eeaec911a79f39a722075bb60a164d5e1ef5f59945120", "block_index": 146, - "block_time": 1733662534 + "block_time": 1733663711 } ], "next_cursor": null, @@ -591,11 +591,11 @@ Here is a list of events classified by theme and for each an example response: "asset_longname": null, "asset_name": "OPENFAIR", "block_index": 232, - "block_time": 1733662942 + "block_time": 1733664114 }, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "block_index": 232, - "block_time": 1733662942 + "block_time": 1733664114 } ], "next_cursor": 875, @@ -623,22 +623,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": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "issuer": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": "valid", "transfer": false, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "tx_index": 105, - "block_time": 1733662942, + "block_time": 1733664114, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "block_index": 232, - "block_time": 1733662942 + "block_time": 1733664114 } ], "next_cursor": 890, @@ -658,16 +658,16 @@ Here is a list of events classified by theme and for each an example response: "asset": "PREMINT", "block_index": 228, "quantity": 50, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "status": "valid", "tag": "soft cap not reached", - "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", + "tx_hash": "ece5e1523238a478b2934616134dbc3c0c0d7652e681fc120ac41e78259153a7", "tx_index": 101, - "block_time": 1733662918, + "block_time": 1733664098, "asset_info": { "asset_longname": null, "description": "My super description", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": false }, @@ -675,7 +675,7 @@ Here is a list of events classified by theme and for each an example response: }, "tx_hash": null, "block_index": 228, - "block_time": 1733662918 + "block_time": 1733664098 } ], "next_cursor": 832, @@ -707,11 +707,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": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": "open", - "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "tx_index": 104, - "block_time": 1733662928, + "block_time": 1733664110, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -722,7 +722,7 @@ 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": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "issuer": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "divisible": true, "locked": false }, @@ -735,9 +735,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": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "block_index": 231, - "block_time": 1733662928 + "block_time": 1733664110 } ], "next_cursor": 896, @@ -760,24 +760,24 @@ 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": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076_97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "id": "238eb2739cf62d41cc2aa459c23bc83d5c7b43f6a7bd00e39044d7be51abb255_93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "match_expire_index": 251, "status": "pending", - "tx0_address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "tx0_address": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "tx0_block_index": 230, "tx0_expiration": 21, - "tx0_hash": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076", + "tx0_hash": "238eb2739cf62d41cc2aa459c23bc83d5c7b43f6a7bd00e39044d7be51abb255", "tx0_index": 103, - "tx1_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx1_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "tx1_block_index": 231, "tx1_expiration": 21, - "tx1_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx1_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "tx1_index": 104, - "block_time": 1733662928, + "block_time": 1733664110, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "issuer": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "divisible": true, "locked": false }, @@ -792,9 +792,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": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "block_index": 231, - "block_time": 1733662928 + "block_time": 1733664110 } ], "next_cursor": 691, @@ -816,13 +816,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": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "block_index": 231, - "block_time": 1733662928 + "block_time": 1733664110 } ], "next_cursor": 902, @@ -840,11 +840,11 @@ Here is a list of events classified by theme and for each an example response: "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15" + "tx_hash": "5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1" }, - "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", + "tx_hash": "9856ba83ca5f23579cb3f792ae48c1bc7497391d9677ad8d3e6a6fdf2d3025ec", "block_index": 182, - "block_time": 1733662675 + "block_time": 1733663847 } ], "next_cursor": null, @@ -861,13 +861,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": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "order_match_id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "id": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "order_match_id": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "status": "expired" }, - "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", + "tx_hash": "63c244c2e46947aec961ae8798f3dfec0a61e6bd08f81aae44f51f68344844d5", "block_index": 225, - "block_time": 1733662907 + "block_time": 1733664086 } ], "next_cursor": 685, @@ -886,18 +886,18 @@ Here is a list of events classified by theme and for each an example response: "params": { "block_index": 182, "btc_amount": 2000, - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "order_match_id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", + "tx_hash": "9856ba83ca5f23579cb3f792ae48c1bc7497391d9677ad8d3e6a6fdf2d3025ec", "tx_index": 57, - "block_time": 1733662675, + "block_time": 1733663847, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", + "tx_hash": "9856ba83ca5f23579cb3f792ae48c1bc7497391d9677ad8d3e6a6fdf2d3025ec", "block_index": 182, - "block_time": 1733662675 + "block_time": 1733663847 } ], "next_cursor": null, @@ -915,16 +915,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": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "offer_hash": "4387209cd138023912f31ea19f0290397fffd4f21b306e08ad5ef9c80d0836aa", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6", + "tx_hash": "669b450cbfa122294f7dcee16998a68b9e2aab3815b341a188918aef777e401c", "tx_index": 63, - "block_time": 1733662715 + "block_time": 1733663880 }, - "tx_hash": "de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6", + "tx_hash": "669b450cbfa122294f7dcee16998a68b9e2aab3815b341a188918aef777e401c", "block_index": 188, - "block_time": 1733662715 + "block_time": 1733663880 } ], "next_cursor": null, @@ -942,13 +942,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": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "block_time": 1733662819 + "order_hash": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "block_time": 1733664025 }, - "tx_hash": "816df0c34171151d8c1947707f1c924dc6988f829038e9f0709bb2b7ab206acc", + "tx_hash": "4fdf78335a98077540fddc780efe3c1edc802b6367282daac69677eed5c92467", "block_index": 211, - "block_time": 1733662819 + "block_time": 1733664025 } ], "next_cursor": 705, @@ -966,14 +966,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": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", - "block_time": 1733662907 + "order_match_id": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "tx1_address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", + "block_time": 1733664086 }, - "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", + "tx_hash": "63c244c2e46947aec961ae8798f3dfec0a61e6bd08f81aae44f51f68344844d5", "block_index": 225, - "block_time": 1733662907 + "block_time": 1733664086 } ], "next_cursor": 688, @@ -999,17 +999,17 @@ Here is a list of events classified by theme and for each an example response: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "satoshirate": 1, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": 0, - "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "tx_index": 68, - "block_time": 1733662733, + "block_time": 1733663919, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -1018,9 +1018,9 @@ Here is a list of events classified by theme and for each an example response: "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "block_index": 193, - "block_time": 1733662733 + "block_time": 1733663919 } ], "next_cursor": 264, @@ -1040,9 +1040,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": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": 0, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1052,9 +1052,9 @@ Here is a list of events classified by theme and for each an example response: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 594, @@ -1073,13 +1073,13 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 135, - "destination": "mwGrVHb495rLnPnW2W9yvMfsayfdGhBD7M", + "destination": "mvhkw2Szn9FeXit5DkusaxK7CS66HghzXC", "dispense_quantity": 10, - "dispenser_tx_hash": "ea1a192405fa4439cd194c2dd622e088addef725cb25debbd12b34766f2140a7", - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "tx_hash": "afb9a582e852714df40622021ba105bd464db5e07f74867a31b84ad7c34ce16f", + "dispenser_tx_hash": "c94bc472c505bbd908031a7adcf8e688d673892d00e7be53eb1fbee53f25379f", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "tx_hash": "be1a6ecd655966c867e8796bbb5a453387465568050b0f17b32c998003612e8e", "tx_index": 31, - "block_time": 1733662496, + "block_time": 1733663674, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1089,9 +1089,9 @@ Here is a list of events classified by theme and for each an example response: }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "afb9a582e852714df40622021ba105bd464db5e07f74867a31b84ad7c34ce16f", + "tx_hash": "be1a6ecd655966c867e8796bbb5a453387465568050b0f17b32c998003612e8e", "block_index": 135, - "block_time": 1733662496 + "block_time": 1733663674 } ], "next_cursor": null, @@ -1111,14 +1111,14 @@ Here is a list of events classified by theme and for each an example response: "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1129,9 +1129,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": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 595, @@ -1153,19 +1153,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": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", + "tx_hash": "0d855bb8de5f24b5c232aee85adf238f6f2a3dfb506f6b291a66f9f2d636966a", "tx_index": 25, "value": 66600.0, - "block_time": 1733662474, + "block_time": 1733663634, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", + "tx_hash": "0d855bb8de5f24b5c232aee85adf238f6f2a3dfb506f6b291a66f9f2d636966a", "block_index": 129, - "block_time": 1733662474 + "block_time": 1733663634 } ], "next_cursor": 205, @@ -1203,12 +1203,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": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "start_block": 0, "status": "open", - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "tx_index": 105, - "block_time": 1733662942, + "block_time": 1733664114, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1216,9 +1216,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": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "block_index": 232, - "block_time": 1733662942 + "block_time": 1733664114 } ], "next_cursor": 874, @@ -1236,11 +1236,11 @@ Here is a list of events classified by theme and for each an example response: "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb" + "tx_hash": "ece5e1523238a478b2934616134dbc3c0c0d7652e681fc120ac41e78259153a7" }, "tx_hash": null, "block_index": 228, - "block_time": 1733662918 + "block_time": 1733664098 } ], "next_cursor": 869, @@ -1261,17 +1261,17 @@ 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": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", + "fairminter_tx_hash": "16a2331c4274ae6134bdce67bdbfd33cd2b39ba2fd15ef604046a63f8992d3ed", "paid_quantity": 100000000, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": "valid", - "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", + "tx_hash": "feb9230ff4823ac9611af89348fc8b3a3ef21e174720c321bdd359100a8cf8a3", "tx_index": 97, - "block_time": 1733662883, + "block_time": 1733664071, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -1279,9 +1279,9 @@ Here is a list of events classified by theme and for each an example response: "commission_normalized": "0.20000000", "paid_quantity_normalized": "1.00000000" }, - "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", + "tx_hash": "feb9230ff4823ac9611af89348fc8b3a3ef21e174720c321bdd359100a8cf8a3", "block_index": 221, - "block_time": 1733662883 + "block_time": 1733664071 } ], "next_cursor": 816, @@ -1302,28 +1302,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0", + "destination": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "source": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "status": "valid", - "tx_hash": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", + "tx_hash": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da", "tx_index": 75, - "block_time": 1733662757, + "block_time": 1733663952, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "issuer": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", + "tx_hash": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da", "block_index": 199, - "block_time": 1733662757 + "block_time": 1733663952 } ], "next_cursor": 611, @@ -1342,28 +1342,28 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "UTXOASSET", "block_index": 198, - "destination": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "destination": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "3ca9e2bddd0a9a542e219bd11e8a9d82cb47504bdb3f2bada362cc2160adfcff:0", + "source": "5b130b1ac3af488ec6daf17c1c2882e92059e72d05ed7f047e520b244e5ab561:0", "status": "valid", - "tx_hash": "cfd9a40c7741775c65321b2673f86310bb1f15fc0bfb711b58cfe0ed5acf4d71", + "tx_hash": "4633b98d1cdcdf9894281c42618c8a24cde6e5320ae3bf134e896243465716d5", "tx_index": 74, - "block_time": 1733662753, + "block_time": 1733663948, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "issuer": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "cfd9a40c7741775c65321b2673f86310bb1f15fc0bfb711b58cfe0ed5acf4d71", + "tx_hash": "4633b98d1cdcdf9894281c42618c8a24cde6e5320ae3bf134e896243465716d5", "block_index": 198, - "block_time": 1733662753 + "block_time": 1733663948 } ], "next_cursor": 304, @@ -1382,14 +1382,14 @@ Here is a list of events classified by theme and for each an example response: "params": { "asset": "XCP", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 1, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1399,9 +1399,9 @@ Here is a list of events classified by theme and for each an example response: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 922, @@ -1423,17 +1423,17 @@ Here is a list of events classified by theme and for each an example response: "block_index": 112, "burned": 50000000, "earned": 74999998167, - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "status": "valid", - "tx_hash": "95db2791e37d288a1a4fb3c7414e3aca564b4024baaaf2c7bc77689349c31ca7", + "tx_hash": "7f95f11da950a3e99186454fbeaac75e4716fe2aa0a9a0977ca5c2204bdd53de", "tx_index": 9, - "block_time": 1733662402, + "block_time": 1733663559, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, - "tx_hash": "95db2791e37d288a1a4fb3c7414e3aca564b4024baaaf2c7bc77689349c31ca7", + "tx_hash": "7f95f11da950a3e99186454fbeaac75e4716fe2aa0a9a0977ca5c2204bdd53de", "block_index": 112, - "block_time": 1733662402 + "block_time": 1733663559 } ], "next_cursor": 58, @@ -1493,56 +1493,56 @@ Returns the list of the last ten blocks "result": [ { "block_index": 234, - "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", - "block_time": 1733662951, - "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", - "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", - "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", - "previous_block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482", + "block_hash": "00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45", + "block_time": 1733664124, + "ledger_hash": "45ce2aec46047790b784c61e48d1a4a33fab17a4ae86db0601f02b5bc64a0fa1", + "txlist_hash": "f0253bdf0d14167513005643cdec3e8872519b0226a5194e52eae3149f35ddd5", + "messages_hash": "222bf6a0adcb1f8c1df56bb65831fdc05183e797fbca2ac43dbb06bdd89b9a88", + "previous_block_hash": "603c0b67e999c35cec4f4087e3c7b289be955ffa9129efb92fcd29a661dcf7c6", "difficulty": 545259519, "transaction_count": 1 }, { "block_index": 233, - "block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482", - "block_time": 1733662945, - "ledger_hash": "c4effb812a79178863a6ce95a80026fdcbbc521bcd82420d62b64d1662592807", - "txlist_hash": "faa07c0ac1aa2d221ab2faf26a4de852b4a50bcd5a73981f9ba109caeb3f9eea", - "messages_hash": "a9fa900b8f6522f9dc91f323b9d39abbf0d8bb9599e6bc75fb0dde9729d12d3f", - "previous_block_hash": "5b934ef246230a877ae6d123edb3ed2e9e334e4e08e11d0d96617acbd2940927", + "block_hash": "603c0b67e999c35cec4f4087e3c7b289be955ffa9129efb92fcd29a661dcf7c6", + "block_time": 1733664118, + "ledger_hash": "c2db7954b543ce6ad169ccccd44d83e5a832b186c87a1d0ab1878c286a08cbae", + "txlist_hash": "c3494442dcd9185c66336e58b76f9e3e3cd510babcf72024f7d28b1d3c150d2c", + "messages_hash": "5c2fc2e16817c2cc6f82fd6c393526c3d125ac97b539877653d06865ce618843", + "previous_block_hash": "3052aa47893addec70f3784c26325d7cdd6351d3f301dc5d70cd31602b00b9a6", "difficulty": 545259519, "transaction_count": 0 }, { "block_index": 232, - "block_hash": "5b934ef246230a877ae6d123edb3ed2e9e334e4e08e11d0d96617acbd2940927", - "block_time": 1733662942, - "ledger_hash": "e32d339f6d64ba68194a1ee7f4dd31b6707316212fbebc113225d2911e9da526", - "txlist_hash": "6b32615860ef61fe693553866e61d8b9ac89c3b0c68970b803ae5e8d77953142", - "messages_hash": "0b1dded5296e4e8a337f1705a58d44df91ef8edd6eb463ab479f219b18a35bf2", - "previous_block_hash": "24100a2e929da6ee163f9710db8efbaca85f19101a3b869caf7c47fc69ea1e79", + "block_hash": "3052aa47893addec70f3784c26325d7cdd6351d3f301dc5d70cd31602b00b9a6", + "block_time": 1733664114, + "ledger_hash": "5e47081164b2ce9aa6029575ca5be12d3f3d7d7281f51bbd33af29a322d2e5af", + "txlist_hash": "04e1356704b7d2744f10bcbc87c2a1517d3b0eacaed5bc2124a0297cbaaccf46", + "messages_hash": "268327255eb4b2eb4b9f7da99409e1dfac33d4895aba11ce78ea11abd503e447", + "previous_block_hash": "2a11b56f9b980cdc5c11d5cbbf3d691cc80df4b7050bdddd26af75c7f38d7071", "difficulty": 545259519, "transaction_count": 1 }, { "block_index": 231, - "block_hash": "24100a2e929da6ee163f9710db8efbaca85f19101a3b869caf7c47fc69ea1e79", - "block_time": 1733662928, - "ledger_hash": "4c1955e9609c751f3bd23ab4e79524f761a774e4817f7bfa4945f01ed5fc2fe8", - "txlist_hash": "2d9b43604aa3d491cb58bfbfe246a19be9a1cb49313411571ab32fd493b1dd1f", - "messages_hash": "fa344060ce89302213bead5a679a8e936eb9b6f03963893d09fe986cd961a41b", - "previous_block_hash": "4e86867ff19ab5f8c6edfcce7beab0df102e903f9a94ad15af6c0fe5935916bc", + "block_hash": "2a11b56f9b980cdc5c11d5cbbf3d691cc80df4b7050bdddd26af75c7f38d7071", + "block_time": 1733664110, + "ledger_hash": "698fba3ba5b655f33952ca39db01968dc4eb5a9ccb31f4ebfd14fea0dfd4f303", + "txlist_hash": "5b0a0968e715df261e662b479ade150e96a714b3888243aa22e0de2ed4f319b9", + "messages_hash": "2e3b492eb147415acc838539036973df025c4f15385fcde19c7745cba9e389b5", + "previous_block_hash": "6eb906bac2608e669fc33efb2ef92bc4e89b1c622ec137557ab75ecdc8512e55", "difficulty": 545259519, "transaction_count": 1 }, { "block_index": 230, - "block_hash": "4e86867ff19ab5f8c6edfcce7beab0df102e903f9a94ad15af6c0fe5935916bc", - "block_time": 1733662924, - "ledger_hash": "3b4ac818c89ec20fe795ff45aa0ddb6252a42e5d39e887bec818b1a4e2835172", - "txlist_hash": "8df69dd5bc43012fbfed4d7c9d79bd6b0e47e75fac8c98f89ceaa562d20b3ed7", - "messages_hash": "050f2205d08ef79443c4575005e8991d8d4f17996f53f1942b9702b8bbe59c31", - "previous_block_hash": "7cecdf143482d91a29a97d0fee2369913272ce9d8c597c5b8916aae7e9f0fc6f", + "block_hash": "6eb906bac2608e669fc33efb2ef92bc4e89b1c622ec137557ab75ecdc8512e55", + "block_time": 1733664106, + "ledger_hash": "7fc392c589c7ab35b807ce106d04fb88dafdf4c978905ec3cd3380e770e2cb77", + "txlist_hash": "7af48f51b266807b1db7dc345ead381b6cdeb0bb444cdf9dafac537d9fef4f08", + "messages_hash": "d03a92c96081ce9269f0c0da1a7819293a7f81aa8d860ce88dc5c93dc6fb2b58", + "previous_block_hash": "13852c4f1bfc9f8171bd4aca403c68bda53d0a39ee28bb1b074d8060b4be5e39", "difficulty": 545259519, "transaction_count": 1 } @@ -1566,12 +1566,12 @@ Return the information of the last block { "result": { "block_index": 234, - "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", - "block_time": 1733662951, - "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", - "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", - "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", - "previous_block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482", + "block_hash": "00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45", + "block_time": 1733664124, + "ledger_hash": "45ce2aec46047790b784c61e48d1a4a33fab17a4ae86db0601f02b5bc64a0fa1", + "txlist_hash": "f0253bdf0d14167513005643cdec3e8872519b0226a5194e52eae3149f35ddd5", + "messages_hash": "222bf6a0adcb1f8c1df56bb65831fdc05183e797fbca2ac43dbb06bdd89b9a88", + "previous_block_hash": "603c0b67e999c35cec4f4087e3c7b289be955ffa9129efb92fcd29a661dcf7c6", "difficulty": 545259519, "transaction_count": 1 } @@ -1593,12 +1593,12 @@ Return the information of a block { "result": { "block_index": 234, - "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", - "block_time": 1733662951, - "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", - "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", - "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", - "previous_block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482", + "block_hash": "00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45", + "block_time": 1733664124, + "ledger_hash": "45ce2aec46047790b784c61e48d1a4a33fab17a4ae86db0601f02b5bc64a0fa1", + "txlist_hash": "f0253bdf0d14167513005643cdec3e8872519b0226a5194e52eae3149f35ddd5", + "messages_hash": "222bf6a0adcb1f8c1df56bb65831fdc05183e797fbca2ac43dbb06bdd89b9a88", + "previous_block_hash": "603c0b67e999c35cec4f4087e3c7b289be955ffa9129efb92fcd29a661dcf7c6", "difficulty": 545259519, "transaction_count": 1 } @@ -1610,7 +1610,7 @@ Return the information of a block Return the information of a block + Parameters - + block_hash: `4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94` (str, required) - The index of the block to return + + block_hash: `00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45` (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` @@ -1620,12 +1620,12 @@ Return the information of a block { "result": { "block_index": 234, - "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", - "block_time": 1733662951, - "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", - "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", - "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", - "previous_block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482", + "block_hash": "00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45", + "block_time": 1733664124, + "ledger_hash": "45ce2aec46047790b784c61e48d1a4a33fab17a4ae86db0601f02b5bc64a0fa1", + "txlist_hash": "f0253bdf0d14167513005643cdec3e8872519b0226a5194e52eae3149f35ddd5", + "messages_hash": "222bf6a0adcb1f8c1df56bb65831fdc05183e797fbca2ac43dbb06bdd89b9a88", + "previous_block_hash": "603c0b67e999c35cec4f4087e3c7b289be955ffa9129efb92fcd29a661dcf7c6", "difficulty": 545259519, "transaction_count": 1 } @@ -1680,17 +1680,17 @@ Returns the transactions of a block "result": [ { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", - "block_time": 1733662951, - "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", - "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_hash": "00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45", + "block_time": 1733664124, + "source": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", + "destination": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", + "utxos_info": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1 ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0 3 1", "transaction_type": "dispense", "events": [ { @@ -1699,26 +1699,26 @@ Returns the transactions of a block "params": { "asset": "MYASSETA", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 0, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 925, @@ -1726,14 +1726,14 @@ Returns the transactions of a block "params": { "asset": "XCP", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 1, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1743,9 +1743,9 @@ Returns the transactions of a block }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 927, @@ -1754,9 +1754,9 @@ Returns the transactions of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": 0, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1766,9 +1766,9 @@ Returns the transactions of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 928, @@ -1777,14 +1777,14 @@ Returns the transactions of a block "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1795,9 +1795,9 @@ Returns the transactions of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "unpacked_data": { @@ -1860,11 +1860,11 @@ Returns the events of a block "event": "BLOCK_PARSED", "params": { "block_index": 234, - "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", - "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", + "ledger_hash": "45ce2aec46047790b784c61e48d1a4a33fab17a4ae86db0601f02b5bc64a0fa1", + "messages_hash": "222bf6a0adcb1f8c1df56bb65831fdc05183e797fbca2ac43dbb06bdd89b9a88", "transaction_count": 1, - "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", - "block_time": 1733662951 + "txlist_hash": "f0253bdf0d14167513005643cdec3e8872519b0226a5194e52eae3149f35ddd5", + "block_time": 1733664124 }, "tx_hash": null }, @@ -1873,10 +1873,10 @@ Returns the events of a block "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106 }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f" }, { "event_index": 928, @@ -1885,14 +1885,14 @@ Returns the events of a block "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1903,7 +1903,7 @@ Returns the events of a block "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f" }, { "event_index": 927, @@ -1912,9 +1912,9 @@ Returns the events of a block "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": 0, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1924,22 +1924,22 @@ Returns the events of a block }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f" }, { "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1949,7 +1949,7 @@ Returns the events of a block }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f" } ], "next_cursor": 925, @@ -2028,16 +2028,16 @@ Returns the events of a block filtered by event "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2047,7 +2047,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f" }, { "event_index": 924, @@ -2057,12 +2057,12 @@ Returns the events of a block filtered by event "asset": "XCP", "block_index": 234, "calling_function": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 2000000000, "tx_index": 106, - "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662951, + "utxo": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2072,7 +2072,7 @@ Returns the events of a block filtered by event }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f" }, { "event_index": 921, @@ -2082,22 +2082,22 @@ Returns the events of a block filtered by event "asset": "MYASSETA", "block_index": 234, "calling_function": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 2000000000, "tx_index": 106, - "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662951, + "utxo": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f" } ], "next_cursor": null, @@ -2158,15 +2158,15 @@ Returns the credits of a block "result": [ { "block_index": 234, - "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2182,11 +2182,11 @@ Returns the credits of a block "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662951, + "utxo": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2202,15 +2202,15 @@ Returns the credits of a block "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662951, + "utxo": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -2268,11 +2268,11 @@ Returns the debits of a block "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "utxo": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "utxo_address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", - "block_time": 1733662951, + "utxo": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "utxo_address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2288,15 +2288,15 @@ Returns the debits of a block "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "utxo": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "utxo_address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", - "block_time": 1733662951, + "utxo": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "utxo_address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -2330,9 +2330,9 @@ Returns the expirations of a block "result": [ { "type": "order", - "object_id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "object_id": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", "block_index": 211, - "block_time": 1733662819 + "block_time": 1733664025 } ], "next_cursor": null, @@ -2362,12 +2362,12 @@ Returns the cancels of a block "result": [ { "tx_index": 63, - "tx_hash": "de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6", + "tx_hash": "669b450cbfa122294f7dcee16998a68b9e2aab3815b341a188918aef777e401c", "block_index": 188, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "offer_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "offer_hash": "4387209cd138023912f31ea19f0290397fffd4f21b306e08ad5ef9c80d0836aa", "status": "valid", - "block_time": 1733662715 + "block_time": 1733663880 } ], "next_cursor": null, @@ -2397,18 +2397,18 @@ Returns the destructions of a block "result": [ { "tx_index": 101, - "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", + "tx_hash": "ece5e1523238a478b2934616134dbc3c0c0d7652e681fc120ac41e78259153a7", "block_index": 228, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "asset": "PREMINT", "quantity": 50, "tag": "soft cap not reached", "status": "valid", - "block_time": 1733662918, + "block_time": 1733664098, "asset_info": { "asset_longname": null, "description": "My super description", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": false }, @@ -2455,14 +2455,14 @@ Returns the issuances of a block "result": [ { "tx_index": 105, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "msg_index": 0, "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "issuer": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "transfer": false, "callable": false, "call_date": 0, @@ -2476,7 +2476,7 @@ Returns the issuances of a block "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", - "block_time": 1733662942, + "block_time": 1733664114, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -2516,17 +2516,17 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2539,21 +2539,21 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -2589,26 +2589,26 @@ Returns the dispenses of a block { "tx_index": 106, "dispense_index": 0, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "btc_amount": 1000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "oracle_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "last_status_tx_hash": null, - "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "origin": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -2623,7 +2623,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2662,15 +2662,15 @@ Returns the sweeps of a block "result": [ { "tx_index": 65, - "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", + "tx_hash": "f6f1dd1640fa599d048daaa43dd7ad57104761cce91bb73182ac3ce688e2daf1", "block_index": 190, - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, - "block_time": 1733662722, + "block_time": 1733663898, "fee_paid_normalized": "0.00600000" } ], @@ -2707,10 +2707,10 @@ Returns the fairminters by its block index { "result": [ { - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "tx_index": 105, "block_index": 232, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "asset": "OPENFAIR", "asset_parent": null, "asset_longname": null, @@ -2734,7 +2734,7 @@ Returns the fairminters by its block index "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733662942, + "block_time": 1733664114, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -2769,21 +2769,21 @@ Returns the fairmints by its block index { "result": [ { - "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", + "tx_hash": "feb9230ff4823ac9611af89348fc8b3a3ef21e174720c321bdd359100a8cf8a3", "tx_index": 97, "block_index": 221, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "fairminter_tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "fairminter_tx_hash": "16a2331c4274ae6134bdce67bdbfd33cd2b39ba2fd15ef604046a63f8992d3ed", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", - "block_time": 1733662883, + "block_time": 1733664071, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -2824,17 +2824,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 25, - "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", + "tx_hash": "0d855bb8de5f24b5c232aee85adf238f6f2a3dfb506f6b291a66f9f2d636966a", "block_index": 129, - "block_hash": "1c10d35e8c038e1a080a92e3d26cb72c0fad0b7abd7502b6ba621d4e8a7096f8", - "block_time": 1733662474, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_hash": "2365b8f39a71b600fa06950f6bf87e2d4aeef732e18928a6c1ac01be4e8d8113", + "block_time": 1733663634, + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "destination": null, "btc_amount": 0, "fee": 10000, "data": "1eeea6b9ef40f0428000000000000000000970726963652d555344", "supported": true, - "utxos_info": " 5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf:1 2 0", + "utxos_info": " 0d855bb8de5f24b5c232aee85adf238f6f2a3dfb506f6b291a66f9f2d636966a:1 2 0", "transaction_type": "broadcast", "events": [ { @@ -2844,19 +2844,19 @@ Here is sample API output for each of these transactions: "block_index": 129, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", + "tx_hash": "0d855bb8de5f24b5c232aee85adf238f6f2a3dfb506f6b291a66f9f2d636966a", "tx_index": 25, "value": 66600.0, - "block_time": 1733662474, + "block_time": 1733663634, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", + "tx_hash": "0d855bb8de5f24b5c232aee85adf238f6f2a3dfb506f6b291a66f9f2d636966a", "block_index": 129, - "block_time": 1733662474 + "block_time": 1733663634 } ], "unpacked_data": { @@ -2880,41 +2880,41 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 57, - "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", + "tx_hash": "9856ba83ca5f23579cb3f792ae48c1bc7497391d9677ad8d3e6a6fdf2d3025ec", "block_index": 182, - "block_hash": "6dcc461e661aaf9d3e675bc7e7164be16f1b75d60464b2c1b3b01f13ce7c2cbd", - "block_time": 1733662675, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_hash": "52c0ad29319655cf689f71a185876ed5f672b175aec8149dd395ee948ba5159a", + "block_time": 1733663847, + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "btc_amount": 2000, "fee": 10000, - "data": "0b7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "data": "0bafcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f08035230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", "supported": true, - "utxos_info": " 0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc:0 3 1", + "utxos_info": " 9856ba83ca5f23579cb3f792ae48c1bc7497391d9677ad8d3e6a6fdf2d3025ec:0 3 1", "transaction_type": "btcpay", "events": [ { "event_index": 506, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", - "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", + "order_match_id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", "status": "completed" }, - "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", + "tx_hash": "9856ba83ca5f23579cb3f792ae48c1bc7497391d9677ad8d3e6a6fdf2d3025ec", "block_index": 182, - "block_time": 1733662675 + "block_time": 1733663847 }, { "event_index": 507, "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15" + "tx_hash": "5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1" }, - "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", + "tx_hash": "9856ba83ca5f23579cb3f792ae48c1bc7497391d9677ad8d3e6a6fdf2d3025ec", "block_index": 182, - "block_time": 1733662675 + "block_time": 1733663847 }, { "event_index": 508, @@ -2922,27 +2922,27 @@ Here is sample API output for each of these transactions: "params": { "block_index": 182, "btc_amount": 2000, - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "order_match_id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", + "tx_hash": "9856ba83ca5f23579cb3f792ae48c1bc7497391d9677ad8d3e6a6fdf2d3025ec", "tx_index": 57, - "block_time": 1733662675, + "block_time": 1733663847, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", + "tx_hash": "9856ba83ca5f23579cb3f792ae48c1bc7497391d9677ad8d3e6a6fdf2d3025ec", "block_index": 182, - "block_time": 1733662675 + "block_time": 1733663847 } ], "unpacked_data": { "message_type": "btcpay", "message_type_id": 11, "message_data": { - "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", - "tx1_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", - "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "tx0_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", + "tx1_hash": "5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", + "order_match_id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", "status": "valid" } } @@ -2956,17 +2956,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 63, - "tx_hash": "de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6", + "tx_hash": "669b450cbfa122294f7dcee16998a68b9e2aab3815b341a188918aef777e401c", "block_index": 188, - "block_hash": "723e31b21873ff85e9dc80228e90bd64b992a4e97a9033a7d6b2391c83d44c88", - "block_time": 1733662715, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_hash": "2b86548f3c47ccdc4639ca52cfbc0c965b9a452cf75eefd238e094a996faff8e", + "block_time": 1733663880, + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "46050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", + "data": "464387209cd138023912f31ea19f0290397fffd4f21b306e08ad5ef9c80d0836aa", "supported": true, - "utxos_info": " de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6:1 2 0", + "utxos_info": " 669b450cbfa122294f7dcee16998a68b9e2aab3815b341a188918aef777e401c:1 2 0", "transaction_type": "cancel", "events": [ { @@ -2974,34 +2974,34 @@ Here is sample API output for each of these transactions: "event": "ORDER_UPDATE", "params": { "status": "cancelled", - "tx_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562" + "tx_hash": "4387209cd138023912f31ea19f0290397fffd4f21b306e08ad5ef9c80d0836aa" }, - "tx_hash": "de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6", + "tx_hash": "669b450cbfa122294f7dcee16998a68b9e2aab3815b341a188918aef777e401c", "block_index": 188, - "block_time": 1733662715 + "block_time": 1733663880 }, { "event_index": 553, "event": "CANCEL_ORDER", "params": { "block_index": 188, - "offer_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "offer_hash": "4387209cd138023912f31ea19f0290397fffd4f21b306e08ad5ef9c80d0836aa", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6", + "tx_hash": "669b450cbfa122294f7dcee16998a68b9e2aab3815b341a188918aef777e401c", "tx_index": 63, - "block_time": 1733662715 + "block_time": 1733663880 }, - "tx_hash": "de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6", + "tx_hash": "669b450cbfa122294f7dcee16998a68b9e2aab3815b341a188918aef777e401c", "block_index": 188, - "block_time": 1733662715 + "block_time": 1733663880 } ], "unpacked_data": { "message_type": "cancel", "message_type_id": 70, "message_data": { - "offer_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", + "offer_hash": "4387209cd138023912f31ea19f0290397fffd4f21b306e08ad5ef9c80d0836aa", "status": "valid" } } @@ -3023,17 +3023,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 68, - "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "block_index": 193, - "block_hash": "10b675298433b89dad6dfa3551134328a0689c8e59eb4c543ae2ddcfcff81544", - "block_time": 1733662733, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_hash": "18fde4ed39bac3ec73d7baa0127a13ae2a93ece3d5a5c5838994b074611196d6", + "block_time": 1733663919, + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952:1 2 0", + "utxos_info": " 08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38:1 2 0", "transaction_type": "dispenser", "events": [ { @@ -3047,17 +3047,17 @@ Here is sample API output for each of these transactions: "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "satoshirate": 1, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": 0, - "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "tx_index": 68, - "block_time": 1733662733, + "block_time": 1733663919, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -3066,9 +3066,9 @@ Here is sample API output for each of these transactions: "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "block_index": 193, - "block_time": 1733662733 + "block_time": 1733663919 } ], "unpacked_data": { @@ -3095,17 +3095,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", - "block_time": 1733662951, - "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", - "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_hash": "00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45", + "block_time": 1733664124, + "source": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", + "destination": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", + "utxos_info": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1 ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0 3 1", "transaction_type": "dispense", "events": [ { @@ -3114,26 +3114,26 @@ Here is sample API output for each of these transactions: "params": { "asset": "MYASSETA", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 0, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 925, @@ -3141,14 +3141,14 @@ Here is sample API output for each of these transactions: "params": { "asset": "XCP", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 1, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3158,9 +3158,9 @@ Here is sample API output for each of these transactions: }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 927, @@ -3169,9 +3169,9 @@ Here is sample API output for each of these transactions: "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": 0, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3181,9 +3181,9 @@ Here is sample API output for each of these transactions: }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 928, @@ -3192,14 +3192,14 @@ Here is sample API output for each of these transactions: "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3210,9 +3210,9 @@ Here is sample API output for each of these transactions: "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "unpacked_data": { @@ -3232,17 +3232,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 42, - "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", + "tx_hash": "9676962b470a9998d30eeaec911a79f39a722075bb60a164d5e1ef5f59945120", "block_index": 146, - "block_hash": "05571d215a5653a258f8483a81f65b6781362fa9825e0f806bc8072801be71f2", - "block_time": 1733662534, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_hash": "58dbc303a9d657178bb552b49522b7b326e6113d0c171996482489feabd6e9be", + "block_time": 1733663711, + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, "data": "320000000005f5e100000000182b37176e0000000000000001", "supported": true, - "utxos_info": " 4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e:1 2 0", + "utxos_info": " 9676962b470a9998d30eeaec911a79f39a722075bb60a164d5e1ef5f59945120:1 2 0", "transaction_type": "dividend", "events": [ { @@ -3254,15 +3254,15 @@ Here is sample API output for each of these transactions: "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", + "tx_hash": "9676962b470a9998d30eeaec911a79f39a722075bb60a164d5e1ef5f59945120", "tx_index": 42, - "block_time": 1733662534, + "block_time": 1733663711, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -3276,9 +3276,9 @@ Here is sample API output for each of these transactions: "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", + "tx_hash": "9676962b470a9998d30eeaec911a79f39a722075bb60a164d5e1ef5f59945120", "block_index": 146, - "block_time": 1733662534 + "block_time": 1733663711 } ], "unpacked_data": { @@ -3301,17 +3301,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 105, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "block_index": 232, - "block_hash": "5b934ef246230a877ae6d123edb3ed2e9e334e4e08e11d0d96617acbd2940927", - "block_time": 1733662942, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_hash": "3052aa47893addec70f3784c26325d7cdd6351d3f301dc5d70cd31602b00b9a6", + "block_time": 1733664114, + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8:1 2 0", + "utxos_info": " d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5:1 2 0", "transaction_type": "fairminter", "events": [ { @@ -3337,12 +3337,12 @@ Here is sample API output for each of these transactions: "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "start_block": 0, "status": "open", - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "tx_index": 105, - "block_time": 1733662942, + "block_time": 1733664114, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -3350,9 +3350,9 @@ Here is sample API output for each of these transactions: "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "block_index": 232, - "block_time": 1733662942 + "block_time": 1733664114 }, { "event_index": 910, @@ -3362,11 +3362,11 @@ Here is sample API output for each of these transactions: "asset_longname": null, "asset_name": "OPENFAIR", "block_index": 232, - "block_time": 1733662942 + "block_time": 1733664114 }, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "block_index": 232, - "block_time": 1733662942 + "block_time": 1733664114 }, { "event_index": 911, @@ -3383,22 +3383,22 @@ Here is sample API output for each of these transactions: "divisible": true, "fair_minting": true, "fee_paid": 50000000.0, - "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "issuer": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": "valid", "transfer": false, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "tx_index": 105, - "block_time": 1733662942, + "block_time": 1733664114, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "block_index": 232, - "block_time": 1733662942 + "block_time": 1733664114 } ], "unpacked_data": { @@ -3434,17 +3434,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 104, - "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "block_index": 231, - "block_hash": "24100a2e929da6ee163f9710db8efbaca85f19101a3b869caf7c47fc69ea1e79", - "block_time": 1733662928, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_hash": "2a11b56f9b980cdc5c11d5cbbf3d691cc80df4b7050bdddd26af75c7f38d7071", + "block_time": 1733664110, + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0a000000000000000000000000000003e8000003f1a69ea1d300000000000003e800150000000000000000", "supported": true, - "utxos_info": " 97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308:1 2 0", + "utxos_info": " 93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f:1 2 0", "transaction_type": "order", "events": [ { @@ -3464,11 +3464,11 @@ Here is sample API output for each of these transactions: "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": "open", - "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "tx_index": 104, - "block_time": 1733662928, + "block_time": 1733664110, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -3479,7 +3479,7 @@ Here is sample API output for each of these transactions: "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "issuer": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "divisible": true, "locked": false }, @@ -3492,9 +3492,9 @@ Here is sample API output for each of these transactions: "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "block_index": 231, - "block_time": 1733662928 + "block_time": 1733664110 }, { "event_index": 902, @@ -3505,13 +3505,13 @@ Here is sample API output for each of these transactions: "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076", + "tx_hash": "238eb2739cf62d41cc2aa459c23bc83d5c7b43f6a7bd00e39044d7be51abb255", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "block_index": 231, - "block_time": 1733662928 + "block_time": 1733664110 }, { "event_index": 903, @@ -3522,13 +3522,13 @@ Here is sample API output for each of these transactions: "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "block_index": 231, - "block_time": 1733662928 + "block_time": 1733664110 }, { "event_index": 904, @@ -3540,24 +3540,24 @@ Here is sample API output for each of these transactions: "fee_paid": 0, "forward_asset": "UTXOASSET", "forward_quantity": 1000, - "id": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076_97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "id": "238eb2739cf62d41cc2aa459c23bc83d5c7b43f6a7bd00e39044d7be51abb255_93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "match_expire_index": 251, "status": "pending", - "tx0_address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "tx0_address": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "tx0_block_index": 230, "tx0_expiration": 21, - "tx0_hash": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076", + "tx0_hash": "238eb2739cf62d41cc2aa459c23bc83d5c7b43f6a7bd00e39044d7be51abb255", "tx0_index": 103, - "tx1_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx1_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "tx1_block_index": 231, "tx1_expiration": 21, - "tx1_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx1_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "tx1_index": 104, - "block_time": 1733662928, + "block_time": 1733664110, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "issuer": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "divisible": true, "locked": false }, @@ -3572,9 +3572,9 @@ Here is sample API output for each of these transactions: "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "block_index": 231, - "block_time": 1733662928 + "block_time": 1733664110 } ], "unpacked_data": { @@ -3600,17 +3600,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 77, - "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", + "tx_hash": "dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66", "block_index": 201, - "block_hash": "10801583bacc821606b117a03aa3d8edc91e8b6c864a3f72a6dfac845ed9f0a6", - "block_time": 1733662764, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_hash": "1d373b1daa975404c2f43e18164dac89ddef98c8671263b2361aa95138ab20e7", + "block_time": 1733663958, + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d260d2e34c89b206a0797add1942aa6ca5cd4fdf", + "data": "02000000178d82231300000000000003e8802e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b", "supported": true, - "utxos_info": " ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6:1 2 0", + "utxos_info": " dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66:1 2 0", "transaction_type": "enhanced_send", "events": [ { @@ -3619,26 +3619,26 @@ Here is sample API output for each of these transactions: "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "memo": null, "quantity": 1000, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", + "tx_hash": "dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66", "tx_index": 77, - "block_time": 1733662764, + "block_time": 1733663958, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", + "tx_hash": "dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66", "block_index": 201, - "block_time": 1733662764 + "block_time": 1733663958 } ], "unpacked_data": { @@ -3647,7 +3647,7 @@ Here is sample API output for each of these transactions: "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "memo": null } } @@ -3661,17 +3661,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 81, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_hash": "662c168d8674e444aa102dfae48120064c0f87a9a881dcd17c07cae9ab69839a", - "block_time": 1733662789, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "block_hash": "4da269e5df643f16d5f6a21901a775707b5c7421e91b503d5a30d1d37fc51558", + "block_time": 1733663983, + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a0a90e6acc5b35a094a931d109e64b559674fb8480f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038055a1c1bd309c3761f38e46de17c86a78cf853fbb802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa80c035166f0c339550322fb09e1a7ff181aa5646fd88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf:0 4 ", + "utxos_info": " e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993:0 4 ", "transaction_type": "mpma", "events": [ { @@ -3679,24 +3679,24 @@ Here is sample API output for each of these transactions: "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8" + "tx_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55" }, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_time": 1733662789 + "block_time": 1733663983 }, { "event_index": 705, "event": "ORDER_EXPIRATION", "params": { "block_index": 205, - "order_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", - "block_time": 1733662789 + "order_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", + "block_time": 1733663983 }, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_time": 1733662789 + "block_time": 1733663983 }, { "event_index": 711, @@ -3704,27 +3704,27 @@ Here is sample API output for each of these transactions: "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "memo": "the memo", "msg_index": 0, "quantity": 10, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "tx_index": 81, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_time": 1733662789 + "block_time": 1733663983 }, { "event_index": 712, @@ -3732,27 +3732,27 @@ Here is sample API output for each of these transactions: "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "tx_index": 81, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_time": 1733662789 + "block_time": 1733663983 }, { "event_index": 713, @@ -3760,15 +3760,15 @@ Here is sample API output for each of these transactions: "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "tx_index": 81, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3778,9 +3778,9 @@ Here is sample API output for each of these transactions: }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_time": 1733662789 + "block_time": 1733663983 } ], "unpacked_data": { @@ -3789,14 +3789,14 @@ Here is sample API output for each of these transactions: "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "quantity": 10, "memo": "the memo", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "quantity": 10, "memo": "memo1", "memo_is_hex": false @@ -3813,17 +3813,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 65, - "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", + "tx_hash": "f6f1dd1640fa599d048daaa43dd7ad57104761cce91bb73182ac3ce688e2daf1", "block_index": 190, - "block_hash": "2eb669645cc9928d23767c26908fda2e15a0a01f0535f9be14c3af6d2997f24f", - "block_time": 1733662722, - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "block_hash": "63f924e6af12abac1b41c9d8fe91a1e28d1ecc3eb1ddde5d29c26fce69f8d1bf", + "block_time": 1733663898, + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "0480287acd9953ee89fa6b938a43fd6515acb4fd1e0f017377656570206d7920617373657473", + "data": "0480c035166f0c339550322fb09e1a7ff181aa5646fd017377656570206d7920617373657473", "supported": true, - "utxos_info": " 8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551:1 2 0", + "utxos_info": " f6f1dd1640fa599d048daaa43dd7ad57104761cce91bb73182ac3ce688e2daf1:1 2 0", "transaction_type": "sweep", "events": [ { @@ -3831,27 +3831,27 @@ Here is sample API output for each of these transactions: "event": "SWEEP", "params": { "block_index": 190, - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "status": "valid", - "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", + "tx_hash": "f6f1dd1640fa599d048daaa43dd7ad57104761cce91bb73182ac3ce688e2daf1", "tx_index": 65, - "block_time": 1733662722, + "block_time": 1733663898, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", + "tx_hash": "f6f1dd1640fa599d048daaa43dd7ad57104761cce91bb73182ac3ce688e2daf1", "block_index": 190, - "block_time": 1733662722 + "block_time": 1733663898 } ], "unpacked_data": { "message_type": "sweep", "message_type_id": 4, "message_data": { - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "flags": 1, "memo": "sweep my assets" } @@ -3866,17 +3866,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 75, - "tx_hash": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", + "tx_hash": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da", "block_index": 199, - "block_hash": "7d4db2c3add6f1aedca3dc9efa0f1d7a0be2039f2c6f50e2a077f5affb649a64", - "block_time": 1733662757, - "source": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", - "destination": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "block_hash": "1ce79de8b494e9476d9a8607bd41811298561c8a8cd3d94944078d85fa723c07", + "block_time": 1733663952, + "source": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", + "destination": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "btc_amount": 10000, "fee": 0, "data": "655554584f41535345547c313030303030303030307c", "supported": true, - "utxos_info": " bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0 3 1", + "utxos_info": " bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da:0 3 1", "transaction_type": "attach", "events": [ { @@ -3885,28 +3885,28 @@ Here is sample API output for each of these transactions: "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0", + "destination": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "source": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "status": "valid", - "tx_hash": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", + "tx_hash": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da", "tx_index": 75, - "block_time": 1733662757, + "block_time": 1733663952, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "issuer": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", + "tx_hash": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da", "block_index": 199, - "block_time": 1733662757 + "block_time": 1733663952 } ], "unpacked_data": { @@ -3928,17 +3928,17 @@ Here is sample API output for each of these transactions: { "result": { "tx_index": 74, - "tx_hash": "cfd9a40c7741775c65321b2673f86310bb1f15fc0bfb711b58cfe0ed5acf4d71", + "tx_hash": "4633b98d1cdcdf9894281c42618c8a24cde6e5320ae3bf134e896243465716d5", "block_index": 198, - "block_hash": "00236108979c92315ffae396a13d2bc7ec1bb33db9f416c33a97b8c95529db30", - "block_time": 1733662753, - "source": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "block_hash": "10cbfcb723a643755de03db98af4f800c8371a8febdaf800c2198d2ec22f7344", + "block_time": 1733663948, + "source": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "destination": null, "btc_amount": 0, "fee": 0, "data": "6630", "supported": true, - "utxos_info": "3ca9e2bddd0a9a542e219bd11e8a9d82cb47504bdb3f2bada362cc2160adfcff:0 cfd9a40c7741775c65321b2673f86310bb1f15fc0bfb711b58cfe0ed5acf4d71:1 2 0", + "utxos_info": "5b130b1ac3af488ec6daf17c1c2882e92059e72d05ed7f047e520b244e5ab561:0 4633b98d1cdcdf9894281c42618c8a24cde6e5320ae3bf134e896243465716d5:1 2 0", "transaction_type": "detach", "events": [ { @@ -3947,28 +3947,28 @@ Here is sample API output for each of these transactions: "params": { "asset": "UTXOASSET", "block_index": 198, - "destination": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "destination": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "3ca9e2bddd0a9a542e219bd11e8a9d82cb47504bdb3f2bada362cc2160adfcff:0", + "source": "5b130b1ac3af488ec6daf17c1c2882e92059e72d05ed7f047e520b244e5ab561:0", "status": "valid", - "tx_hash": "cfd9a40c7741775c65321b2673f86310bb1f15fc0bfb711b58cfe0ed5acf4d71", + "tx_hash": "4633b98d1cdcdf9894281c42618c8a24cde6e5320ae3bf134e896243465716d5", "tx_index": 74, - "block_time": 1733662753, + "block_time": 1733663948, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "issuer": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "cfd9a40c7741775c65321b2673f86310bb1f15fc0bfb711b58cfe0ed5acf4d71", + "tx_hash": "4633b98d1cdcdf9894281c42618c8a24cde6e5320ae3bf134e896243465716d5", "block_index": 198, - "block_time": 1733662753 + "block_time": 1733663948 } ], "unpacked_data": { @@ -4029,17 +4029,17 @@ Returns the list of the last ten transactions "result": [ { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", - "block_time": 1733662951, - "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", - "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_hash": "00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45", + "block_time": 1733664124, + "source": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", + "destination": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", + "utxos_info": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1 ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0 3 1", "transaction_type": "dispense", "events": [ { @@ -4048,26 +4048,26 @@ Returns the list of the last ten transactions "params": { "asset": "MYASSETA", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 0, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 925, @@ -4075,14 +4075,14 @@ Returns the list of the last ten transactions "params": { "asset": "XCP", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 1, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4092,9 +4092,9 @@ Returns the list of the last ten transactions }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 927, @@ -4103,9 +4103,9 @@ Returns the list of the last ten transactions "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": 0, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4115,9 +4115,9 @@ Returns the list of the last ten transactions }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 928, @@ -4126,14 +4126,14 @@ Returns the list of the last ten transactions "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4144,9 +4144,9 @@ Returns the list of the last ten transactions "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "unpacked_data": { @@ -4159,17 +4159,17 @@ Returns the list of the last ten transactions }, { "tx_index": 105, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "block_index": 232, - "block_hash": "5b934ef246230a877ae6d123edb3ed2e9e334e4e08e11d0d96617acbd2940927", - "block_time": 1733662942, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_hash": "3052aa47893addec70f3784c26325d7cdd6351d3f301dc5d70cd31602b00b9a6", + "block_time": 1733664114, + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8:1 2 0", + "utxos_info": " d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5:1 2 0", "transaction_type": "fairminter", "events": [ { @@ -4195,12 +4195,12 @@ Returns the list of the last ten transactions "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "start_block": 0, "status": "open", - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "tx_index": 105, - "block_time": 1733662942, + "block_time": 1733664114, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -4208,9 +4208,9 @@ Returns the list of the last ten transactions "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "block_index": 232, - "block_time": 1733662942 + "block_time": 1733664114 }, { "event_index": 910, @@ -4220,11 +4220,11 @@ Returns the list of the last ten transactions "asset_longname": null, "asset_name": "OPENFAIR", "block_index": 232, - "block_time": 1733662942 + "block_time": 1733664114 }, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "block_index": 232, - "block_time": 1733662942 + "block_time": 1733664114 }, { "event_index": 911, @@ -4241,22 +4241,22 @@ Returns the list of the last ten transactions "divisible": true, "fair_minting": true, "fee_paid": 50000000.0, - "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "issuer": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": "valid", "transfer": false, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "tx_index": 105, - "block_time": 1733662942, + "block_time": 1733664114, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "block_index": 232, - "block_time": 1733662942 + "block_time": 1733664114 } ], "unpacked_data": { @@ -4385,7 +4385,7 @@ Returns the count of each transaction type Returns Counterparty information from a raw transaction in hex format. + Parameters - + rawtransaction: `02000000000106799f8e97f7ac1576fd79057d81c71818eb79ec38be99555350cddcf84d96dfb20000000000ffffffff60400b16bf8d7717161813673d78b0fe4f50d988f62b2629c964461260f93f310000000000ffffffff5b7cf6ab95178b2526a85bff6788f98be4caa143471d933e8363162a3247077c0000000000fffffffffa97d472b475f0dd1745c5e70af11bd0ab56fb354bb5cc0e7699ce38802377650000000000ffffffffe3e15ea04b644d1d833088a5b0ee60a3bb4236b461ef3d865504e1949b1ba0670000000000ffffffffd54e558dd98b683037111a91f1843db7196bf06116d3530fd353c6a3bb959e5b0000000000ffffffff04e8030000000000006951210397128e37f2c839dd94b4d90c4f7df343238ca6543dd370eb16e93907f4fd030a2102ad03ec3302f2c2ed16edcdd6fda9de031a92f16e3c292cde49cf61d3ab2a8d002103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03353aee8030000000000006951210297128e37f2c839dd944db29c45ec6ef4d56c9b1b257c4991cbf598cd109c1ab32103e2dc6cc432b62f7327b0875ec4c7d68b0dbcc650e8a0693304d8c37978c404252103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03353aee80300000000000069512102b6128e37f2c839dd94b7d90fcfaf1391c0c02fe63b735dbaa0db10d41058ce742102e2dc6cc432b62f59320512eb780dd68b0dbcc650e8aaec5e61b5ac4af8c404d42103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03353ae387923fc06000000160014a0a90e6acc5b35a094a931d109e64b559674fb84024730440220216482cdae9c1635bc183d916fdc36c7efbbe593b5b6c87b386d7fc98ecd0f990220060319eacf6920b8c98b7ae1e1db5e64483764e2e8e27b4d739716f47bd508ee012103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c0330247304402202f1cfce226cd446a2c00d9e6da89eb4b2fb7c9aa6f20741845e98ec76be4582e022044e302fa7a26c9004f5f7674feda5497aa3e101a380e947fdbc23a08a893d06e012103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03302473044022005278a7b8c76c672f4f7f1c7af5c4dba5884adcfb8f7d00e22a36034e2fe89680220214c055c37265fea873a6c6c03e06c3546aa7f9d817a0c1ac8f0bdb9e6ebd5bc012103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c0330247304402201d11fa7da8a8a001a34bf71eb4b8ed43f558c1538464782f955120d728907a1b0220356d21ffbda65e06543a6500f7e015f3bbf08c29acbc204b9467b93c3d3bc1c9012103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033024730440220764f43fd27dca8eb357be67bfc4720ea6cfd61802866eb2640c0f3fbbb1f705202206c927f6c72222bf964122682a669bc3b30de078530cb1f443d21831bb87fce85012103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c0330247304402205b6744ccdca0ecc12b0ba2c8b4a6965507c328abcb89e07d13e0a76f0655fe6a02207c5200c79a7e87a01b5d20a8ecb18e3387922a47e246c18e9ec55e2e2d2c7608012103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03300000000` (str, required) - Raw transaction in hex format + + rawtransaction: `0200000000010630e64567bcaa54a14c5f0bfdbd6c16ae4659bec0463471d1beede6b6ed9fc95a0000000000ffffffff28b8f6b0cad77fadd68daa227c33c85ac40e874c8902b5ac2b7fe916badf7f830000000000ffffffff101e3ac483cc0be24b09fe41d094633dda3fd66451617ac32f265d94b78000230000000000ffffffff393d844a474b8bc6037ad7c225f96f15afe87d0224fa6788be52933598322ab70000000000ffffffffa966cb948741da7770f2afd485f04efec7d8fdcb4c579bc0d903b2e18dfd67260000000000ffffffff2754de0012f6fcd1a1ba171d9d3b9aeb23334b24994a7e676b0364aaa3033a820000000000ffffffff04e8030000000000006951210228a240b3e7e714122cf4cd39ab392fb3fdb5e2203c3d7e788e7815cfe12973e22102ddf27f28924017df810bbb92500586fabcfbd196a2eab343d87c9e1031027ac62103bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f4853aee8030000000000006951210228a240b3e7e714122ca7ff159b8910236b698ed9631f4a6f3aa3c74a5b3f20af210360b9ff0846f6d2b4d9d63e249e1df257a1fee0de8eca19c31209887f3d31ef052103bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f4853aee8030000000000006951210206a240b3e7e714122cf7cd7a2b170a5c9ae824a725e2c21b52c6e7273e524f752103e0b9ff038037c33d71d63e249e1df257f3fee0de8eca19c31849887f3d31efdb2103bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f4853ae387923fc0600000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb0247304402202543433afe81001ead2e111bb5897ee2932b24037ee96649cb44a81cd2d494a402205719dfa4690a952cb65dfc663ae2a92f1675b33de2843f1237322eefa57ad3bd012103bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f48024730440220115c85a48dc5ad1ac88c1c9fe5399e8a6fc3d2a56f23c14799f8487e6bf60d520220284be468b91c21667b0d8498ccccffca4d34d554bcdd4011506b6131cadad6c8012103bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f480247304402201c3c7f4e8126261e7ebcb62304e13d95b8c65da50becfc2407d88da5295c194d022032aaac2bd10f0f5fad968a4d9a5518b501b2e8be6c784221e80563f37f52fc5b012103bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f4802473044022059a097b7685bfacb7e9f199becf77b9027581babde7fc90ecb4b43ed37a26d3802206dadbc36e11af63bf93f2a7876dc24fdc90d46062daa38acf0e4cd49b720a848012103bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f480247304402206fcd3afd40d071848b41313f430e796aa28198e5e57112ea51969c73c0efa92b02206b595da2f268431cfc1468e886922382968994323cd4ae21d96c32bfe5b7c2ec012103bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f48024730440220613e0e062f87eec5e4864f2b6a1dbe2e77296503a7e5430f3228a09a7792ff3e0220336c765f1347747cd3419a514ad5fa486628600e71048c70bc3d912263913363012103bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f4800000000` (str, required) - Raw transaction in hex format + block_index (int, optional) - Block index mandatory for transactions before block 335000 + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -4396,53 +4396,53 @@ Returns Counterparty information from a raw transaction in hex format. ``` { "result": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d260d2e34c89b206a0797add1942aa6ca5cd4fdf80f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003802e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa80c035166f0c339550322fb09e1a7ff181aa5646fd88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "799f8e97f7ac1576fd79057d81c71818eb79ec38be99555350cddcf84d96dfb2", + "hash": "30e64567bcaa54a14c5f0bfdbd6c16ae4659bec0463471d1beede6b6ed9fc95a", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "60400b16bf8d7717161813673d78b0fe4f50d988f62b2629c964461260f93f31", + "hash": "28b8f6b0cad77fadd68daa227c33c85ac40e874c8902b5ac2b7fe916badf7f83", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "5b7cf6ab95178b2526a85bff6788f98be4caa143471d933e8363162a3247077c", + "hash": "101e3ac483cc0be24b09fe41d094633dda3fd66451617ac32f265d94b7800023", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "fa97d472b475f0dd1745c5e70af11bd0ab56fb354bb5cc0e7699ce3880237765", + "hash": "393d844a474b8bc6037ad7c225f96f15afe87d0224fa6788be52933598322ab7", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "e3e15ea04b644d1d833088a5b0ee60a3bb4236b461ef3d865504e1949b1ba067", + "hash": "a966cb948741da7770f2afd485f04efec7d8fdcb4c579bc0d903b2e18dfd6726", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "d54e558dd98b683037111a91f1843db7196bf06116d3530fd353c6a3bb959e5b", + "hash": "2754de0012f6fcd1a1ba171d9d3b9aeb23334b24994a7e676b0364aaa3033a82", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -4452,50 +4452,50 @@ Returns Counterparty information from a raw transaction in hex format. "vout": [ { "value": 1000, - "script_pub_key": "51210397128e37f2c839dd94b4d90c4f7df343238ca6543dd370eb16e93907f4fd030a2102ad03ec3302f2c2ed16edcdd6fda9de031a92f16e3c292cde49cf61d3ab2a8d002103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03353ae" + "script_pub_key": "51210228a240b3e7e714122cf4cd39ab392fb3fdb5e2203c3d7e788e7815cfe12973e22102ddf27f28924017df810bbb92500586fabcfbd196a2eab343d87c9e1031027ac62103bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f4853ae" }, { "value": 1000, - "script_pub_key": "51210297128e37f2c839dd944db29c45ec6ef4d56c9b1b257c4991cbf598cd109c1ab32103e2dc6cc432b62f7327b0875ec4c7d68b0dbcc650e8a0693304d8c37978c404252103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03353ae" + "script_pub_key": "51210228a240b3e7e714122ca7ff159b8910236b698ed9631f4a6f3aa3c74a5b3f20af210360b9ff0846f6d2b4d9d63e249e1df257a1fee0de8eca19c31209887f3d31ef052103bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f4853ae" }, { "value": 1000, - "script_pub_key": "512102b6128e37f2c839dd94b7d90fcfaf1391c0c02fe63b735dbaa0db10d41058ce742102e2dc6cc432b62f59320512eb780dd68b0dbcc650e8aaec5e61b5ac4af8c404d42103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03353ae" + "script_pub_key": "51210206a240b3e7e714122cf7cd7a2b170a5c9ae824a725e2c21b52c6e7273e524f752103e0b9ff038037c33d71d63e249e1df257f3fee0de8eca19c31849887f3d31efdb2103bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f4853ae" }, { "value": 29999987000, - "script_pub_key": "0014a0a90e6acc5b35a094a931d109e64b559674fb84" + "script_pub_key": "001455a1c1bd309c3761f38e46de17c86a78cf853fbb" } ], "vtxinwit": [ [ - "30440220216482cdae9c1635bc183d916fdc36c7efbbe593b5b6c87b386d7fc98ecd0f990220060319eacf6920b8c98b7ae1e1db5e64483764e2e8e27b4d739716f47bd508ee01", - "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" + "304402202543433afe81001ead2e111bb5897ee2932b24037ee96649cb44a81cd2d494a402205719dfa4690a952cb65dfc663ae2a92f1675b33de2843f1237322eefa57ad3bd01", + "03bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f48" ], [ - "304402202f1cfce226cd446a2c00d9e6da89eb4b2fb7c9aa6f20741845e98ec76be4582e022044e302fa7a26c9004f5f7674feda5497aa3e101a380e947fdbc23a08a893d06e01", - "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" + "30440220115c85a48dc5ad1ac88c1c9fe5399e8a6fc3d2a56f23c14799f8487e6bf60d520220284be468b91c21667b0d8498ccccffca4d34d554bcdd4011506b6131cadad6c801", + "03bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f48" ], [ - "3044022005278a7b8c76c672f4f7f1c7af5c4dba5884adcfb8f7d00e22a36034e2fe89680220214c055c37265fea873a6c6c03e06c3546aa7f9d817a0c1ac8f0bdb9e6ebd5bc01", - "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" + "304402201c3c7f4e8126261e7ebcb62304e13d95b8c65da50becfc2407d88da5295c194d022032aaac2bd10f0f5fad968a4d9a5518b501b2e8be6c784221e80563f37f52fc5b01", + "03bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f48" ], [ - "304402201d11fa7da8a8a001a34bf71eb4b8ed43f558c1538464782f955120d728907a1b0220356d21ffbda65e06543a6500f7e015f3bbf08c29acbc204b9467b93c3d3bc1c901", - "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" + "3044022059a097b7685bfacb7e9f199becf77b9027581babde7fc90ecb4b43ed37a26d3802206dadbc36e11af63bf93f2a7876dc24fdc90d46062daa38acf0e4cd49b720a84801", + "03bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f48" ], [ - "30440220764f43fd27dca8eb357be67bfc4720ea6cfd61802866eb2640c0f3fbbb1f705202206c927f6c72222bf964122682a669bc3b30de078530cb1f443d21831bb87fce8501", - "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" + "304402206fcd3afd40d071848b41313f430e796aa28198e5e57112ea51969c73c0efa92b02206b595da2f268431cfc1468e886922382968994323cd4ae21d96c32bfe5b7c2ec01", + "03bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f48" ], [ - "304402205b6744ccdca0ecc12b0ba2c8b4a6965507c328abcb89e07d13e0a76f0655fe6a02207c5200c79a7e87a01b5d20a8ecb18e3387922a47e246c18e9ec55e2e2d2c760801", - "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" + "30440220613e0e062f87eec5e4864f2b6a1dbe2e77296503a7e5430f3228a09a7792ff3e0220336c765f1347747cd3419a514ad5fa486628600e71048c70bc3d91226391336301", + "03bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f48" ] ], "lock_time": 0, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", - "tx_id": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab" + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", + "tx_id": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd" }, "unpacked_data": { "message_type": "mpma_send", @@ -4503,14 +4503,14 @@ Returns Counterparty information from a raw transaction in hex format. "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "quantity": 10, - "memo": "memo2", + "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -4518,9 +4518,9 @@ Returns Counterparty information from a raw transaction in hex format. }, { "asset": "XCP", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "quantity": 10, - "memo": "memo1", + "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, @@ -4543,7 +4543,7 @@ Returns Counterparty information from a raw transaction in hex format. Returns Counterparty information from a transaction hash. + Parameters - + tx_hash: `f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf` (str, required) - Transaction hash + + tx_hash: `bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9` (str, required) - Transaction hash + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -4552,18 +4552,18 @@ Returns Counterparty information from a transaction hash. ``` { "result": { - "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080f73044edb424e8df3d85a40888172e373ed483c0", + "data": "0200000000000000010000000000002710802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "002f40bdbe04cb71270828b3bd36a42730fe49089bc95f262b95834124b9463b", + "hash": "973ab27bcaf03578bf31a937fe55734b84798c100afca34ad4bfdbf43669dced", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -4573,22 +4573,22 @@ Returns Counterparty information from a transaction hash. "vout": [ { "value": 0, - "script_pub_key": "6a2e0d3783d1420c0f9a2161d03e6e1a07fffe253f36576d8cea8dd5e795dda625acc0c60a786218ae94ac1adb38184a" + "script_pub_key": "6a2ea53f09e174999469f0cbc5fe140fa79e1dfcfbdc723a13c82b602272e99bfe732611bebf23831ab2fe6abf534295" }, { "value": 4949940000, - "script_pub_key": "0014287acd9953ee89fa6b938a43fd6515acb4fd1e0f" + "script_pub_key": "0014c035166f0c339550322fb09e1a7ff181aa5646fd" } ], "vtxinwit": [ [ - "304402201944e806dd31809c8cea0f60894ad434b062224d3e68282275203c4af83465ad022069f435c39488f541a9d6cd663ed29fe02a3aaa8c37ba50982e39751ab2381ba701", - "030fc8286999a5759d9096b4f3d4f6c0377e40a1cf68bfa63856e63bd06bc878a5" + "30440220542d65a07ef7624ddea7b4124f2daf158b82d20a9059b9f15dbfb62d807963da02202909fc82cb23f2733229e12128941d4e3cba8873db3ce8bb853b78936bdd05fc01", + "036a4485b1e6e897bca4e402ae75ceaf5b1c6b8036f0ca682a22efe7ad825ebbdf" ] ], "lock_time": 0, - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", - "tx_id": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf" + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", + "tx_id": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9" }, "unpacked_data": { "message_type": "enhanced_send", @@ -4596,7 +4596,7 @@ Returns Counterparty information from a transaction hash. "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "memo": null, "asset_info": { "asset_longname": null, @@ -4653,17 +4653,17 @@ Returns a transaction by its index. { "result": { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", - "block_time": 1733662951, - "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", - "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_hash": "00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45", + "block_time": 1733664124, + "source": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", + "destination": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", + "utxos_info": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1 ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0 3 1", "transaction_type": "dispense", "events": [ { @@ -4672,26 +4672,26 @@ Returns a transaction by its index. "params": { "asset": "MYASSETA", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 0, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 925, @@ -4699,14 +4699,14 @@ Returns a transaction by its index. "params": { "asset": "XCP", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 1, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4716,9 +4716,9 @@ Returns a transaction by its index. }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 927, @@ -4727,9 +4727,9 @@ Returns a transaction by its index. "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": 0, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4739,9 +4739,9 @@ Returns a transaction by its index. }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 928, @@ -4750,14 +4750,14 @@ Returns a transaction by its index. "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4768,9 +4768,9 @@ Returns a transaction by its index. "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "unpacked_data": { @@ -4789,7 +4789,7 @@ Returns a transaction by its index. Returns a transaction by its hash. + Parameters - + tx_hash: `24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b` (str, required) - The hash of the transaction + + tx_hash: `ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f` (str, required) - The hash of the transaction + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -4799,17 +4799,17 @@ Returns a transaction by its hash. { "result": { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", - "block_time": 1733662951, - "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", - "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_hash": "00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45", + "block_time": 1733664124, + "source": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", + "destination": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", + "utxos_info": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1 ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0 3 1", "transaction_type": "dispense", "events": [ { @@ -4818,26 +4818,26 @@ Returns a transaction by its hash. "params": { "asset": "MYASSETA", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 0, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 925, @@ -4845,14 +4845,14 @@ Returns a transaction by its hash. "params": { "asset": "XCP", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 1, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4862,9 +4862,9 @@ Returns a transaction by its hash. }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 927, @@ -4873,9 +4873,9 @@ Returns a transaction by its hash. "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": 0, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4885,9 +4885,9 @@ Returns a transaction by its hash. }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 928, @@ -4896,14 +4896,14 @@ Returns a transaction by its hash. "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4914,9 +4914,9 @@ Returns a transaction by its hash. "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "unpacked_data": { @@ -4957,12 +4957,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106 }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 928, @@ -4971,14 +4971,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4989,9 +4989,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 927, @@ -5000,9 +5000,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": 0, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5012,24 +5012,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5039,9 +5039,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 925, @@ -5049,14 +5049,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 1, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5066,9 +5066,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 924, @@ -5081,7 +5081,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b` (str, required) - The hash of the transaction to return + + tx_hash: `ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `930` (str, optional) - The last event index to return @@ -5103,12 +5103,12 @@ Returns the events of a transaction "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106 }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 928, @@ -5117,14 +5117,14 @@ Returns the events of a transaction "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5135,9 +5135,9 @@ Returns the events of a transaction "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 927, @@ -5146,9 +5146,9 @@ Returns the events of a transaction "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": 0, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5158,24 +5158,24 @@ Returns the events of a transaction }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5185,9 +5185,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 925, @@ -5195,14 +5195,14 @@ Returns the events of a transaction "params": { "asset": "XCP", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 1, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5212,9 +5212,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 924, @@ -5227,7 +5227,7 @@ Returns the events of a transaction Returns the sends, include Enhanced and MPMA sends, of a block + Parameters - + tx_hash: `24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b` (str, required) - The hash of the transaction to return + + tx_hash: `ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f` (str, required) - The hash of the transaction to return + send_type (enum[str], optional) - The type of the send to return + Default: `all` + Members @@ -5252,17 +5252,17 @@ Returns the sends, include Enhanced and MPMA sends, of a block "result": [ { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5275,21 +5275,21 @@ Returns the sends, include Enhanced and MPMA sends, of a block }, { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -5307,7 +5307,7 @@ Returns the sends, include Enhanced and MPMA sends, of a block Returns the dispenses of a block + Parameters - + tx_hash: `24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b` (str, required) - The hash of the transaction to return + + tx_hash: `ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f` (str, required) - The hash of the transaction to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -5325,26 +5325,26 @@ Returns the dispenses of a block { "tx_index": 106, "dispense_index": 0, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "btc_amount": 1000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "oracle_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "last_status_tx_hash": null, - "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "origin": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -5359,7 +5359,7 @@ Returns the dispenses of a block "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5401,16 +5401,16 @@ Returns the events of a transaction "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5420,9 +5420,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 924, @@ -5432,12 +5432,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 234, "calling_function": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 2000000000, "tx_index": 106, - "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662951, + "utxo": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5447,9 +5447,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 921, @@ -5459,24 +5459,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 234, "calling_function": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 2000000000, "tx_index": 106, - "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662951, + "utxo": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": null, @@ -5489,7 +5489,7 @@ Returns the events of a transaction Returns the events of a transaction + Parameters - + tx_hash: `24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b` (str, required) - The hash of the transaction to return + + tx_hash: `ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f` (str, required) - The hash of the transaction to return + event: `CREDIT` (str, required) - The event to filter by + cursor: `930` (str, optional) - The last event index to return + Default: `None` @@ -5509,16 +5509,16 @@ Returns the events of a transaction "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5528,9 +5528,9 @@ Returns the events of a transaction }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 924, @@ -5540,12 +5540,12 @@ Returns the events of a transaction "asset": "XCP", "block_index": 234, "calling_function": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 2000000000, "tx_index": 106, - "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662951, + "utxo": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5555,9 +5555,9 @@ Returns the events of a transaction }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 921, @@ -5567,24 +5567,24 @@ Returns the events of a transaction "asset": "MYASSETA", "block_index": 234, "calling_function": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 2000000000, "tx_index": 106, - "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662951, + "utxo": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": null, @@ -5599,7 +5599,7 @@ Returns the events of a transaction Returns the balances of several addresses + Parameters - + addresses: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla,bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - Comma separated list of addresses + + addresses: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z,bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl` (str, required) - Comma separated list of addresses + type (enum[str], optional) - The type of balances to return + Default: `all` + Members @@ -5628,7 +5628,7 @@ Returns the balances of several addresses "total": 100000000000, "addresses": [ { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -5638,7 +5638,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -5650,7 +5650,7 @@ Returns the balances of several addresses "total": 500000000, "addresses": [ { - "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -5660,7 +5660,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -5672,7 +5672,7 @@ Returns the balances of several addresses "total": 180, "addresses": [ { - "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "utxo": null, "utxo_address": null, "quantity": 180, @@ -5682,7 +5682,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -5694,7 +5694,7 @@ Returns the balances of several addresses "total": 40, "addresses": [ { - "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "utxo": null, "utxo_address": null, "quantity": 40, @@ -5704,7 +5704,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -5716,7 +5716,7 @@ Returns the balances of several addresses "total": 19, "addresses": [ { - "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "utxo": null, "utxo_address": null, "quantity": 19, @@ -5726,7 +5726,7 @@ Returns the balances of several addresses "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -5743,7 +5743,7 @@ Returns the balances of several addresses Returns the transactions of a list of addresses + Parameters - + addresses: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla,bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z,bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl` (str, required) - Comma separated list of addresses to return + type (enum[str], optional) - The type of the transaction to return + Default: `all` + Members @@ -5786,17 +5786,17 @@ Returns the transactions of a list of addresses "result": [ { "tx_index": 81, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_hash": "662c168d8674e444aa102dfae48120064c0f87a9a881dcd17c07cae9ab69839a", - "block_time": 1733662789, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "block_hash": "4da269e5df643f16d5f6a21901a775707b5c7421e91b503d5a30d1d37fc51558", + "block_time": 1733663983, + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a0a90e6acc5b35a094a931d109e64b559674fb8480f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038055a1c1bd309c3761f38e46de17c86a78cf853fbb802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa80c035166f0c339550322fb09e1a7ff181aa5646fd88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf:0 4 ", + "utxos_info": " e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993:0 4 ", "transaction_type": "mpma", "events": [ { @@ -5804,24 +5804,24 @@ Returns the transactions of a list of addresses "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8" + "tx_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55" }, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_time": 1733662789 + "block_time": 1733663983 }, { "event_index": 705, "event": "ORDER_EXPIRATION", "params": { "block_index": 205, - "order_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", - "block_time": 1733662789 + "order_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", + "block_time": 1733663983 }, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_time": 1733662789 + "block_time": 1733663983 }, { "event_index": 711, @@ -5829,27 +5829,27 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "memo": "the memo", "msg_index": 0, "quantity": 10, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "tx_index": 81, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_time": 1733662789 + "block_time": 1733663983 }, { "event_index": 712, @@ -5857,27 +5857,27 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "tx_index": 81, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_time": 1733662789 + "block_time": 1733663983 }, { "event_index": 713, @@ -5885,15 +5885,15 @@ Returns the transactions of a list of addresses "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "tx_index": 81, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5903,9 +5903,9 @@ Returns the transactions of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_time": 1733662789 + "block_time": 1733663983 } ], "unpacked_data": { @@ -5914,14 +5914,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "quantity": 10, "memo": "the memo", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "quantity": 10, "memo": "memo1", "memo_is_hex": false @@ -5931,30 +5931,30 @@ Returns the transactions of a list of addresses }, { "tx_index": 80, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "block_hash": "31c2a66bb4ad76bc8c708308bfcef980d21165fb8136cf83b22bc1a4a95d61b6", - "block_time": 1733662785, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "block_hash": "464f38539e9d419864391e203c8bbcf823f8f049ba7ee51993d84d8b7c3baa65", + "block_time": 1733663979, + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a0a90e6acc5b35a094a931d109e64b559674fb8480f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0fc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038055a1c1bd309c3761f38e46de17c86a78cf853fbb802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa80c035166f0c339550322fb09e1a7ff181aa5646fdc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4:0 4 ", + "utxos_info": " 3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7:0 4 ", "transaction_type": "mpma", "events": [ { "event_index": 685, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "order_match_id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "status": "expired" }, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "block_time": 1733662785 + "block_time": 1733663979 }, { "event_index": 687, @@ -5964,26 +5964,26 @@ Returns the transactions of a list of addresses "get_remaining": 3000, "give_remaining": 3000, "status": "open", - "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "fee_required_remaining_normalized": "0.00000000" }, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "block_time": 1733662785 + "block_time": 1733663979 }, { "event_index": 688, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 204, - "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", - "block_time": 1733662785 + "order_match_id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "tx1_address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", + "block_time": 1733663979 }, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "block_time": 1733662785 + "block_time": 1733663979 }, { "event_index": 689, @@ -5994,13 +5994,13 @@ Returns the transactions of a list of addresses "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "tx_hash": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "block_time": 1733662785 + "block_time": 1733663979 }, { "event_index": 690, @@ -6011,13 +6011,13 @@ Returns the transactions of a list of addresses "get_remaining": 2000, "give_remaining": 2000, "status": "open", - "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "block_time": 1733662785 + "block_time": 1733663979 }, { "event_index": 691, @@ -6029,20 +6029,20 @@ Returns the transactions of a list of addresses "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "id": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "match_expire_index": 224, "status": "pending", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx0_block_index": 189, "tx0_expiration": 21, - "tx0_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "tx0_hash": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", "tx0_index": 64, - "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "tx1_address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "tx1_block_index": 204, "tx1_expiration": 21, - "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx1_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "tx1_index": 58, - "block_time": 1733662785, + "block_time": 1733663979, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6061,9 +6061,9 @@ Returns the transactions of a list of addresses "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "block_time": 1733662785 + "block_time": 1733663979 }, { "event_index": 697, @@ -6071,27 +6071,27 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "memo": "746865206d656d6f", "msg_index": 0, "quantity": 10, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "tx_index": 80, - "block_time": 1733662785, + "block_time": 1733663979, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "block_time": 1733662785 + "block_time": 1733663979 }, { "event_index": 698, @@ -6099,27 +6099,27 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "memo": "746865206d656d6f", "msg_index": 1, "quantity": 10, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "tx_index": 80, - "block_time": 1733662785, + "block_time": 1733663979, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "block_time": 1733662785 + "block_time": 1733663979 }, { "event_index": 699, @@ -6127,15 +6127,15 @@ Returns the transactions of a list of addresses "params": { "asset": "XCP", "block_index": 204, - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "memo": "746865206d656d6f", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "tx_index": 80, - "block_time": 1733662785, + "block_time": 1733663979, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6145,9 +6145,9 @@ Returns the transactions of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "block_time": 1733662785 + "block_time": 1733663979 } ], "unpacked_data": { @@ -6156,14 +6156,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true }, { "asset": "XCP", - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true @@ -6173,17 +6173,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 79, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "block_hash": "0de537875466fcabb29014860060168e58d39d6640e6be78625455093e5557db", - "block_time": 1733662781, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_hash": "27b7ed239faada74794cabc6bf3773aab04cf81db1ab8933c4079f7e9648cd84", + "block_time": 1733663976, + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d260d2e34c89b206a0797add1942aa6ca5cd4fdf80f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003802e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa80c035166f0c339550322fb09e1a7ff181aa5646fd40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab:0 4 ", + "utxos_info": " fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0:0 4 ", "transaction_type": "mpma", "events": [ { @@ -6192,27 +6192,27 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "memo": "memo2", "msg_index": 0, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "tx_index": 79, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "block_time": 1733662781 + "block_time": 1733663976 }, { "event_index": 679, @@ -6220,27 +6220,27 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "tx_index": 79, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "block_time": 1733662781 + "block_time": 1733663976 }, { "event_index": 680, @@ -6248,15 +6248,15 @@ Returns the transactions of a list of addresses "params": { "asset": "XCP", "block_index": 203, - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "tx_index": 79, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6266,9 +6266,9 @@ Returns the transactions of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "block_time": 1733662781 + "block_time": 1733663976 } ], "unpacked_data": { @@ -6277,14 +6277,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "quantity": 10, "memo": "memo2", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "quantity": 10, "memo": "memo1", "memo_is_hex": false @@ -6294,17 +6294,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 78, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_hash": "592b0db0b71afdbe18b1fc5432bbfde15ca979682f0055e3e62c2d56161c659b", - "block_time": 1733662777, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_hash": "74bb75075b8ee6db1ca89241b13253330e8780effe1396da8e92cfe290215430", + "block_time": 1733663962, + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d260d2e34c89b206a0797add1942aa6ca5cd4fdf80f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003802e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa80c035166f0c339550322fb09e1a7ff181aa5646fd88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe:0 4 ", + "utxos_info": " d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd:0 4 ", "transaction_type": "mpma", "events": [ { @@ -6312,24 +6312,24 @@ Returns the transactions of a list of addresses "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29" + "tx_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803" }, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_time": 1733662777 + "block_time": 1733663962 }, { "event_index": 660, "event": "ORDER_EXPIRATION", "params": { "block_index": 202, - "order_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "block_time": 1733662777 + "order_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "block_time": 1733663962 }, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_time": 1733662777 + "block_time": 1733663962 }, { "event_index": 666, @@ -6337,27 +6337,27 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "memo": "the memo", "msg_index": 0, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "tx_index": 78, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_time": 1733662777 + "block_time": 1733663962 }, { "event_index": 667, @@ -6365,27 +6365,27 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "memo": "the memo", "msg_index": 1, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "tx_index": 78, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_time": 1733662777 + "block_time": 1733663962 }, { "event_index": 668, @@ -6393,15 +6393,15 @@ Returns the transactions of a list of addresses "params": { "asset": "XCP", "block_index": 202, - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "memo": "the memo", "msg_index": 2, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "tx_index": 78, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6411,9 +6411,9 @@ Returns the transactions of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_time": 1733662777 + "block_time": 1733663962 } ], "unpacked_data": { @@ -6422,14 +6422,14 @@ Returns the transactions of a list of addresses "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "quantity": 10, "memo": "the memo", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "quantity": 10, "memo": "the memo", "memo_is_hex": false @@ -6439,17 +6439,17 @@ Returns the transactions of a list of addresses }, { "tx_index": 77, - "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", + "tx_hash": "dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66", "block_index": 201, - "block_hash": "10801583bacc821606b117a03aa3d8edc91e8b6c864a3f72a6dfac845ed9f0a6", - "block_time": 1733662764, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_hash": "1d373b1daa975404c2f43e18164dac89ddef98c8671263b2361aa95138ab20e7", + "block_time": 1733663958, + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d260d2e34c89b206a0797add1942aa6ca5cd4fdf", + "data": "02000000178d82231300000000000003e8802e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b", "supported": true, - "utxos_info": " ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6:1 2 0", + "utxos_info": " dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66:1 2 0", "transaction_type": "enhanced_send", "events": [ { @@ -6458,26 +6458,26 @@ Returns the transactions of a list of addresses "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "memo": null, "quantity": 1000, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", + "tx_hash": "dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66", "tx_index": 77, - "block_time": 1733662764, + "block_time": 1733663958, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", + "tx_hash": "dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66", "block_index": 201, - "block_time": 1733662764 + "block_time": 1733663958 } ], "unpacked_data": { @@ -6486,7 +6486,7 @@ Returns the transactions of a list of addresses "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "memo": null } } @@ -6502,7 +6502,7 @@ Returns the transactions of a list of addresses Returns the events of a list of addresses + Parameters - + addresses: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla,bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z,bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl` (str, required) - Comma separated list of addresses to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor: `930` (str, optional) - The last event index to return @@ -6524,29 +6524,29 @@ Returns the events of a list of addresses "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", - "block_time": 1733662907 + "order_match_id": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "tx1_address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", + "block_time": 1733664086 }, - "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", + "tx_hash": "63c244c2e46947aec961ae8798f3dfec0a61e6bd08f81aae44f51f68344844d5", "block_index": 225, - "block_time": 1733662907 + "block_time": 1733664086 }, { "event_index": 860, "event": "CREDIT", "params": { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "event": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733662907, + "block_time": 1733664086, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6556,37 +6556,37 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00001000" }, - "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", + "tx_hash": "63c244c2e46947aec961ae8798f3dfec0a61e6bd08f81aae44f51f68344844d5", "block_index": 225, - "block_time": 1733662907 + "block_time": 1733664086 }, { "event_index": 758, "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "block_time": 1733662819 + "order_hash": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "block_time": 1733664025 }, - "tx_hash": "816df0c34171151d8c1947707f1c924dc6988f829038e9f0709bb2b7ab206acc", + "tx_hash": "4fdf78335a98077540fddc780efe3c1edc802b6367282daac69677eed5c92467", "block_index": 211, - "block_time": 1733662819 + "block_time": 1733664025 }, { "event_index": 757, "event": "CREDIT", "params": { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "block_index": 211, "calling_function": "cancel order", - "event": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "event": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", "quantity": 0, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733662819, + "block_time": 1733664025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6596,9 +6596,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000000" }, - "tx_hash": "816df0c34171151d8c1947707f1c924dc6988f829038e9f0709bb2b7ab206acc", + "tx_hash": "4fdf78335a98077540fddc780efe3c1edc802b6367282daac69677eed5c92467", "block_index": 211, - "block_time": 1733662819 + "block_time": 1733664025 }, { "event_index": 713, @@ -6606,15 +6606,15 @@ Returns the events of a list of addresses "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "tx_index": 81, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6624,9 +6624,9 @@ Returns the events of a list of addresses }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_time": 1733662789 + "block_time": 1733663983 } ], "next_cursor": 713, @@ -6639,7 +6639,7 @@ Returns the events of a list of addresses Returns the mempool events of a list of addresses + Parameters - + addresses: `bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9,bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g` (str, required) - Comma separated list of addresses to return + + addresses: `bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7,bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy` (str, required) - Comma separated list of addresses to return + cursor (str, optional) - The last event index to return + Default: `None` + limit: `5` (int, optional) - The maximum number of events to return @@ -6653,17 +6653,17 @@ Returns the mempool events of a list of addresses { "result": [ { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "memo": null, "quantity": 10000, - "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "status": "valid", - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "tx_index": 107, "asset_info": { "asset_longname": null, @@ -6674,22 +6674,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "CREDIT", "params": { - "address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "asset": "XCP", "block_index": 234, "calling_function": "send", - "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "event": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6699,22 +6699,22 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "address": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "asset": "XCP", "block_index": 234, - "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "event": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6724,27 +6724,27 @@ Returns the mempool events of a list of addresses }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1733662956.0412934, + "block_time": 1733664127.5138223, "btc_amount": 0, - "data": "020000000000000001000000000000271080f73044edb424e8df3d85a40888172e373ed483c0", + "data": "0200000000000000010000000000002710802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa", "destination": "", "fee": 10000, - "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "transaction_type": "enhanced_send", - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "tx_index": 107, - "utxos_info": " f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf:1 2 0", + "utxos_info": " bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9:1 2 0", "btc_amount_normalized": "0.00000000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 } ], "next_cursor": null, @@ -6757,7 +6757,7 @@ Returns the mempool events of a list of addresses Returns the balances of an address + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address to return + type (enum[str], optional) - The type of balances to return + Default: `` + Members @@ -6781,7 +6781,7 @@ Returns the balances of an address { "result": [ { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "A95428956980101314", "asset_longname": null, "quantity": 100000000000, @@ -6790,14 +6790,14 @@ Returns the balances of an address "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "MPMASSET", "asset_longname": null, "quantity": 99999998960, @@ -6806,14 +6806,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "999.99998960" }, { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "MYASSETA", "asset_longname": null, "quantity": 97999999980, @@ -6822,14 +6822,14 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "979.99999980" }, { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "asset_longname": null, "quantity": 82599966196, @@ -6845,7 +6845,7 @@ Returns the balances of an address "quantity_normalized": "825.99966196" }, { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "TESTLOCKDESC", "asset_longname": null, "quantity": 9999990000, @@ -6854,7 +6854,7 @@ Returns the balances of an address "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -6871,7 +6871,7 @@ Returns the balances of an address Returns the balances of an address and asset + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (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` @@ -6894,7 +6894,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "asset_longname": null, "quantity": 82599966196, @@ -6920,7 +6920,7 @@ Returns the balances of an address and asset Returns the credits of an address + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -6968,15 +6968,15 @@ Returns the credits of an address "result": [ { "block_index": 225, - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 1000, "calling_function": "order expired", - "event": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "event": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733662907, + "block_time": 1733664086, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6988,15 +6988,15 @@ Returns the credits of an address }, { "block_index": 205, - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "event": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7008,15 +7008,15 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "event": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1733662785, + "block_time": 1733663979, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7028,15 +7028,15 @@ Returns the credits of an address }, { "block_index": 204, - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "event": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733662785, + "block_time": 1733663979, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7048,15 +7048,15 @@ Returns the credits of an address }, { "block_index": 202, - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "event": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7077,7 +7077,7 @@ Returns the credits of an address Returns the debits of an address + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address to return + action (enum[str], optional) - The action to filter by + Default: `None` + Members @@ -7114,15 +7114,15 @@ Returns the debits of an address "result": [ { "block_index": 203, - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "event": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7134,19 +7134,19 @@ Returns the debits of an address }, { "block_index": 203, - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "event": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -7154,15 +7154,15 @@ Returns the debits of an address }, { "block_index": 202, - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "event": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7174,19 +7174,19 @@ Returns the debits of an address }, { "block_index": 202, - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "event": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -7194,19 +7194,19 @@ Returns the debits of an address }, { "block_index": 201, - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", + "event": "dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66", "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1733662764, + "block_time": 1733663958, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -7223,7 +7223,7 @@ Returns the debits of an address Returns the bets of a feed + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address of the feed + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address of the feed + status: `filled` (enum[str], optional) - The status of the bet + Default: `open` + Members @@ -7256,7 +7256,7 @@ Returns the bets of a feed Returns the broadcasts of a source + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address to return + cursor (str, optional) - The last index of the broadcasts to return + Default: `None` + limit: `5` (int, optional) - The maximum number of broadcasts to return @@ -7273,16 +7273,16 @@ Returns the broadcasts of a source "result": [ { "tx_index": 24, - "tx_hash": "3241987309692b6707b4651f9f2a8e60f491efb1911cae2686f47ae12966e8f1", + "tx_hash": "c262dac35899eebabf2318179d4a8a961dd6559352d33589e7edbd5323b52320", "block_index": 128, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, "text": "Hello, world!", "locked": false, "status": "valid", - "block_time": 1733662470, + "block_time": 1733663630, "fee_fraction_int_normalized": "0.00000000" } ], @@ -7296,7 +7296,7 @@ Returns the broadcasts of a source Returns the burns of an address + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address to return + cursor (str, optional) - The last index of the burns to return + Default: `None` + limit: `5` (int, optional) - The maximum number of burns to return @@ -7312,14 +7312,14 @@ Returns the burns of an address { "result": [ { - "tx_index": 5, - "tx_hash": "87bf46153fabbf44f202f0538ee531356e5ce77768e094ec9859b5a11380c959", + "tx_index": 2, + "tx_hash": "5d1103e10a744a25f95d0ef649fb7b57d41783a171863813bccc60ae77880e29", "block_index": 112, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733662402, + "block_time": 1733663559, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" } @@ -7334,7 +7334,7 @@ Returns the burns of an address Returns the sends, include Enhanced and MPMA sends, of an address + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address to return + send_type (enum[str], optional) - The type of sends to return + Default: `all` + Members @@ -7359,17 +7359,17 @@ Returns the sends, include Enhanced and MPMA sends, of an address "result": [ { "tx_index": 79, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "memo1", "fee_paid": 0, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7382,21 +7382,21 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 1, "memo": "memo3", "fee_paid": 0, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -7405,21 +7405,21 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 79, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 0, "memo": "memo2", "fee_paid": 0, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -7428,17 +7428,17 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 78, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "the memo", "fee_paid": 0, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7451,21 +7451,21 @@ Returns the sends, include Enhanced and MPMA sends, of an address }, { "tx_index": 78, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 1, "memo": "the memo", "fee_paid": 0, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -7483,7 +7483,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address Returns the receives of an address + Parameters - + address: `bcrt1qcg7s7t5nr4edjh4znztk65wcrp3quf3h8ky2le` (str, required) - The address to return + + address: `bcrt1qf6h255qf77vgyg4exfe33z83e8dntf3rv2euq6` (str, required) - The address to return + send_type (enum[str], optional) - The type of sends to return + Default: `all` + Members @@ -7508,21 +7508,21 @@ Returns the receives of an address "result": [ { "tx_index": 38, - "tx_hash": "d566733813ff14d927b500e4d3c53d459f80cf6147bde7b6bab0bf07548d5d2b", + "tx_hash": "d735e5491caa35cfaa35b9cd2c195362ef1e6a01576531a3f2296d3b3d669826", "block_index": 142, - "source": "eff988c400c90aba10b2dd3e2e1d5e3236a9917793fb5973f7323d76d6c6c545:0", - "destination": "bcrt1qcg7s7t5nr4edjh4znztk65wcrp3quf3h8ky2le", + "source": "0d6a4f5085c37bb316aafed57b87cd2756fb8e1efe09214db57bd045bdcc103f:0", + "destination": "bcrt1qf6h255qf77vgyg4exfe33z83e8dntf3rv2euq6", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, - "block_time": 1733662521, + "block_time": 1733663697, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -7540,7 +7540,7 @@ Returns the receives of an address Returns the sends, include Enhanced and MPMA sends, of an address and asset + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address to return + asset: `FAIRMINTC` (str, required) - The asset to return + send_type (enum[str], optional) - The type of sends to return + Default: `all` @@ -7574,7 +7574,7 @@ Returns the sends, include Enhanced and MPMA sends, of an address and asset Returns the receives of an address and asset + Parameters - + address: `bcrt1qcg7s7t5nr4edjh4znztk65wcrp3quf3h8ky2le` (str, required) - The address to return + + address: `bcrt1qf6h255qf77vgyg4exfe33z83e8dntf3rv2euq6` (str, required) - The address to return + asset: `FAIRMINTC` (str, required) - The asset to return + send_type (enum[str], optional) - The type of sends to return + Default: `all` @@ -7608,7 +7608,7 @@ Returns the receives of an address and asset Returns the dispensers of an address + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address to return + status (enum[str], optional) - The status of the dispensers to return + Default: `all` + Members @@ -7635,9 +7635,9 @@ Returns the dispensers of an address "result": [ { "tx_index": 68, - "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "block_index": 194, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -7646,7 +7646,7 @@ Returns the dispensers of an address "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7656,11 +7656,11 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662737, + "block_time": 1733663923, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -7673,9 +7673,9 @@ Returns the dispensers of an address }, { "tx_index": 26, - "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7684,7 +7684,7 @@ Returns the dispensers of an address "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7694,7 +7694,7 @@ Returns the dispensers of an address "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7720,7 +7720,7 @@ Returns the dispensers of an address Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (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` @@ -7731,9 +7731,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7742,7 +7742,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7752,7 +7752,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7775,7 +7775,7 @@ Returns the dispenser of an address and an asset Returns the dispenses of a source + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -7793,18 +7793,18 @@ Returns the dispenses of a source { "tx_index": 69, "dispense_index": 0, - "tx_hash": "3d816bb9da3e8382155c32330e0949633245a5b06a4e040498c8290561e28139", + "tx_hash": "da6a151b91397c5fe8d86bc389708b01e210739f880c2ea12bd3a0d517878c8a", "block_index": 194, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "dispenser_tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "btc_amount": 4000, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7812,7 +7812,7 @@ Returns the dispenses of a source "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7827,11 +7827,11 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662737, + "block_time": 1733663923, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -7841,18 +7841,18 @@ Returns the dispenses of a source { "tx_index": 28, "dispense_index": 0, - "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", + "tx_hash": "e02ea87bd0376af951ee8a57a3103e5d6f0265252ded7746b00c046b77033c51", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7860,7 +7860,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7875,7 +7875,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7889,18 +7889,18 @@ Returns the dispenses of a source { "tx_index": 27, "dispense_index": 0, - "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", + "tx_hash": "8a51521b8419746fa32485a32a6632ab14a0832c48d2f16a28655b3595bfc17d", "block_index": 131, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7908,7 +7908,7 @@ Returns the dispenses of a source "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7923,7 +7923,7 @@ Returns the dispenses of a source "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662481, + "block_time": 1733663640, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7945,7 +7945,7 @@ Returns the dispenses of a source Returns the dispenses of a destination + Parameters - + address: `bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - The address to return + + address: `bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl` (str, required) - The address to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -7963,18 +7963,18 @@ Returns the dispenses of a destination { "tx_index": 69, "dispense_index": 0, - "tx_hash": "3d816bb9da3e8382155c32330e0949633245a5b06a4e040498c8290561e28139", + "tx_hash": "da6a151b91397c5fe8d86bc389708b01e210739f880c2ea12bd3a0d517878c8a", "block_index": 194, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "dispenser_tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "btc_amount": 4000, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7982,7 +7982,7 @@ Returns the dispenses of a destination "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -7997,11 +7997,11 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662737, + "block_time": 1733663923, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -8011,18 +8011,18 @@ Returns the dispenses of a destination { "tx_index": 28, "dispense_index": 0, - "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", + "tx_hash": "e02ea87bd0376af951ee8a57a3103e5d6f0265252ded7746b00c046b77033c51", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8030,7 +8030,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8045,7 +8045,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8059,18 +8059,18 @@ Returns the dispenses of a destination { "tx_index": 27, "dispense_index": 0, - "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", + "tx_hash": "8a51521b8419746fa32485a32a6632ab14a0832c48d2f16a28655b3595bfc17d", "block_index": 131, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8078,7 +8078,7 @@ Returns the dispenses of a destination "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8093,7 +8093,7 @@ Returns the dispenses of a destination "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662481, + "block_time": 1733663640, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8115,7 +8115,7 @@ Returns the dispenses of a destination Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (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` @@ -8134,18 +8134,18 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", + "tx_hash": "e02ea87bd0376af951ee8a57a3103e5d6f0265252ded7746b00c046b77033c51", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8153,7 +8153,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8168,7 +8168,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8182,18 +8182,18 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", + "tx_hash": "8a51521b8419746fa32485a32a6632ab14a0832c48d2f16a28655b3595bfc17d", "block_index": 131, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8201,7 +8201,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8216,7 +8216,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662481, + "block_time": 1733663640, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8238,7 +8238,7 @@ Returns the dispenses of an address and an asset Returns the dispenses of an address and an asset + Parameters - + address: `bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - The address to return + + address: `bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl` (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` @@ -8257,18 +8257,18 @@ Returns the dispenses of an address and an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", + "tx_hash": "e02ea87bd0376af951ee8a57a3103e5d6f0265252ded7746b00c046b77033c51", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8276,7 +8276,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8291,7 +8291,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8305,18 +8305,18 @@ Returns the dispenses of an address and an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", + "tx_hash": "8a51521b8419746fa32485a32a6632ab14a0832c48d2f16a28655b3595bfc17d", "block_index": 131, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -8324,7 +8324,7 @@ Returns the dispenses of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8339,7 +8339,7 @@ Returns the dispenses of an address and an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662481, + "block_time": 1733663640, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8361,7 +8361,7 @@ Returns the dispenses of an address and an asset Returns the sweeps of an address + Parameters - + address: `bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9` (str, required) - The address to return + + address: `bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7` (str, required) - The address to return + cursor (str, optional) - The last index of the sweeps to return + Default: `None` + limit: `5` (int, optional) - The maximum number of sweeps to return @@ -8378,15 +8378,15 @@ Returns the sweeps of an address "result": [ { "tx_index": 65, - "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", + "tx_hash": "f6f1dd1640fa599d048daaa43dd7ad57104761cce91bb73182ac3ce688e2daf1", "block_index": 190, - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, - "block_time": 1733662722, + "block_time": 1733663898, "fee_paid_normalized": "0.00600000" } ], @@ -8400,7 +8400,7 @@ Returns the sweeps of an address Returns the issuances of an address + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address to return + asset_events (enum[str], optional) - Filter result by one or several comma separated asset events + Default: `all` + Members @@ -8430,14 +8430,14 @@ Returns the issuances of an address "result": [ { "tx_index": 76, - "tx_hash": "1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644", + "tx_hash": "31e87316faa7bf0702535007bfe5fe2bf00d78048caee422d601b2e7ba51b642", "msg_index": 0, "block_index": 200, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "transfer": false, "callable": false, "call_date": 0, @@ -8451,20 +8451,20 @@ Returns the issuances of an address "description_locked": false, "fair_minting": false, "asset_events": "creation", - "block_time": 1733662760, + "block_time": 1733663955, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "af26ce6aa85ff2f672028a3cfecf49ed4d8b2791495b66b8198f5ae9cb182479", + "tx_hash": "fe1893cf1e875a47161c98c3611e96f45cccf4cb8c3683be0bd29caa452f3d7e", "msg_index": 0, "block_index": 156, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "transfer": false, "callable": false, "call_date": 0, @@ -8478,20 +8478,20 @@ Returns the issuances of an address "description_locked": false, "fair_minting": false, "asset_events": "creation", - "block_time": 1733662592, + "block_time": 1733663766, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "d6711f9495e7f4d3d0267e48487c2329555979680e084182b8a5e06cd65e5b55", + "tx_hash": "69fcec5e6b67ca9125dccf6a5c5d725eb4f336ad92ebf630c8aeb003b1a9f799", "msg_index": 0, "block_index": 155, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "transfer": false, "callable": false, "call_date": 0, @@ -8505,20 +8505,20 @@ Returns the issuances of an address "description_locked": true, "fair_minting": false, "asset_events": "lock_description", - "block_time": 1733662579, + "block_time": 1733663763, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "f300f4f1d3c80fd6f7807624d2236e0de7a91528e43ff41eb2cbaddbaceea14e", + "tx_hash": "468b8d838e5aad27478cef5f5e6799d0c359fd50c79a33a43635666fdaeed21b", "msg_index": 0, "block_index": 154, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "transfer": false, "callable": false, "call_date": 0, @@ -8532,20 +8532,20 @@ Returns the issuances of an address "description_locked": false, "fair_minting": false, "asset_events": "creation", - "block_time": 1733662576, + "block_time": 1733663759, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "aafc3281649611fab635e59b621a98cd2e246b3d7da0cb364f0b08c39e28fe94", + "tx_hash": "d95d82f1df0b5468963c3e57b56b14c1163ed106ec29d6e006e6d34980c9c6e7", "msg_index": 0, "block_index": 153, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "transfer": false, "callable": false, "call_date": 0, @@ -8559,7 +8559,7 @@ Returns the issuances of an address "description_locked": false, "fair_minting": false, "asset_events": "creation", - "block_time": 1733662572, + "block_time": 1733663745, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -8574,7 +8574,7 @@ Returns the issuances of an address Returns the valid assets issued or owned by an address + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The issuer or owner to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The issuer or owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -8595,8 +8595,8 @@ Returns the valid assets issued or owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 100000000000, @@ -8604,16 +8604,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": 1733662760, - "last_issuance_block_time": 1733662760, + "first_issuance_block_time": 1733663955, + "last_issuance_block_time": 1733663955, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 10000000000, @@ -8621,16 +8621,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": 1733662572, - "last_issuance_block_time": 1733662579, + "first_issuance_block_time": 1733663745, + "last_issuance_block_time": 1733663763, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 180, @@ -8638,16 +8638,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": 1733662552, - "last_issuance_block_time": 1733662559, + "first_issuance_block_time": 1733663729, + "last_issuance_block_time": 1733663735, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 100000000000, @@ -8655,16 +8655,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": 1733662509, - "last_issuance_block_time": 1733662509, + "first_issuance_block_time": 1733663687, + "last_issuance_block_time": 1733663687, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 40, @@ -8672,8 +8672,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": 1733662462, - "last_issuance_block_time": 1733662467, + "first_issuance_block_time": 1733663623, + "last_issuance_block_time": 1733663627, "supply_normalized": "0.00000040" } ], @@ -8687,7 +8687,7 @@ Returns the valid assets issued or owned by an address Returns the valid assets issued by an address + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The issuer to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The issuer to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -8708,8 +8708,8 @@ Returns the valid assets issued by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 100000000000, @@ -8717,16 +8717,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": 1733662760, - "last_issuance_block_time": 1733662760, + "first_issuance_block_time": 1733663955, + "last_issuance_block_time": 1733663955, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 10000000000, @@ -8734,16 +8734,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": 1733662572, - "last_issuance_block_time": 1733662579, + "first_issuance_block_time": 1733663745, + "last_issuance_block_time": 1733663763, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 180, @@ -8751,16 +8751,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": 1733662552, - "last_issuance_block_time": 1733662559, + "first_issuance_block_time": 1733663729, + "last_issuance_block_time": 1733663735, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 100000000000, @@ -8768,16 +8768,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": 1733662509, - "last_issuance_block_time": 1733662509, + "first_issuance_block_time": 1733663687, + "last_issuance_block_time": 1733663687, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 40, @@ -8785,8 +8785,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": 1733662462, - "last_issuance_block_time": 1733662467, + "first_issuance_block_time": 1733663623, + "last_issuance_block_time": 1733663627, "supply_normalized": "0.00000040" } ], @@ -8800,7 +8800,7 @@ Returns the valid assets issued by an address Returns the valid assets owned by an address + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The owner to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The owner to return + named: `true` (bool, optional) - Whether to return only named assets + Default: `None` + cursor (str, optional) - The last index of the assets to return @@ -8821,8 +8821,8 @@ Returns the valid assets owned by an address "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 100000000000, @@ -8830,16 +8830,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": 1733662760, - "last_issuance_block_time": 1733662760, + "first_issuance_block_time": 1733663955, + "last_issuance_block_time": 1733663955, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 10000000000, @@ -8847,16 +8847,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": 1733662572, - "last_issuance_block_time": 1733662579, + "first_issuance_block_time": 1733663745, + "last_issuance_block_time": 1733663763, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 180, @@ -8864,16 +8864,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": 1733662552, - "last_issuance_block_time": 1733662559, + "first_issuance_block_time": 1733663729, + "last_issuance_block_time": 1733663735, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 100000000000, @@ -8881,16 +8881,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": 1733662509, - "last_issuance_block_time": 1733662509, + "first_issuance_block_time": 1733663687, + "last_issuance_block_time": 1733663687, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 40, @@ -8898,8 +8898,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": 1733662462, - "last_issuance_block_time": 1733662467, + "first_issuance_block_time": 1733663623, + "last_issuance_block_time": 1733663627, "supply_normalized": "0.00000040" } ], @@ -8913,7 +8913,7 @@ Returns the valid assets owned by an address Returns the transactions of an address + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address to return + type (enum[str], optional) - The type of the transaction to return + Default: `all` + Members @@ -8956,17 +8956,17 @@ Returns the transactions of an address "result": [ { "tx_index": 79, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "block_hash": "0de537875466fcabb29014860060168e58d39d6640e6be78625455093e5557db", - "block_time": 1733662781, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_hash": "27b7ed239faada74794cabc6bf3773aab04cf81db1ab8933c4079f7e9648cd84", + "block_time": 1733663976, + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d260d2e34c89b206a0797add1942aa6ca5cd4fdf80f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003802e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa80c035166f0c339550322fb09e1a7ff181aa5646fd40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab:0 4 ", + "utxos_info": " fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0:0 4 ", "transaction_type": "mpma", "events": [ { @@ -8975,27 +8975,27 @@ Returns the transactions of an address "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "memo": "memo2", "msg_index": 0, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "tx_index": 79, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "block_time": 1733662781 + "block_time": 1733663976 }, { "event_index": 679, @@ -9003,27 +9003,27 @@ Returns the transactions of an address "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "tx_index": 79, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "block_time": 1733662781 + "block_time": 1733663976 }, { "event_index": 680, @@ -9031,15 +9031,15 @@ Returns the transactions of an address "params": { "asset": "XCP", "block_index": 203, - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "tx_index": 79, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9049,9 +9049,9 @@ Returns the transactions of an address }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "block_time": 1733662781 + "block_time": 1733663976 } ], "unpacked_data": { @@ -9060,14 +9060,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "quantity": 10, "memo": "memo2", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "quantity": 10, "memo": "memo1", "memo_is_hex": false @@ -9077,17 +9077,17 @@ Returns the transactions of an address }, { "tx_index": 78, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_hash": "592b0db0b71afdbe18b1fc5432bbfde15ca979682f0055e3e62c2d56161c659b", - "block_time": 1733662777, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_hash": "74bb75075b8ee6db1ca89241b13253330e8780effe1396da8e92cfe290215430", + "block_time": 1733663962, + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d260d2e34c89b206a0797add1942aa6ca5cd4fdf80f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003802e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa80c035166f0c339550322fb09e1a7ff181aa5646fd88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe:0 4 ", + "utxos_info": " d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd:0 4 ", "transaction_type": "mpma", "events": [ { @@ -9095,24 +9095,24 @@ Returns the transactions of an address "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29" + "tx_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803" }, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_time": 1733662777 + "block_time": 1733663962 }, { "event_index": 660, "event": "ORDER_EXPIRATION", "params": { "block_index": 202, - "order_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "block_time": 1733662777 + "order_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "block_time": 1733663962 }, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_time": 1733662777 + "block_time": 1733663962 }, { "event_index": 666, @@ -9120,27 +9120,27 @@ Returns the transactions of an address "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "memo": "the memo", "msg_index": 0, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "tx_index": 78, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_time": 1733662777 + "block_time": 1733663962 }, { "event_index": 667, @@ -9148,27 +9148,27 @@ Returns the transactions of an address "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "memo": "the memo", "msg_index": 1, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "tx_index": 78, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_time": 1733662777 + "block_time": 1733663962 }, { "event_index": 668, @@ -9176,15 +9176,15 @@ Returns the transactions of an address "params": { "asset": "XCP", "block_index": 202, - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "memo": "the memo", "msg_index": 2, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "tx_index": 78, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9194,9 +9194,9 @@ Returns the transactions of an address }, "quantity_normalized": "0.00000010" }, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_time": 1733662777 + "block_time": 1733663962 } ], "unpacked_data": { @@ -9205,14 +9205,14 @@ Returns the transactions of an address "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "quantity": 10, "memo": "the memo", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "quantity": 10, "memo": "the memo", "memo_is_hex": false @@ -9222,17 +9222,17 @@ Returns the transactions of an address }, { "tx_index": 77, - "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", + "tx_hash": "dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66", "block_index": 201, - "block_hash": "10801583bacc821606b117a03aa3d8edc91e8b6c864a3f72a6dfac845ed9f0a6", - "block_time": 1733662764, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_hash": "1d373b1daa975404c2f43e18164dac89ddef98c8671263b2361aa95138ab20e7", + "block_time": 1733663958, + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d260d2e34c89b206a0797add1942aa6ca5cd4fdf", + "data": "02000000178d82231300000000000003e8802e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b", "supported": true, - "utxos_info": " ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6:1 2 0", + "utxos_info": " dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66:1 2 0", "transaction_type": "enhanced_send", "events": [ { @@ -9241,26 +9241,26 @@ Returns the transactions of an address "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "memo": null, "quantity": 1000, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", + "tx_hash": "dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66", "tx_index": 77, - "block_time": 1733662764, + "block_time": 1733663958, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", + "tx_hash": "dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66", "block_index": 201, - "block_time": 1733662764 + "block_time": 1733663958 } ], "unpacked_data": { @@ -9269,24 +9269,24 @@ Returns the transactions of an address "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "memo": null } } }, { "tx_index": 76, - "tx_hash": "1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644", + "tx_hash": "31e87316faa7bf0702535007bfe5fe2bf00d78048caee422d601b2e7ba51b642", "block_index": 200, - "block_hash": "3e589a03624f3b3414e98872b3f5818c624e0b28da6495b611bb10403669e396", - "block_time": 1733662760, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_hash": "07129c9baf94a93c46e08d0a4ce80894e7a407b0d3a2c8e52ba38ec73f473fbe", + "block_time": 1733663955, + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644:1 2 0", + "utxos_info": " 31e87316faa7bf0702535007bfe5fe2bf00d78048caee422d601b2e7ba51b642:1 2 0", "transaction_type": "issuance", "events": [ { @@ -9297,11 +9297,11 @@ Returns the transactions of an address "asset_longname": null, "asset_name": "MPMASSET", "block_index": 200, - "block_time": 1733662760 + "block_time": 1733663955 }, - "tx_hash": "1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644", + "tx_hash": "31e87316faa7bf0702535007bfe5fe2bf00d78048caee422d601b2e7ba51b642", "block_index": 200, - "block_time": 1733662760 + "block_time": 1733663955 }, { "event_index": 645, @@ -9318,22 +9318,22 @@ Returns the transactions of an address "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", "transfer": false, - "tx_hash": "1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644", + "tx_hash": "31e87316faa7bf0702535007bfe5fe2bf00d78048caee422d601b2e7ba51b642", "tx_index": 76, - "block_time": 1733662760, + "block_time": 1733663955, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644", + "tx_hash": "31e87316faa7bf0702535007bfe5fe2bf00d78048caee422d601b2e7ba51b642", "block_index": 200, - "block_time": 1733662760 + "block_time": 1733663955 } ], "unpacked_data": { @@ -9357,17 +9357,17 @@ Returns the transactions of an address }, { "tx_index": 68, - "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "block_index": 193, - "block_hash": "10b675298433b89dad6dfa3551134328a0689c8e59eb4c543ae2ddcfcff81544", - "block_time": 1733662733, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_hash": "18fde4ed39bac3ec73d7baa0127a13ae2a93ece3d5a5c5838994b074611196d6", + "block_time": 1733663919, + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952:1 2 0", + "utxos_info": " 08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38:1 2 0", "transaction_type": "dispenser", "events": [ { @@ -9381,17 +9381,17 @@ Returns the transactions of an address "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "satoshirate": 1, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": 0, - "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "tx_index": 68, - "block_time": 1733662733, + "block_time": 1733663919, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -9400,9 +9400,9 @@ Returns the transactions of an address "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "block_index": 193, - "block_time": 1733662733 + "block_time": 1733663919 } ], "unpacked_data": { @@ -9440,7 +9440,7 @@ Returns the count of each transaction type Returns the dividends distributed by an address + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address to return + cursor (str, optional) - The last index of the assets to return + Default: `None` + limit: `5` (int, optional) - The maximum number of assets to return @@ -9457,19 +9457,19 @@ Returns the dividends distributed by an address "result": [ { "tx_index": 42, - "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", + "tx_hash": "9676962b470a9998d30eeaec911a79f39a722075bb60a164d5e1ef5f59945120", "block_index": 146, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", - "block_time": 1733662534, + "block_time": 1733663711, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -9494,7 +9494,7 @@ Returns the dividends distributed by an address Returns the orders of an address + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address to return + status (enum[str], optional) - The status of the orders to return + Default: `all` + Members @@ -9521,9 +9521,9 @@ Returns the orders of an address "result": [ { "tx_index": 53, - "tx_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", + "tx_hash": "8cf9dd0bba63907b47eaffd8339bfc5d2a084267465b28eccf9364df93ceed37", "block_index": 179, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9539,7 +9539,7 @@ Returns the orders of an address "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662607, + "block_time": 1733663781, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9567,9 +9567,9 @@ Returns the orders of an address }, { "tx_index": 55, - "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "tx_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", "block_index": 202, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -9585,7 +9585,7 @@ Returns the orders of an address "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662777, + "block_time": 1733663962, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9613,9 +9613,9 @@ Returns the orders of an address }, { "tx_index": 62, - "tx_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", + "tx_hash": "4387209cd138023912f31ea19f0290397fffd4f21b306e08ad5ef9c80d0836aa", "block_index": 188, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -9631,7 +9631,7 @@ Returns the orders of an address "status": "cancelled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662715, + "block_time": 1733663880, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9659,9 +9659,9 @@ Returns the orders of an address }, { "tx_index": 64, - "tx_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "tx_hash": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", "block_index": 211, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -9677,7 +9677,7 @@ Returns the orders of an address "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662819, + "block_time": 1733664025, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9714,7 +9714,7 @@ Returns the orders of an address Returns the fairminter by its source + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The source of the fairminter to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The source of the fairminter to return + status (enum[str], optional) - The status of the fairminters to return + Default: `all` + Members @@ -9737,10 +9737,10 @@ Returns the fairminter by its source { "result": [ { - "tx_hash": "f49987520b37269d66e22c08d64105ad8b3ca4ddd9cf77289a9c701eb7cd17fd", + "tx_hash": "50923f7fcb999bf51e391f16f3d6904a103ab55460d3cd6094351a37489eb5b4", "tx_index": 44, "block_index": 150, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "FREEFAIRMINT", "asset_parent": null, "asset_longname": null, @@ -9764,7 +9764,7 @@ Returns the fairminter by its source "earned_quantity": 180, "paid_quantity": 0, "commission": 0, - "block_time": 1733662559, + "block_time": 1733663735, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", @@ -9776,10 +9776,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "c08fd3a8aeff123265f1bb8c22f18a72614767838b8dba6a17ddd8de121b8486", + "tx_hash": "1bfbc2a4034045d7d015ce21f2add61dc914c39e0f24378da226255de3840ef0", "tx_index": 43, "block_index": 147, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -9803,7 +9803,7 @@ Returns the fairminter by its source "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733662539, + "block_time": 1733663715, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9812,10 +9812,10 @@ Returns the fairminter by its source "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "944f4b25248d9ceabac7ba67e9b8c5cba51f208732d6e10967981e481d445bab", + "tx_hash": "ad35c0195cd0372aa88e05feae9ad7af70dbd0c85e27f9883ec4457a03f8626f", "tx_index": 22, "block_index": 126, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "FAIRMINTD", "asset_parent": null, "asset_longname": null, @@ -9839,7 +9839,7 @@ Returns the fairminter by its source "earned_quantity": 40, "paid_quantity": 34, "commission": 0, - "block_time": 1733662462, + "block_time": 1733663623, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9851,10 +9851,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "3fe3cc258aff8adebf2c59df508d6e915c65e494545f1973cbd6fac50bf52f7a", + "tx_hash": "d7bf0545b0be4b22db30469e5e44a771153aca3fdfb40b4cead14f293cce65cf", "tx_index": 18, "block_index": 122, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "FAIRMINTC", "asset_parent": null, "asset_longname": null, @@ -9878,7 +9878,7 @@ Returns the fairminter by its source "earned_quantity": 19, "paid_quantity": 5, "commission": 0, - "block_time": 1733662438, + "block_time": 1733663598, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -9890,10 +9890,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "f1650bc5e4862573c5bdcaeee8c79235a3afbbe4a4b1dde5ae00856fc2ec3092", + "tx_hash": "adcb871b73226294a5765669393f976645fa31b4485e46b851022f16656da53d", "tx_index": 14, "block_index": 121, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "FAIRMINTB", "asset_parent": null, "asset_longname": null, @@ -9917,7 +9917,7 @@ Returns the fairminter by its source "earned_quantity": 300000000, "paid_quantity": 300000000, "commission": 0, - "block_time": 1733662435, + "block_time": 1733663595, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9929,10 +9929,10 @@ Returns the fairminter by its source "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "78a0d2b2e6a58b814c45278e7486d9916983dd9996fa320ebd4c77c3efecc28c", + "tx_hash": "5bd820741bb8091a3d2b4c6ab277ba3f8cc1c466193f1820517dbc6cfa6a4ee2", "tx_index": 10, "block_index": 116, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "FAIRMINTA", "asset_parent": null, "asset_longname": null, @@ -9956,7 +9956,7 @@ Returns the fairminter by its source "earned_quantity": 10000000000, "paid_quantity": 10000000000, "commission": 0, - "block_time": 1733662417, + "block_time": 1733663576, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -9978,7 +9978,7 @@ Returns the fairminter by its source Returns the mints by address + Parameters - + address: `bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - The address of the mints to return + + address: `bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl` (str, required) - The address of the mints to return + cursor (str, optional) - + Default: `None` + limit (int, optional) - @@ -9994,21 +9994,21 @@ Returns the mints by address { "result": [ { - "tx_hash": "f7afb409d53d760cc0e1b6287fb322b46c0cec5b0db19e0db1e4cb8e9acfa06c", + "tx_hash": "c596391857a9b55ece95aecde22793bcc1f097bf9a0c731b9c90b2d9287c9099", "tx_index": 46, "block_index": 150, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "fairminter_tx_hash": "f49987520b37269d66e22c08d64105ad8b3ca4ddd9cf77289a9c701eb7cd17fd", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "fairminter_tx_hash": "50923f7fcb999bf51e391f16f3d6904a103ab55460d3cd6094351a37489eb5b4", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1733662559, + "block_time": 1733663735, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -10017,21 +10017,21 @@ Returns the mints by address "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "0f816a7124ca2d321d50cb5a756e505409860107a5cdf6818af0c49903109e92", + "tx_hash": "05d3d95677e594741397af8c1b7d70d95526f042d85bf688b81d518bef7473b4", "tx_index": 45, "block_index": 149, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "fairminter_tx_hash": "f49987520b37269d66e22c08d64105ad8b3ca4ddd9cf77289a9c701eb7cd17fd", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "fairminter_tx_hash": "50923f7fcb999bf51e391f16f3d6904a103ab55460d3cd6094351a37489eb5b4", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1733662555, + "block_time": 1733663732, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -10040,21 +10040,21 @@ Returns the mints by address "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "bd8a49f0e5175b0e9376309693c7ab46f23e81ff6da37e173fafd49112e3a002", + "tx_hash": "fa040cf888674be63375c7343027048ac5745c31d8bd5ed5fec8f0c7e36a9b97", "tx_index": 23, "block_index": 127, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "fairminter_tx_hash": "944f4b25248d9ceabac7ba67e9b8c5cba51f208732d6e10967981e481d445bab", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "fairminter_tx_hash": "ad35c0195cd0372aa88e05feae9ad7af70dbd0c85e27f9883ec4457a03f8626f", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", - "block_time": 1733662467, + "block_time": 1733663627, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -10063,21 +10063,21 @@ Returns the mints by address "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "5442ddf25d7b2d0522c3e6ee4f6ea07046e498791dad9a59493585cd95e4a482", + "tx_hash": "2730f482970c6ffc09d7d891d1d16ef689c9ac22adfd0423774c482c9aeae806", "tx_index": 21, "block_index": 125, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "fairminter_tx_hash": "3fe3cc258aff8adebf2c59df508d6e915c65e494545f1973cbd6fac50bf52f7a", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "fairminter_tx_hash": "d7bf0545b0be4b22db30469e5e44a771153aca3fdfb40b4cead14f293cce65cf", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", - "block_time": 1733662459, + "block_time": 1733663619, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -10086,21 +10086,21 @@ Returns the mints by address "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "9044b8e851b9db643759825189ee18e3a4f8e024073cee1071770547f10d5441", + "tx_hash": "3c4dd8305d3e7f13c8fa128a0c9c220a6a984f76419f9f109f0bce69d216b2d7", "tx_index": 20, "block_index": 124, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "fairminter_tx_hash": "3fe3cc258aff8adebf2c59df508d6e915c65e494545f1973cbd6fac50bf52f7a", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "fairminter_tx_hash": "d7bf0545b0be4b22db30469e5e44a771153aca3fdfb40b4cead14f293cce65cf", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", - "block_time": 1733662456, + "block_time": 1733663606, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -10109,21 +10109,21 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9a0ee57960e481e4db622af7aada351d92452cbffc33a5a0620d13c09b3fb924", + "tx_hash": "c4fb132da6dce0c0527b9ea05c7f09998fdac79eee53c48074492072d7ee4f71", "tx_index": 19, "block_index": 123, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "fairminter_tx_hash": "3fe3cc258aff8adebf2c59df508d6e915c65e494545f1973cbd6fac50bf52f7a", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "fairminter_tx_hash": "d7bf0545b0be4b22db30469e5e44a771153aca3fdfb40b4cead14f293cce65cf", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", - "block_time": 1733662442, + "block_time": 1733663602, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -10132,21 +10132,21 @@ Returns the mints by address "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "393205372ad51ba0bcf4bc28968fa4d1453aab18ae0c057a72eb47ab5a60a5b1", + "tx_hash": "49f10f2a8191abe9dbe3b7d1e34b467be262554a6236967519350121fbe01c2e", "tx_index": 15, "block_index": 118, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "fairminter_tx_hash": "f1650bc5e4862573c5bdcaeee8c79235a3afbbe4a4b1dde5ae00856fc2ec3092", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "fairminter_tx_hash": "adcb871b73226294a5765669393f976645fa31b4485e46b851022f16656da53d", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", - "block_time": 1733662424, + "block_time": 1733663583, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -10155,21 +10155,21 @@ Returns the mints by address "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "25af25186fc3e49b496ad5ee19fed27ef2a5109e584442cddd3eb85b6acdcadd", + "tx_hash": "422d48438bb97df0426839209678a4925d40c81936fc1b626dc0ada3eb0763b0", "tx_index": 11, "block_index": 114, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "fairminter_tx_hash": "78a0d2b2e6a58b814c45278e7486d9916983dd9996fa320ebd4c77c3efecc28c", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "fairminter_tx_hash": "5bd820741bb8091a3d2b4c6ab277ba3f8cc1c466193f1820517dbc6cfa6a4ee2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", - "block_time": 1733662411, + "block_time": 1733663568, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -10188,7 +10188,7 @@ Returns the mints by address Returns the mints by address and asset + Parameters - + address: `bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - The address of the mints to return + + address: `bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl` (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` @@ -10216,7 +10216,7 @@ Returns the mints by address and asset Returns the balances of an utxo + Parameters - + utxo: `bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0` (str, required) - The utxo to return + + utxo: `bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da:0` (str, required) - The utxo to return + cursor (str, optional) - The last index of the balances to return + Default: `None` + limit: `5` (int, optional) - The maximum number of balances to return @@ -10235,12 +10235,12 @@ Returns the balances of an utxo "asset": "UTXOASSET", "asset_longname": null, "quantity": 1000000000, - "utxo": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0", - "utxo_address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "utxo": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da:0", + "utxo_address": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "issuer": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "divisible": true, "locked": false }, @@ -10300,8 +10300,8 @@ By default the default value of the `encoding` parameter detailed above is `auto Composes a transaction to issue a bet against a feed. + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will make the bet - + feed_address: `bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - The address that hosts the feed to be bet on + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address that will make the bet + + feed_address: `bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl` (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) @@ -10373,7 +10373,7 @@ Composes a transaction to issue a bet against a feed. Composes a transaction to broadcast textual and numerical information to the network. + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + timestamp: `4003903985` (int, required) - The timestamp of the broadcast, in Unix time + value: `100` (float, required) - Numerical value of the broadcast + fee_fraction: `0.05` (float, required) - How much of every bet on this feed should go to its operator; a fraction of 1, (i.e. 0.05 is five percent) @@ -10433,7 +10433,7 @@ Composes a transaction to broadcast textual and numerical information to the net { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -10446,7 +10446,7 @@ Composes a transaction to broadcast textual and numerical information to the net "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "02000000000101924d72a09461c8a24f938092ec2c38ee65a0860665187ebc36ee0a773dcb312e00000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff0200000000000000002b6a29c1f068038c28abd4c1a685dad029f822c87e68e49f72de9cdd2ed2c905060888251c4114f8a9594d0300f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "02000000000101dfce07811b656f41c5043032bb9ed03c7933b322f7c8750d1b4f29c499f8d66a0000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff0200000000000000002b6a293d6b17968a1ead569c3f7890fed653d21c6d59699584fed2141bcfb22cef5bf7764a45b4a96627b4aa00f2052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } } ``` @@ -10456,8 +10456,8 @@ Composes a transaction to broadcast textual and numerical information to the net Composes a transaction to pay for a BTC order match. + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be sending the payment - + order_match_id: `c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076_97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308` (str, required) - The ID of the order match to pay for + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address that will be sending the payment + + order_match_id: `238eb2739cf62d41cc2aa459c23bc83d5c7b43f6a7bd00e39044d7be51abb255_93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f` (str, required) - The ID of the order match to pay for + encoding (str, optional) - The encoding method to use + Default: `auto` + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis) @@ -10513,17 +10513,17 @@ Composes a transaction to pay for a BTC order match. { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "order_match_id": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076_97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "order_match_id": "238eb2739cf62d41cc2aa459c23bc83d5c7b43f6a7bd00e39044d7be51abb255_93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590bc3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c40940507697a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "data": "434e5452505254590b238eb2739cf62d41cc2aa459c23bc83d5c7b43f6a7bd00e39044d7be51abb25593c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999999000, "btc_fee": 0, - "rawtransaction": "0200000000010125aba795909c8b9f384c4ebff2c61f344c437c974c6b3277de4e1b644480f30200000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff03e80300000000000016001447e5951068f42b237b00d9525db4515fd642e8e700000000000000004b6a498d7fd3aeb2357e4c9dcb457b6a9b8353d683928a73043d4b4710b8657a90cf67bc673b73d3ad872313602266cd30e3d901f0806a34111b0fc9f9c6c1eee6965d1e6eadb1af6f76e10118ee052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "02000000000101f0c172da7f802b7424bee40a9276ebef0800917156ea485b8d8e6c99f3faa71f0000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff03e8030000000000001600140102104371526b459cf231d9bd444dd573b343ea00000000000000004b6a498dcfb2ef4eeda63bce0f0fc7d0daae8e9df5961e2be68bee9b6c5954bd2a7f5cb0f1c288cf35cdb01638a43d6c3f2bc07fb16dc1daf01c3d1bf048944e3e73258bef0518467b65524918ee052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } } ``` @@ -10533,7 +10533,7 @@ Composes a transaction to pay for a BTC order match. Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, possible between blocks 278310 and 283810; on testnet it is still available). + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address with the BTC to burn + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address with the BTC to burn + quantity: `1000` (int, required) - The quantities of BTC to burn (in satoshis, hence integer) (1 BTC maximum burn per address) + overburn (bool, optional) - Whether to allow the burn to exceed 1 BTC for the address + Default: `False` @@ -10592,7 +10592,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "quantity": 1000, "overburn": false, "skip_validation": false @@ -10603,7 +10603,7 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss "btc_out": 1000, "btc_change": 4999999000, "btc_fee": 0, - "rawtransaction": "02000000000101ef341ce05ee7aa7a2ce0be2425da212c732d47d2b295fb2a53b04af584e3913800000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac18ee052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "020000000001014136e64fa6466010d504caf042caca6dcf9d1731a9709dfaaf05ce83c89a66310000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac18ee052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } } ``` @@ -10613,8 +10613,8 @@ Composes a transaction to burn a given quantity of BTC for XCP (on mainnet, poss Composes a transaction to cancel an open order or bet. + Parameters - + address: `bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak` (str, required) - The address that placed the order/bet to be cancelled - + offer_hash: `97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308` (str, required) - The hash of the order/bet to be cancelled + + address: `bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6` (str, required) - The address that placed the order/bet to be cancelled + + offer_hash: `93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f` (str, required) - The hash of the order/bet to be cancelled + encoding (str, optional) - The encoding method to use + Default: `auto` + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis) @@ -10670,17 +10670,17 @@ Composes a transaction to cancel an open order or bet. { "result": { "params": { - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "offer_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "offer_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "skip_validation": false }, "name": "cancel", - "data": "434e5452505254594697a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "data": "434e5452505254594693c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "btc_in": 4949950000, "btc_out": 0, "btc_change": 4949950000, "btc_fee": 0, - "rawtransaction": "02000000000101d854173e9ed4905322fd15252603e6fb0fa74ece29662dd694bf7c5d46db34ed01000000160014ca742dc81cac024b4cbde6236e1c599304258b4cffffffff0200000000000000002b6a29f7dae01011d34722e465f0868d3df317e5c5199fb830e35626de317c584150be3114face31c0a76fc8303e0a2701000000160014ca742dc81cac024b4cbde6236e1c599304258b4c02000000000000" + "rawtransaction": "02000000000101a55d3d312f6bfb85c4057684872a01bb8a907a72642017271f784aa69e98ecd8010000001600140368c8629d8d4a4cdb98e52538a5a1dc3a531aa2ffffffff0200000000000000002b6a295ce1552f0e813550efe25cb12e23db94b772858a52fa1823417f92e3809a9dddb9ffe4af1b7edf10f0303e0a27010000001600140368c8629d8d4a4cdb98e52538a5a1dc3a531aa202000000000000" } } ``` @@ -10690,7 +10690,7 @@ Composes a transaction to cancel an open order or bet. Composes a transaction to destroy a quantity of an asset. + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be sending the asset to be destroyed + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address that will be sending the asset to be destroyed + asset: `XCP` (str, required) - The asset to be destroyed + quantity: `1000` (int, required) - The quantity of the asset to be destroyed (in satoshis, hence integer) + tag: `"bugs!"` (str, required) - A tag for the destruction @@ -10749,7 +10749,7 @@ Composes a transaction to destroy a quantity of an asset. { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -10769,7 +10769,7 @@ Composes a transaction to destroy a quantity of an asset. "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "020000000001012ac40fdeebf7c01a2698f5b5e7eea0010fbdde64b345f0a16732c59b93419efd00000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000226a2091e0960c55d817b983e462979b739182d16cb862cec1127feab9baa6875c8fff00f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "0200000000010156206c6b6168b9453ece86012cad2e6815c75c65ea8ca109df0d2db7d382687f0000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff020000000000000000226a205512b49ce96f5c9e5c4f476b75952e3d944eaaf497b04a7715a4fa279893efd000f2052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } } ``` @@ -10779,7 +10779,7 @@ Composes a transaction to destroy a quantity of an asset. Composes a transaction to opens or closes a dispenser for a given asset at a given rate of main chain asset (BTC). Escrowed quantity on open must be equal or greater than give_quantity. It is suggested that you escrow multiples of give_quantity to ease dispenser operation. + Parameters - + address: `bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + + address: `bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp` (str, required) - The address that will be dispensing (must have the necessary escrow_quantity of the specified asset) + asset: `XCP` (str, required) - The asset or subasset to dispense + give_quantity: `1000` (int, required) - The quantity of the asset to dispense (in satoshis, hence integer) + escrow_quantity: `1000` (int, required) - The quantity of the asset to reserve for this dispenser (in satoshis, hence integer) @@ -10844,7 +10844,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv { "result": { "params": { - "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "source": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -10869,7 +10869,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv "btc_out": 0, "btc_change": 4949873799, "btc_fee": 0, - "rawtransaction": "020000000001018ba93f0a63356315c790b72f8b7e31503ec8c37b2213ce56abaa0fd3102b1424020000001600140fa13933cab9aaea4cec2b6194cc224402aa6efeffffffff0200000000000000002c6a2ae136236b460653c4983ef1fd9789b3859175df5c946229068f3aa8b3b370ec456bad04d6778e55c73cf587140927010000001600140fa13933cab9aaea4cec2b6194cc224402aa6efe02000000000000" + "rawtransaction": "020000000001016f94b78a38c8ee1828ced73a69c9245add14003247a2f62a33479a1dd87d74ed020000001600143008f46eb4cce0041fe05407924d4e947ef1f450ffffffff0200000000000000002c6a2a1cf0abe97cf33950b6ee2cf120d4c28fb1b2ab146fdcdc01cf2eef242ff4116e18a6b8af0871821ab27687140927010000001600143008f46eb4cce0041fe05407924d4e947ef1f45002000000000000" } } ``` @@ -10879,7 +10879,7 @@ Composes a transaction to opens or closes a dispenser for a given asset at a giv Composes a transaction to issue a dividend to holders of a given asset. + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address that will be issuing the dividend (must have the ownership of the asset which the dividend is being issued on) + quantity_per_unit: `1` (int, required) - The amount of dividend_asset rewarded (in satoshis, hence integer) + asset: `MYASSETA` (str, required) - The asset or subasset that the dividends are being rewarded on + dividend_asset: `XCP` (str, required) - The asset or subasset that the dividends are paid in @@ -10938,7 +10938,7 @@ Composes a transaction to issue a dividend to holders of a given asset. { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "quantity_per_unit": 1, "asset": "MYASSETA", "dividend_asset": "XCP", @@ -10946,7 +10946,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -10965,7 +10965,7 @@ Composes a transaction to issue a dividend to holders of a given asset. "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "0200000000010119223da59577f02cdf31d254f84c7868f7156ac26b2c3242e18c5ce0afe91db500000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000236a21bf2eb869a55c3e60dce8f1e8c72d87a431653b501e8053af28e8bac1ae9c65793500f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "020000000001017e4a665adfe086310b58b110d85a000a9cc1a5c148f794bf5ccc77d35f9ad7820000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff020000000000000000236a216eb641910385a209ed795b096dad33f2a042195372f7229a71923c8b7c9e4ef13100f2052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } } ``` @@ -10975,10 +10975,10 @@ Composes a transaction to issue a dividend to holders of a given asset. Composes a transaction to Issue a new asset, issue more of an existing asset, lock an asset, reset existing supply, or transfer the ownership of an asset. + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be issuing or transfering the asset + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address that will be issuing or transfering the asset + asset: `XCPTEST` (str, required) - The assets to issue or transfer. This can also be a subasset longname for new subasset issuances + quantity: `1000` (int, required) - The quantity of the asset to issue (set to 0 if transferring an asset) (in satoshis, hence integer) - + transfer_destination: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, optional) - The address to receive the asset + + transfer_destination: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, optional) - The address to receive the asset + Default: `None` + divisible (bool, optional) - Whether this asset is divisible or not (if a transfer, this value must match the value specified when the asset was originally issued) + Default: `True` @@ -11043,10 +11043,10 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "transfer_destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "lock": false, "reset": false, @@ -11060,7 +11060,7 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo "btc_out": 546, "btc_change": 4999999454, "btc_fee": 0, - "rawtransaction": "02000000000101ab9a4793ec37e972e246f834cee22b215ee18a2e7de88553a263a50070c7dc3100000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff032202000000000000160014a0a90e6acc5b35a094a931d109e64b559674fb840000000000000000236a2138872d422e7694fa97d233e6740fc804551c12dbd0f6742a238caa5d6c8774d576deef052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "02000000000101561bad4e09dded6cc6f71dde05e3f3b961c040e40e43945a255ccd612c8841b60000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff03220200000000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb0000000000000000236a21d1d96bbbb412b719979cd34978853d9209c1d0b0435d4d42118a01119d1ad49a83deef052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } } ``` @@ -11070,9 +11070,9 @@ Composes a transaction to Issue a new asset, issue more of an existing asset, lo Composes a transaction to send multiple payments to multiple addresses. + Parameters - + address: `bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + address: `bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + assets: `XCP,FAIRMINTC` (str, required) - comma-separated list of assets to send - + destinations: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla,bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - comma-separated list of addresses to send to + + destinations: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z,bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl` (str, required) - comma-separated list of addresses to send to + quantities: `1,2` (str, required) - comma-separated list of quantities to send (in satoshis, hence integer) + memos (list, optional) - One `memos` argument by send, if any + Default: `None` @@ -11137,16 +11137,16 @@ Composes a transaction to send multiple payments to multiple addresses. { "result": { "params": { - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", 1 ], [ "FAIRMINTC", - "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", 2 ] ], @@ -11155,12 +11155,12 @@ Composes a transaction to send multiple payments to multiple addresses. "skip_validation": false }, "name": "mpma", - "data": "434e54525052545903000280a0a90e6acc5b35a094a931d109e64b559674fb8480d260d2e34c89b206a0797add1942aa6ca5cd4fdf4000003ceebf84b91000000000000000240000000000000004000000000000000100", + "data": "434e5452505254590300028055a1c1bd309c3761f38e46de17c86a78cf853fbb802e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b4000003ceebf84b91000000000000000240000000000000004000000000000000100", "btc_in": 4949808000, "btc_out": 2000, "btc_change": 4949806000, "btc_fee": 0, - "rawtransaction": "02000000000101cfaf6940994f3be90705a5a2849361ba870bf35d6d15b4e377d3bb8cdb847d5c03000000160014d260d2e34c89b206a0797add1942aa6ca5cd4fdfffffffff03e803000000000000695121033d9b8157b929434e54cde851f7659e44eb253e7aaa820bbcaa6f245009a00db7210301654169ce49901de71854042d3eaae893f45ef15a74f0459b6dbac4fc337a8821032a0b9b5c054cfd3455e6bd304ee97b1a1fb37c7fe90d392c05114eef7d1cc09653aee80300000000000069512103229b8157b929434e54dee85377c5374a81cd654f0a16a28d7b62c21b5c3679202103fae1c0bbae9b73516eaa52a4544477f1d15e3254973b2f059b6d862a43b7c33821032a0b9b5c054cfd3455e6bd304ee97b1a1fb37c7fe90d392c05114eef7d1cc09653aeb00b082701000000160014d260d2e34c89b206a0797add1942aa6ca5cd4fdf02000000000000" + "rawtransaction": "0200000000010193b96f9dbe7b223bbfe0af5c0ba4988b4d22a04041ade6ab9f50ce62af206fe9030000001600142e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4bffffffff03e80300000000000069512102012952f60f4fa2ec3d100d0d01e924f22f481bd2ed1f1aec0eee49253701bab421024009a55804664fc5ff18293c312c383ab9b119b0ad34f1b5eb609ff60639d20d2103fa208911a8b113ecc2adda4feb593043e2cb9b8b15686be583811ed0bc0f4fca53aee803000000000000695121021e2952f60f4fa2ec3d030d0f81bc8533925c87e58cec94aad0fd814f4fce3fab21037fb224762189289839b730e38d4fe4844b59c6cb9109baf5eb60a318b9bd6b872103fa208911a8b113ecc2adda4feb593043e2cb9b8b15686be583811ed0bc0f4fca53aeb00b0827010000001600142e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b02000000000000" } } ``` @@ -11170,7 +11170,7 @@ Composes a transaction to send multiple payments to multiple addresses. Composes a transaction to place an order on the distributed exchange. + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address that will be issuing the order request (must have the necessary quantity of the specified asset to give) + give_asset: `XCP` (str, required) - The asset that will be given in the trade + give_quantity: `1000` (int, required) - The quantity of the asset that will be given (in satoshis, hence integer) + get_asset: `BURNER` (str, required) - The asset that will be received in the trade @@ -11232,7 +11232,7 @@ Composes a transaction to place an order on the distributed exchange. { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "BURNER", @@ -11250,7 +11250,7 @@ Composes a transaction to place an order on the distributed exchange. "get_asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -11264,7 +11264,7 @@ Composes a transaction to place an order on the distributed exchange. "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "02000000000101df7d6fd911e1547352154244e36a896a2b8077d35da4c69ec4e6821a07112fc800000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000356a33361b6c0c54044c46f87e5bf78e109b5eb37250d937c29a7a320a81baf09eb66312aaa6b9ef81b7b61f218ee8455e2567d22b2600f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "0200000000010125bbc77f1b4ea182617d3ddd94fd3b082d8d2043f3684b211aeedc2e8c0c4bb80000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff020000000000000000356a330c74a82f66921d8ea6c20ecc9cb4b971e700fe2d2ecd4caee78f285c4eea5f6dd5de7b42198fba771b0890579f816bc4c1052900f2052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } } ``` @@ -11274,8 +11274,8 @@ Composes a transaction to place an order on the distributed exchange. Composes a transaction to send a quantity of an asset to another address. + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) - + destination: `bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - The address that will be receiving the asset + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address that will be sending (must have the necessary quantity of the specified asset) + + destination: `bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl` (str, required) - The address that will be receiving the asset + asset: `XCP` (str, required) - The asset or subasset to send + quantity: `1000` (int, required) - The quantity of the asset to send (in satoshis, hence integer) + memo (str, optional) - The Memo associated with this transaction @@ -11339,8 +11339,8 @@ Composes a transaction to send a quantity of an asset to another address. { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "quantity": 1000, "memo": null, @@ -11357,12 +11357,12 @@ Composes a transaction to send a quantity of an asset to another address. "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d260d2e34c89b206a0797add1942aa6ca5cd4fdf", + "data": "434e54525052545902000000000000000100000000000003e8802e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b", "btc_in": 5000000000, "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "02000000000101d30a122e70bbcfc68361c85f3a50c18060c0e32c3a3f7f4b5bb6bb3481cfee6600000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000306a2e8fcb24bf55bc4978d9a430f9b41f1a04b346404d61e3d16305958566dc7055705582269294f8ec2ebb0b1e8d956400f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "0200000000010107784db752b51cb96c2a086e12cf6c80e082b7a7146ff9da4cb2213f7a193bac0000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff020000000000000000306a2e667b92ee7caa5436ce91806ce1088d045377e29797f868cac4e7c029ce25d535994a6d25505c5d4856d53388c4d800f2052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } } ``` @@ -11372,8 +11372,8 @@ Composes a transaction to send a quantity of an asset to another address. Composes a transaction to Sends all assets and/or transfer ownerships to a destination address. + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be sending - + destination: `bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - The address to receive the assets and/or ownerships + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address that will be sending + + destination: `bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl` (str, required) - The address to receive the assets and/or ownerships + flags: `7` (int, required) - An OR mask of flags indicating how the sweep should be processed. Possible flags are: - FLAG_BALANCES: (integer) 1, specifies that all balances should be transferred. - FLAG_OWNERSHIP: (integer) 2, specifies that all ownerships should be transferred. - FLAG_BINARY_MEMO: (integer) 4, specifies that the memo is in binary/hex form. + memo: `FFFF` (str, required) - The Memo associated with this transaction in hex format + encoding (str, optional) - The encoding method to use @@ -11431,19 +11431,19 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480d260d2e34c89b206a0797add1942aa6ca5cd4fdf07ffff", + "data": "434e54525052545904802e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "02000000000101e5ca9aa28f0d76341d561b6074ff4734ba5be20a53b0b3d39df6b6f8879b493100000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000236a21a8a573db466a5d914540aad096f0997de899868a65f4360cf638b01cd7f0041b3b00f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "02000000000101c70400befe8d2df5c9ea6209a078e921e25bf3896e6c21c38922e5cc420600260000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff020000000000000000236a21cdac56b1dd6d8f1177390edaa0d5def3b6d415b673b8a69ae59e08408112b7d18c00f2052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } } ``` @@ -11453,8 +11453,8 @@ Composes a transaction to Sends all assets and/or transfer ownerships to a desti Composes a transaction to send BTC to a dispenser. + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be sending (must have the necessary quantity of BTC) - + dispenser: `bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g` (str, required) - The dispenser that will be receiving the asset + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address that will be sending (must have the necessary quantity of BTC) + + dispenser: `bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy` (str, required) - The dispenser that will be receiving the asset + quantity: `1000` (int, required) - The quantity of BTC to send (in satoshis, hence integer) + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -11511,8 +11511,8 @@ Composes a transaction to send BTC to a dispenser. { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "quantity": 1000, "skip_validation": false }, @@ -11522,7 +11522,7 @@ Composes a transaction to send BTC to a dispenser. "btc_out": 1000, "btc_change": 4999999000, "btc_fee": 0, - "rawtransaction": "02000000000101215f231861e5b622b58e6b2abee10cad2699238d105dff1a04abdc554d6c835b00000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff03e803000000000000160014287acd9953ee89fa6b938a43fd6515acb4fd1e0f00000000000000000c6a0ab5093e6d20cfa6727b4418ee052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "02000000000101deefad00aebb78d55225b4c29d09fd06dbad60649f79641cee6457ab72ea27ae0000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff03e803000000000000160014c035166f0c339550322fb09e1a7ff181aa5646fd00000000000000000c6a0a04abec984033f47d451d18ee052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } } ``` @@ -11532,7 +11532,7 @@ Composes a transaction to send BTC to a dispenser. Composes a transaction to issue a new asset using the FairMinter protocol. + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be issuing the asset + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address that will be issuing the asset + asset: `MYASSET` (str, required) - The asset to issue + asset_parent (str, optional) - The parent asset of the asset to issue + Default: `` @@ -11621,7 +11621,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -11653,7 +11653,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "020000000001017c751df4631de1c9616aec45e7634a049c92b31ce9d74ca78df32c3fa09629af00000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000316a2f2b660474faa29eb9c5ccae18ce3b8e4fc0526cc81b281186cf19754fc822748732d2ab25928b3cdc59830bbb095c3e00f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "020000000001018ab561d1734f968558b4c69acdaec5c43ee23d77df19be07181733fbb03b12080000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff020000000000000000316a2ff3e469feb814911e8f2c5ba113f38ffa5189ca5cd620abb2513322087010232f8634d9ab99cb4efe0f1404a0610e0d00f2052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } } ``` @@ -11663,7 +11663,7 @@ Composes a transaction to issue a new asset using the FairMinter protocol. Composes a transaction to mint a quantity of an asset using the FairMinter protocol. + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address that will be minting the asset + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address that will be minting the asset + asset: `OPENFAIR` (str, required) - The asset to mint + quantity (int, optional) - The quantity of the asset to mint (in satoshis, hence integer) + Default: `0` @@ -11722,14 +11722,14 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "OPENFAIR", "quantity": 0, "skip_validation": false, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "issuer": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "divisible": true, "locked": false }, @@ -11741,7 +11741,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "02000000000101ce2278c985d555c1c97a5d9608b5e76e53af29de8da614a3fa5ba3e1f8748a9700000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000156a13ea1510453fd7721e4c0fd34d6760c74a07fb4d00f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "02000000000101df36988b4821e52edbca575e4b37af02f6fc43a896b5b381a9a02d336fc16c6f0000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff020000000000000000156a1353c10fc1d77fd072b500a8804b38055806c1ae00f2052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } } ``` @@ -11751,7 +11751,7 @@ Composes a transaction to mint a quantity of an asset using the FairMinter proto Composes a transaction to attach assets from an address to UTXO. + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address from which the assets are attached + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address from which the assets are attached + asset: `XCP` (str, required) - The asset or subasset to attach + quantity: `1000` (int, required) - The quantity of the asset to attach (in satoshis, hence integer) + destination_vout (str, optional) - The vout of the destination output @@ -11811,7 +11811,7 @@ Composes a transaction to attach assets from an address to UTXO. { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -11831,7 +11831,7 @@ Composes a transaction to attach assets from an address to UTXO. "btc_out": 10000, "btc_change": 4999990000, "btc_fee": 0, - "rawtransaction": "02000000000101a083620385610e58938234512b566b6b433db4be019147169c8eb57543417e8b00000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff031027000000000000160014a0a90e6acc5b35a094a931d109e64b559674fb840000000000000000146a12aeb7b16f0af5ae303e8ba37097a47641614df0ca052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "02000000000101e9b84abcf9b6d2c3d170dfe8655d95ebc1d60988e645d4c94a04466bbd15f45e0000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff03102700000000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb0000000000000000146a12556522324c558d0a2466bcd895d2c48ca738f0ca052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } } ``` @@ -11841,8 +11841,8 @@ Composes a transaction to attach assets from an address to UTXO. Composes a transaction to detach assets from UTXO to an address. + Parameters - + utxo: `bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0` (str, required) - The utxo from which the assets are detached - + destination: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + + utxo: `bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da:0` (str, required) - The utxo from which the assets are detached + + destination: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, optional) - The address to detach the assets to, if not provided the addresse corresponding to the utxo is used + Default: `None` + encoding (str, optional) - The encoding method to use + Default: `auto` @@ -11899,17 +11899,17 @@ Composes a transaction to detach assets from UTXO to an address. { "result": { "params": { - "source": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0", - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da:0", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "skip_validation": false }, "name": "detach", - "data": "434e54525052545966626372743171357a357375366b767476363670393966783867736e656a74326b743866377579673961736c61", + "data": "434e54525052545966626372743171326b7375723066736e736d6b72757577676d3070306a7232307238633230616d32357870377a", "btc_in": 10000, "btc_out": 0, "btc_change": 10000, "btc_fee": 0, - "rawtransaction": "02000000000101103306445e9e2206e7e480f5849f2ab7d012ec7c728afc41bfc478783a198cbc0000000016001447e5951068f42b237b00d9525db4515fd642e8e7ffffffff020000000000000000376a353a36eec8bd08a6a4377ee7e6e279b070abec5f17aaa20991607f3e514a2f67bec0ba05de90f349c74207f20b9f942694aff01abd43102700000000000016001447e5951068f42b237b00d9525db4515fd642e8e702000000000000" + "rawtransaction": "02000000000101dae602c583e481eee79604797acb4174c86a06520eb50c912e1c7e913323e7bd000000001600140102104371526b459cf231d9bd444dd573b343eaffffffff020000000000000000376a3500f35da86e21616627415fa37bc882a10ff277bb3137de2a13cc6a899110d0ed9ebe50c54c55163eeacb54ffe971ce8fefdc0e800a10270000000000001600140102104371526b459cf231d9bd444dd573b343ea02000000000000" } } ``` @@ -11919,8 +11919,8 @@ Composes a transaction to detach assets from UTXO to an address. Composes a transaction like a send but for moving from one UTXO to another, with the destination is specified as an address. + Parameters - + utxo: `bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0` (str, required) - The utxo from which the assets are moved - + destination: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - the address for which the destination utxo will be created + + utxo: `bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da:0` (str, required) - The utxo from which the assets are moved + + destination: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - the address for which the destination utxo will be created + encoding (str, optional) - The encoding method to use + Default: `auto` + fee_per_kb (int, optional) - The fee per kilobyte of transaction data constant that the server uses when deciding on the dynamic fee to use (in satoshis) @@ -11976,8 +11976,8 @@ Composes a transaction like a send but for moving from one UTXO to another, with { "result": { "params": { - "source": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0", - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da:0", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "skip_validation": false }, "name": "move", @@ -11986,7 +11986,7 @@ Composes a transaction like a send but for moving from one UTXO to another, with "btc_out": 10000, "btc_change": null, "btc_fee": 0, - "rawtransaction": "02000000000101103306445e9e2206e7e480f5849f2ab7d012ec7c728afc41bfc478783a198cbc0000000016001447e5951068f42b237b00d9525db4515fd642e8e7ffffffff011027000000000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "02000000000101dae602c583e481eee79604797acb4174c86a06520eb50c912e1c7e913323e7bd000000001600140102104371526b459cf231d9bd444dd573b343eaffffffff01102700000000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } } ``` @@ -12034,8 +12034,8 @@ Returns the valid assets "asset": "OPENFAIR", "asset_id": "117132633401", "asset_longname": null, - "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "owner": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "issuer": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "owner": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "divisible": true, "locked": false, "supply": 0, @@ -12043,16 +12043,16 @@ Returns the valid assets "description_locked": false, "first_issuance_block_index": 232, "last_issuance_block_index": 232, - "first_issuance_block_time": 1733662942, - "last_issuance_block_time": 1733662942, + "first_issuance_block_time": 1733664114, + "last_issuance_block_time": 1733664114, "supply_normalized": "0.00000000" }, { "asset": "PREMINT", "asset_id": "4837764613", "asset_longname": null, - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", - "owner": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", + "owner": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": false, "supply": 0, @@ -12060,16 +12060,16 @@ Returns the valid assets "description_locked": false, "first_issuance_block_index": 227, "last_issuance_block_index": 229, - "first_issuance_block_time": 1733662914, - "last_issuance_block_time": 1733662921, + "first_issuance_block_time": 1733664094, + "last_issuance_block_time": 1733664102, "supply_normalized": "0.00000000" }, { "asset": "STARTNOW", "asset_id": "150450094622", "asset_longname": null, - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", - "owner": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", + "owner": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": false, "supply": 0, @@ -12077,16 +12077,16 @@ Returns the valid assets "description_locked": false, "first_issuance_block_index": 225, "last_issuance_block_index": 226, - "first_issuance_block_time": 1733662907, - "last_issuance_block_time": 1733662911, + "first_issuance_block_time": 1733664086, + "last_issuance_block_time": 1733664091, "supply_normalized": "0.00000000" }, { "asset": "EXPANSIVE", "asset_id": "1024679892006", "asset_longname": null, - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", - "owner": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", + "owner": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": false, "supply": 0, @@ -12094,16 +12094,16 @@ Returns the valid assets "description_locked": false, "first_issuance_block_index": 222, "last_issuance_block_index": 223, - "first_issuance_block_time": 1733662886, - "last_issuance_block_time": 1733662889, + "first_issuance_block_time": 1733664076, + "last_issuance_block_time": 1733664080, "supply_normalized": "0.00000000" }, { "asset": "BURNER", "asset_id": "21328597", "asset_longname": null, - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", - "owner": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", + "owner": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true, "supply": 100000000, @@ -12111,8 +12111,8 @@ Returns the valid assets "description_locked": false, "first_issuance_block_index": 220, "last_issuance_block_index": 221, - "first_issuance_block_time": 1733662879, - "last_issuance_block_time": 1733662883, + "first_issuance_block_time": 1733664068, + "last_issuance_block_time": 1733664071, "supply_normalized": "1.00000000" } ], @@ -12138,8 +12138,8 @@ Returns an asset by its name "asset": "BURNER", "asset_id": "21328597", "asset_longname": null, - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", - "owner": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", + "owner": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true, "supply": 100000000, @@ -12147,8 +12147,8 @@ Returns an asset by its name "description_locked": false, "first_issuance_block_index": 220, "last_issuance_block_index": 221, - "first_issuance_block_time": 1733662879, - "last_issuance_block_time": 1733662883, + "first_issuance_block_time": 1733664068, + "last_issuance_block_time": 1733664071, "supply_normalized": "1.00000000" } } @@ -12183,7 +12183,7 @@ Returns the asset balances { "result": [ { - "address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -12192,14 +12192,14 @@ Returns the asset balances "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, "quantity_normalized": "0.80000000" }, { - "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "address": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -12208,7 +12208,7 @@ Returns the asset balances "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -12226,7 +12226,7 @@ Returns the balances of an address and asset + Parameters + asset: `XCP` (str, required) - The asset to return - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - The address to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -12236,7 +12236,7 @@ Returns the balances of an address and asset { "result": [ { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "asset_longname": null, "quantity": 82599966196, @@ -12289,9 +12289,9 @@ Returns the orders of an asset "result": [ { "tx_index": 53, - "tx_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", + "tx_hash": "8cf9dd0bba63907b47eaffd8339bfc5d2a084267465b28eccf9364df93ceed37", "block_index": 179, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12307,7 +12307,7 @@ Returns the orders of an asset "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662607, + "block_time": 1733663781, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12335,9 +12335,9 @@ Returns the orders of an asset }, { "tx_index": 55, - "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "tx_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", "block_index": 202, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -12353,7 +12353,7 @@ Returns the orders of an asset "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662777, + "block_time": 1733663962, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12381,9 +12381,9 @@ Returns the orders of an asset }, { "tx_index": 62, - "tx_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", + "tx_hash": "4387209cd138023912f31ea19f0290397fffd4f21b306e08ad5ef9c80d0836aa", "block_index": 188, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -12399,7 +12399,7 @@ Returns the orders of an asset "status": "cancelled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662715, + "block_time": 1733663880, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12427,9 +12427,9 @@ Returns the orders of an asset }, { "tx_index": 64, - "tx_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "tx_hash": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", "block_index": 211, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -12445,7 +12445,7 @@ Returns the orders of an asset "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662819, + "block_time": 1733664025, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12473,9 +12473,9 @@ Returns the orders of an asset }, { "tx_index": 56, - "tx_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "tx_hash": "5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", "block_index": 182, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -12491,7 +12491,7 @@ Returns the orders of an asset "status": "filled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662675, + "block_time": 1733663847, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -12553,13 +12553,13 @@ Returns the orders of an asset { "result": [ { - "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "tx0_index": 55, - "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 58, - "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "tx1_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "tx1_address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -12572,7 +12572,7 @@ Returns the orders of an asset "match_expire_index": 203, "fee_paid": 0, "status": "expired", - "block_time": 1733662785, + "block_time": 1733663979, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12592,13 +12592,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", "tx0_index": 55, - "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 56, - "tx1_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", - "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "tx1_hash": "5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", + "tx1_address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -12611,7 +12611,7 @@ Returns the orders of an asset "match_expire_index": 201, "fee_paid": 0, "status": "completed", - "block_time": 1733662675, + "block_time": 1733663847, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12631,13 +12631,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf_4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", + "id": "8cf9dd0bba63907b47eaffd8339bfc5d2a084267465b28eccf9364df93ceed37_017693fda4299ac90631a7e1b7d10c7e90c3c40fab69bac2d869882df78f16ad", "tx0_index": 53, - "tx0_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "8cf9dd0bba63907b47eaffd8339bfc5d2a084267465b28eccf9364df93ceed37", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 54, - "tx1_hash": "4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", - "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "tx1_hash": "017693fda4299ac90631a7e1b7d10c7e90c3c40fab69bac2d869882df78f16ad", + "tx1_address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12650,7 +12650,7 @@ Returns the orders of an asset "match_expire_index": 178, "fee_paid": 0, "status": "expired", - "block_time": 1733662607, + "block_time": 1733663781, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12670,13 +12670,13 @@ Returns the orders of an asset "fee_paid_normalized": "0.00000000" }, { - "id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "id": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "tx0_index": 64, - "tx0_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 58, - "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "tx1_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "tx1_address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -12689,7 +12689,7 @@ Returns the orders of an asset "match_expire_index": 224, "fee_paid": 0, "status": "expired", - "block_time": 1733662907, + "block_time": 1733664086, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12767,19 +12767,19 @@ Returns the credits of an asset "result": [ { "block_index": 221, - "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "address": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "asset": "BURNER", "quantity": 20000000, "calling_function": "fairmint commission", - "event": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", + "event": "feb9230ff4823ac9611af89348fc8b3a3ef21e174720c321bdd359100a8cf8a3", "tx_index": 97, "utxo": null, "utxo_address": null, - "block_time": 1733662883, + "block_time": 1733664071, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -12787,19 +12787,19 @@ Returns the credits of an asset }, { "block_index": 221, - "address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "asset": "BURNER", "quantity": 80000000, "calling_function": "fairmint", - "event": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", + "event": "feb9230ff4823ac9611af89348fc8b3a3ef21e174720c321bdd359100a8cf8a3", "tx_index": 97, "utxo": null, "utxo_address": null, - "block_time": 1733662883, + "block_time": 1733664071, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -12857,11 +12857,11 @@ Returns the debits of an asset "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "utxo": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "utxo_address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", - "block_time": 1733662951, + "utxo": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "utxo_address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12873,15 +12873,15 @@ Returns the debits of an asset }, { "block_index": 232, - "address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "event": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1733662942, + "block_time": 1733664114, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12893,15 +12893,15 @@ Returns the debits of an asset }, { "block_index": 227, - "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "address": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", + "event": "ece5e1523238a478b2934616134dbc3c0c0d7652e681fc120ac41e78259153a7", "tx_index": 101, "utxo": null, "utxo_address": null, - "block_time": 1733662914, + "block_time": 1733664094, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12913,15 +12913,15 @@ Returns the debits of an asset }, { "block_index": 225, - "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "address": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", + "event": "63c244c2e46947aec961ae8798f3dfec0a61e6bd08f81aae44f51f68344844d5", "tx_index": 100, "utxo": null, "utxo_address": null, - "block_time": 1733662907, + "block_time": 1733664086, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -12933,15 +12933,15 @@ Returns the debits of an asset }, { "block_index": 222, - "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "address": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "55c081be300d1ac4ff7b175d9795db435293e7dc10a2b88ba972b6995ca61ac6", + "event": "a3583dc43bd64e5e347a1ad1a0faf67afd0c866d117c1c7db51bea686adef8f7", "tx_index": 98, "utxo": null, "utxo_address": null, - "block_time": 1733662886, + "block_time": 1733664076, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13017,14 +13017,14 @@ Returns the issuances of an asset "result": [ { "tx_index": 97, - "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", + "tx_hash": "feb9230ff4823ac9611af89348fc8b3a3ef21e174720c321bdd359100a8cf8a3", "msg_index": 0, "block_index": 221, "asset": "BURNER", "quantity": 100000000, "divisible": true, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "transfer": false, "callable": false, "call_date": 0, @@ -13038,20 +13038,20 @@ Returns the issuances of an asset "description_locked": true, "fair_minting": false, "asset_events": "fairmint", - "block_time": 1733662883, + "block_time": 1733664071, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 96, - "tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", + "tx_hash": "16a2331c4274ae6134bdce67bdbfd33cd2b39ba2fd15ef604046a63f8992d3ed", "msg_index": 0, "block_index": 220, "asset": "BURNER", "quantity": 0, "divisible": true, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "transfer": false, "callable": false, "call_date": 0, @@ -13065,7 +13065,7 @@ Returns the issuances of an asset "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", - "block_time": 1733662879, + "block_time": 1733664068, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -13105,17 +13105,17 @@ Returns the sends, include Enhanced and MPMA sends, of an asset "result": [ { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13128,17 +13128,17 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 81, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "memo1", "fee_paid": 0, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13151,17 +13151,17 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 80, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "746865206d656d6f", "fee_paid": 0, - "block_time": 1733662785, + "block_time": 1733663979, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13174,17 +13174,17 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 79, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "memo1", "fee_paid": 0, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13197,17 +13197,17 @@ Returns the sends, include Enhanced and MPMA sends, of an asset }, { "tx_index": 78, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "the memo", "fee_paid": 0, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13256,9 +13256,9 @@ Returns the dispensers of an asset "result": [ { "tx_index": 26, - "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13267,7 +13267,7 @@ Returns the dispensers of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13277,7 +13277,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13294,9 +13294,9 @@ Returns the dispensers of an asset }, { "tx_index": 29, - "tx_hash": "6daa84f64ee34d9155c3428658588fff312d5e267875c528a19e7b6706fb3fa5", + "tx_hash": "148cc6cd20ece0f264176be2b23f51e8e38497541e62fb345744ad3d8f174bd9", "block_index": 133, - "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13305,7 +13305,7 @@ Returns the dispensers of an asset "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "origin": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -13315,7 +13315,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662488, + "block_time": 1733663657, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13332,9 +13332,9 @@ Returns the dispensers of an asset }, { "tx_index": 30, - "tx_hash": "ea1a192405fa4439cd194c2dd622e088addef725cb25debbd12b34766f2140a7", + "tx_hash": "c94bc472c505bbd908031a7adcf8e688d673892d00e7be53eb1fbee53f25379f", "block_index": 141, - "source": "mwGrVHb495rLnPnW2W9yvMfsayfdGhBD7M", + "source": "mvhkw2Szn9FeXit5DkusaxK7CS66HghzXC", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -13342,10 +13342,10 @@ Returns the dispensers of an asset "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "8d23eecb8396aa466580dc248667649c9fd8e56e37ec0e13c9361bb3e7ab2dd0", - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "last_status_tx_hash": "ce4c7b40d22c27be1bd046befedc5d0712705354c6e0fc7173a7549d97b51c88", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 0, - "last_status_tx_source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "last_status_tx_source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "close_block_index": 141, "price": 1.0, "fiat_price": null, @@ -13353,7 +13353,7 @@ Returns the dispensers of an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662517, + "block_time": 1733663694, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13370,18 +13370,18 @@ Returns the dispensers of an asset }, { "tx_index": 33, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "oracle_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "last_status_tx_hash": null, - "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "origin": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13391,7 +13391,7 @@ Returns the dispensers of an asset "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13417,7 +13417,7 @@ Returns the dispensers of an asset Returns the dispenser of an address and an asset + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - The address to return + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (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` @@ -13428,9 +13428,9 @@ Returns the dispenser of an address and an asset { "result": { "tx_index": 26, - "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -13439,7 +13439,7 @@ Returns the dispenser of an address and an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13449,7 +13449,7 @@ Returns the dispenser of an address and an asset "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13491,7 +13491,7 @@ Returns the holders of an asset "result": [ { "asset": "BURNER", - "address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "quantity": 80000000, "escrow": null, "cursor_id": "balances_55", @@ -13500,7 +13500,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -13508,7 +13508,7 @@ Returns the holders of an asset }, { "asset": "BURNER", - "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "address": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "quantity": 20000000, "escrow": null, "cursor_id": "balances_56", @@ -13517,7 +13517,7 @@ Returns the holders of an asset "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -13552,26 +13552,26 @@ Returns the dispenses of an asset { "tx_index": 106, "dispense_index": 0, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "btc_amount": 1000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "oracle_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "last_status_tx_hash": null, - "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "origin": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13586,7 +13586,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13600,26 +13600,26 @@ Returns the dispenses of an asset { "tx_index": 34, "dispense_index": 0, - "tx_hash": "72aeb92e989c915f9b002d26cd474ce972dcb2c06d76abfabf4feee4d3ba3e25", + "tx_hash": "7eb1c4f5b5224621998efc4c6d2cfac3df256cf1e7b2d01062ccfd70a9412e6f", "block_index": 138, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "destination": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "destination": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "btc_amount": 10000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "oracle_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "last_status_tx_hash": null, - "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "origin": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13634,7 +13634,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733662506, + "block_time": 1733663684, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13648,18 +13648,18 @@ Returns the dispenses of an asset { "tx_index": 28, "dispense_index": 0, - "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", + "tx_hash": "e02ea87bd0376af951ee8a57a3103e5d6f0265252ded7746b00c046b77033c51", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13667,7 +13667,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13682,7 +13682,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13696,18 +13696,18 @@ Returns the dispenses of an asset { "tx_index": 27, "dispense_index": 0, - "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", + "tx_hash": "8a51521b8419746fa32485a32a6632ab14a0832c48d2f16a28655b3595bfc17d", "block_index": 131, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -13715,7 +13715,7 @@ Returns the dispenses of an asset "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -13730,7 +13730,7 @@ Returns the dispenses of an asset "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662481, + "block_time": 1733663640, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -13800,10 +13800,10 @@ Returns the fairminter by its asset { "result": [ { - "tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", + "tx_hash": "16a2331c4274ae6134bdce67bdbfd33cd2b39ba2fd15ef604046a63f8992d3ed", "tx_index": 96, "block_index": 221, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "asset": "BURNER", "asset_parent": null, "asset_longname": null, @@ -13827,7 +13827,7 @@ Returns the fairminter by its asset "earned_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, - "block_time": 1733662883, + "block_time": 1733664071, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "1.00000000", "soft_cap_normalized": "0.00000000", @@ -13865,21 +13865,21 @@ Returns the mints by asset { "result": [ { - "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", + "tx_hash": "feb9230ff4823ac9611af89348fc8b3a3ef21e174720c321bdd359100a8cf8a3", "tx_index": 97, "block_index": 221, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "fairminter_tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "fairminter_tx_hash": "16a2331c4274ae6134bdce67bdbfd33cd2b39ba2fd15ef604046a63f8992d3ed", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", - "block_time": 1733662883, + "block_time": 1733664071, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -13898,7 +13898,7 @@ Returns the mints by asset Returns the mints by address and asset + Parameters - + address: `bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp` (str, required) - The address of the mints to return + + address: `bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl` (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` @@ -13956,9 +13956,9 @@ Returns all the orders "result": [ { "tx_index": 53, - "tx_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", + "tx_hash": "8cf9dd0bba63907b47eaffd8339bfc5d2a084267465b28eccf9364df93ceed37", "block_index": 179, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -13974,7 +13974,7 @@ Returns all the orders "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662607, + "block_time": 1733663781, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14002,9 +14002,9 @@ Returns all the orders }, { "tx_index": 55, - "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "tx_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", "block_index": 202, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -14020,7 +14020,7 @@ Returns all the orders "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662777, + "block_time": 1733663962, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14048,9 +14048,9 @@ Returns all the orders }, { "tx_index": 56, - "tx_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "tx_hash": "5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", "block_index": 182, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -14066,7 +14066,7 @@ Returns all the orders "status": "filled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662675, + "block_time": 1733663847, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -14094,9 +14094,9 @@ Returns all the orders }, { "tx_index": 58, - "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "block_index": 205, - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -14112,7 +14112,7 @@ Returns all the orders "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662789, + "block_time": 1733663983, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -14140,9 +14140,9 @@ Returns all the orders }, { "tx_index": 62, - "tx_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", + "tx_hash": "4387209cd138023912f31ea19f0290397fffd4f21b306e08ad5ef9c80d0836aa", "block_index": 188, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -14158,7 +14158,7 @@ Returns all the orders "status": "cancelled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662715, + "block_time": 1733663880, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14195,7 +14195,7 @@ Returns all the orders Returns the information of an order + Parameters - + order_hash: `97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308` (str, required) - The hash of the transaction that created the order + + order_hash: `93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f` (str, required) - The hash of the transaction that created the order + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -14205,9 +14205,9 @@ Returns the information of an order { "result": { "tx_index": 104, - "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "block_index": 231, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 0, @@ -14223,7 +14223,7 @@ Returns the information of an order "status": "open", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662928, + "block_time": 1733664110, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -14234,7 +14234,7 @@ Returns the information of an order "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "issuer": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "divisible": true, "locked": false }, @@ -14257,7 +14257,7 @@ Returns the information of an order Returns the order matches of an order + Parameters - + order_hash: `c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076` (str, required) - The hash of the transaction that created the order + + order_hash: `238eb2739cf62d41cc2aa459c23bc83d5c7b43f6a7bd00e39044d7be51abb255` (str, required) - The hash of the transaction that created the order + status (enum[str], optional) - The status of the order matches to return + Default: `all` + Members @@ -14282,13 +14282,13 @@ Returns the order matches of an order { "result": [ { - "id": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076_97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "id": "238eb2739cf62d41cc2aa459c23bc83d5c7b43f6a7bd00e39044d7be51abb255_93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "tx0_index": 103, - "tx0_hash": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076", - "tx0_address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "tx0_hash": "238eb2739cf62d41cc2aa459c23bc83d5c7b43f6a7bd00e39044d7be51abb255", + "tx0_address": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "tx1_index": 104, - "tx1_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", - "tx1_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx1_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", + "tx1_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -14301,11 +14301,11 @@ Returns the order matches of an order "match_expire_index": 251, "fee_paid": 0, "status": "pending", - "block_time": 1733662928, + "block_time": 1733664110, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "issuer": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "divisible": true, "locked": false }, @@ -14331,7 +14331,7 @@ Returns the order matches of an order Returns the BTC pays of an order + Parameters - + order_hash: `7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29` (str, required) - The hash of the transaction that created the order + + order_hash: `afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803` (str, required) - The hash of the transaction that created the order + cursor (str, optional) - The last index of the resolutions to return + Default: `None` + limit: `5` (int, optional) - The maximum number of resolutions to return @@ -14348,14 +14348,14 @@ Returns the BTC pays of an order "result": [ { "tx_index": 57, - "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", + "tx_hash": "9856ba83ca5f23579cb3f792ae48c1bc7497391d9677ad8d3e6a6fdf2d3025ec", "block_index": 182, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "btc_amount": 2000, - "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "order_match_id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", "status": "valid", - "block_time": 1733662675, + "block_time": 1733663847, "btc_amount_normalized": "0.00002000" } ], @@ -14397,9 +14397,9 @@ Returns the orders to exchange two assets "result": [ { "tx_index": 56, - "tx_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "tx_hash": "5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", "block_index": 182, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -14416,7 +14416,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1733662675, + "block_time": 1733663847, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -14442,9 +14442,9 @@ Returns the orders to exchange two assets }, { "tx_index": 58, - "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "block_index": 205, - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -14461,7 +14461,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1733662789, + "block_time": 1733663983, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -14487,9 +14487,9 @@ Returns the orders to exchange two assets }, { "tx_index": 53, - "tx_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", + "tx_hash": "8cf9dd0bba63907b47eaffd8339bfc5d2a084267465b28eccf9364df93ceed37", "block_index": 179, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -14506,7 +14506,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733662607, + "block_time": 1733663781, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14532,9 +14532,9 @@ Returns the orders to exchange two assets }, { "tx_index": 55, - "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "tx_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", "block_index": 202, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -14551,7 +14551,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733662777, + "block_time": 1733663962, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14577,9 +14577,9 @@ Returns the orders to exchange two assets }, { "tx_index": 62, - "tx_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", + "tx_hash": "4387209cd138023912f31ea19f0290397fffd4f21b306e08ad5ef9c80d0836aa", "block_index": 188, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -14596,7 +14596,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733662715, + "block_time": 1733663880, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14657,13 +14657,13 @@ Returns the orders to exchange two assets { "result": [ { - "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "tx0_index": 55, - "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 58, - "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "tx1_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "tx1_address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -14679,7 +14679,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733662785, + "block_time": 1733663979, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14699,13 +14699,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", "tx0_index": 55, - "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 56, - "tx1_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", - "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "tx1_hash": "5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", + "tx1_address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -14721,7 +14721,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733662675, + "block_time": 1733663847, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14741,13 +14741,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf_4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", + "id": "8cf9dd0bba63907b47eaffd8339bfc5d2a084267465b28eccf9364df93ceed37_017693fda4299ac90631a7e1b7d10c7e90c3c40fab69bac2d869882df78f16ad", "tx0_index": 53, - "tx0_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "8cf9dd0bba63907b47eaffd8339bfc5d2a084267465b28eccf9364df93ceed37", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 54, - "tx1_hash": "4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", - "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "tx1_hash": "017693fda4299ac90631a7e1b7d10c7e90c3c40fab69bac2d869882df78f16ad", + "tx1_address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -14763,7 +14763,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733662607, + "block_time": 1733663781, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14783,13 +14783,13 @@ Returns the orders to exchange two assets "fee_paid_normalized": "0.00000000" }, { - "id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "id": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "tx0_index": 64, - "tx0_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 58, - "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "tx1_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "tx1_address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -14805,7 +14805,7 @@ Returns the orders to exchange two assets "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733662907, + "block_time": 1733664086, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14861,13 +14861,13 @@ Returns all the order matches { "result": [ { - "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "tx0_index": 55, - "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 58, - "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "tx1_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "tx1_address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -14880,7 +14880,7 @@ Returns all the order matches "match_expire_index": 203, "fee_paid": 0, "status": "expired", - "block_time": 1733662785, + "block_time": 1733663979, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14900,13 +14900,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", "tx0_index": 55, - "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 56, - "tx1_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", - "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "tx1_hash": "5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", + "tx1_address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -14919,7 +14919,7 @@ Returns all the order matches "match_expire_index": 201, "fee_paid": 0, "status": "completed", - "block_time": 1733662675, + "block_time": 1733663847, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14939,13 +14939,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf_4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", + "id": "8cf9dd0bba63907b47eaffd8339bfc5d2a084267465b28eccf9364df93ceed37_017693fda4299ac90631a7e1b7d10c7e90c3c40fab69bac2d869882df78f16ad", "tx0_index": 53, - "tx0_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "8cf9dd0bba63907b47eaffd8339bfc5d2a084267465b28eccf9364df93ceed37", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 54, - "tx1_hash": "4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", - "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "tx1_hash": "017693fda4299ac90631a7e1b7d10c7e90c3c40fab69bac2d869882df78f16ad", + "tx1_address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -14958,7 +14958,7 @@ Returns all the order matches "match_expire_index": 178, "fee_paid": 0, "status": "expired", - "block_time": 1733662607, + "block_time": 1733663781, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -14978,13 +14978,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "id": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "tx0_index": 64, - "tx0_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 58, - "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "tx1_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "tx1_address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -14997,7 +14997,7 @@ Returns all the order matches "match_expire_index": 224, "fee_paid": 0, "status": "expired", - "block_time": 1733662907, + "block_time": 1733664086, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15017,13 +15017,13 @@ Returns all the order matches "fee_paid_normalized": "0.00000000" }, { - "id": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076_97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "id": "238eb2739cf62d41cc2aa459c23bc83d5c7b43f6a7bd00e39044d7be51abb255_93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "tx0_index": 103, - "tx0_hash": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076", - "tx0_address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "tx0_hash": "238eb2739cf62d41cc2aa459c23bc83d5c7b43f6a7bd00e39044d7be51abb255", + "tx0_address": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "tx1_index": 104, - "tx1_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", - "tx1_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx1_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", + "tx1_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -15036,11 +15036,11 @@ Returns all the order matches "match_expire_index": 251, "fee_paid": 0, "status": "pending", - "block_time": 1733662928, + "block_time": 1733664110, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "issuer": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "divisible": true, "locked": false }, @@ -15194,61 +15194,61 @@ Returns the burns "result": [ { "tx_index": 9, - "tx_hash": "95db2791e37d288a1a4fb3c7414e3aca564b4024baaaf2c7bc77689349c31ca7", + "tx_hash": "7f95f11da950a3e99186454fbeaac75e4716fe2aa0a9a0977ca5c2204bdd53de", "block_index": 112, - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733662402, + "block_time": 1733663559, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 8, - "tx_hash": "6de7deec7c8727742c815e615c25f63198863a9719b8689ce8570a98b634ce88", + "tx_hash": "90e561e2e4a37d3fedd43ff0256746d13bde3e5080f86bb85784b204a43502b9", "block_index": 112, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733662402, + "block_time": 1733663559, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 7, - "tx_hash": "ea86811a25f89384639a856ef3b3d26ebabfac1d2c31342efdef66929a8caf85", + "tx_hash": "d15f4575848c0390b190aea13dc5a78b4a5bfafc40e6f16ba96e05d9450e23b2", "block_index": 112, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1qf6h255qf77vgyg4exfe33z83e8dntf3rv2euq6", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733662402, + "block_time": 1733663559, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 6, - "tx_hash": "adc429a9b034bc1bf40ab54154ae4ed40522824a59177a92f9bae9163626d06a", + "tx_hash": "e5725f66d04c1c80d3497f53b35aeb29cbcbef04a521bb7910119812b75bf6a5", "block_index": 112, - "source": "bcrt1qcg7s7t5nr4edjh4znztk65wcrp3quf3h8ky2le", + "source": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733662402, + "block_time": 1733663559, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 5, - "tx_hash": "87bf46153fabbf44f202f0538ee531356e5ce77768e094ec9859b5a11380c959", + "tx_hash": "2b8a532563fa1fad30fded52f872327ec43ef62008e54605b4c7497f0c5b3fa1", "block_index": 112, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733662402, + "block_time": 1733663559, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" } @@ -15291,9 +15291,9 @@ Returns all dispensers "result": [ { "tx_index": 26, - "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -15302,7 +15302,7 @@ Returns all dispensers "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15312,7 +15312,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15329,9 +15329,9 @@ Returns all dispensers }, { "tx_index": 29, - "tx_hash": "6daa84f64ee34d9155c3428658588fff312d5e267875c528a19e7b6706fb3fa5", + "tx_hash": "148cc6cd20ece0f264176be2b23f51e8e38497541e62fb345744ad3d8f174bd9", "block_index": 133, - "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -15340,7 +15340,7 @@ Returns all dispensers "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "origin": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -15350,7 +15350,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662488, + "block_time": 1733663657, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15367,9 +15367,9 @@ Returns all dispensers }, { "tx_index": 30, - "tx_hash": "ea1a192405fa4439cd194c2dd622e088addef725cb25debbd12b34766f2140a7", + "tx_hash": "c94bc472c505bbd908031a7adcf8e688d673892d00e7be53eb1fbee53f25379f", "block_index": 141, - "source": "mwGrVHb495rLnPnW2W9yvMfsayfdGhBD7M", + "source": "mvhkw2Szn9FeXit5DkusaxK7CS66HghzXC", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -15377,10 +15377,10 @@ Returns all dispensers "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "8d23eecb8396aa466580dc248667649c9fd8e56e37ec0e13c9361bb3e7ab2dd0", - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "last_status_tx_hash": "ce4c7b40d22c27be1bd046befedc5d0712705354c6e0fc7173a7549d97b51c88", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 0, - "last_status_tx_source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "last_status_tx_source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "close_block_index": 141, "price": 1.0, "fiat_price": null, @@ -15388,7 +15388,7 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662517, + "block_time": 1733663694, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15405,9 +15405,9 @@ Returns all dispensers }, { "tx_index": 68, - "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "block_index": 194, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -15416,7 +15416,7 @@ Returns all dispensers "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -15426,11 +15426,11 @@ Returns all dispensers "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662737, + "block_time": 1733663923, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -15443,18 +15443,18 @@ Returns all dispensers }, { "tx_index": 33, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "oracle_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "last_status_tx_hash": null, - "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "origin": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15464,7 +15464,7 @@ Returns all dispensers "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15490,7 +15490,7 @@ Returns all dispensers Returns the dispenser information by tx_hash + Parameters - + dispenser_hash: `d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e` (str, required) - The hash of the dispenser to return + + dispenser_hash: `8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b` (str, required) - The hash of the dispenser to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -15500,9 +15500,9 @@ Returns the dispenser information by tx_hash { "result": { "tx_index": 26, - "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -15511,7 +15511,7 @@ Returns the dispenser information by tx_hash "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15521,7 +15521,7 @@ Returns the dispenser information by tx_hash "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15544,7 +15544,7 @@ Returns the dispenser information by tx_hash Returns the dispenses of a dispenser + Parameters - + dispenser_hash: `d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e` (str, required) - The hash of the dispenser to return + + dispenser_hash: `8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b` (str, required) - The hash of the dispenser to return + cursor (str, optional) - The last index of the dispenses to return + Default: `None` + limit: `5` (int, optional) - The maximum number of dispenses to return @@ -15562,18 +15562,18 @@ Returns the dispenses of a dispenser { "tx_index": 28, "dispense_index": 0, - "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", + "tx_hash": "e02ea87bd0376af951ee8a57a3103e5d6f0265252ded7746b00c046b77033c51", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15581,7 +15581,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15596,7 +15596,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15610,18 +15610,18 @@ Returns the dispenses of a dispenser { "tx_index": 27, "dispense_index": 0, - "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", + "tx_hash": "8a51521b8419746fa32485a32a6632ab14a0832c48d2f16a28655b3595bfc17d", "block_index": 131, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -15629,7 +15629,7 @@ Returns the dispenses of a dispenser "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -15644,7 +15644,7 @@ Returns the dispenses of a dispenser "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662481, + "block_time": 1733663640, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15684,19 +15684,19 @@ Returns all the dividends "result": [ { "tx_index": 42, - "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", + "tx_hash": "9676962b470a9998d30eeaec911a79f39a722075bb60a164d5e1ef5f59945120", "block_index": 146, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", - "block_time": 1733662534, + "block_time": 1733663711, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -15721,7 +15721,7 @@ Returns all the dividends Returns a dividend by its hash + Parameters - + dividend_hash: `4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e` (str, required) - The hash of the dividend to return + + dividend_hash: `9676962b470a9998d30eeaec911a79f39a722075bb60a164d5e1ef5f59945120` (str, required) - The hash of the dividend to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -15731,19 +15731,19 @@ Returns a dividend by its hash { "result": { "tx_index": 42, - "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", + "tx_hash": "9676962b470a9998d30eeaec911a79f39a722075bb60a164d5e1ef5f59945120", "block_index": 146, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", - "block_time": 1733662534, + "block_time": 1733663711, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -15765,7 +15765,7 @@ Returns a dividend by its hash Returns a dividend distribution by its hash + Parameters - + dividend_hash: `4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e` (str, required) - The hash of the dividend distribution to return + + dividend_hash: `9676962b470a9998d30eeaec911a79f39a722075bb60a164d5e1ef5f59945120` (str, required) - The hash of the dividend distribution to return + cursor (str, optional) - The last index of the credit to return + Default: `None` + limit: `5` (int, optional) - The maximum number of credit to return @@ -15786,11 +15786,11 @@ Returns a dividend distribution by its hash "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", + "event": "9676962b470a9998d30eeaec911a79f39a722075bb60a164d5e1ef5f59945120", "tx_index": 42, - "utxo": "4d60faaba1be8d75881d245edb4e2f8aed601765899645793cf6d3d731c5d520:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662534, + "utxo": "440be1bc00222cdf63bf492f473f82ad0f5089a2b917b7971f55ee413ee5af72:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733663711, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15834,27 +15834,27 @@ Returns all events "event": "BLOCK_PARSED", "params": { "block_index": 234, - "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", - "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", + "ledger_hash": "45ce2aec46047790b784c61e48d1a4a33fab17a4ae86db0601f02b5bc64a0fa1", + "messages_hash": "222bf6a0adcb1f8c1df56bb65831fdc05183e797fbca2ac43dbb06bdd89b9a88", "transaction_count": 1, - "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", - "block_time": 1733662951 + "txlist_hash": "f0253bdf0d14167513005643cdec3e8872519b0226a5194e52eae3149f35ddd5", + "block_time": 1733664124 }, "tx_hash": null, "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 929, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106 }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 928, @@ -15863,14 +15863,14 @@ Returns all events "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15881,9 +15881,9 @@ Returns all events "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 927, @@ -15892,9 +15892,9 @@ Returns all events "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": 0, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15904,24 +15904,24 @@ Returns all events }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -15931,9 +15931,9 @@ Returns all events }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 925, @@ -15959,15 +15959,15 @@ Returns the event of an index "event": "BLOCK_PARSED", "params": { "block_index": 234, - "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", - "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", + "ledger_hash": "45ce2aec46047790b784c61e48d1a4a33fab17a4ae86db0601f02b5bc64a0fa1", + "messages_hash": "222bf6a0adcb1f8c1df56bb65831fdc05183e797fbca2ac43dbb06bdd89b9a88", "transaction_count": 1, - "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", - "block_time": 1733662951 + "txlist_hash": "f0253bdf0d14167513005643cdec3e8872519b0226a5194e52eae3149f35ddd5", + "block_time": 1733664124 }, "tx_hash": null, "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } } ``` @@ -16041,16 +16041,16 @@ Returns the events filtered by event name "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16060,9 +16060,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 924, @@ -16072,12 +16072,12 @@ Returns the events filtered by event name "asset": "XCP", "block_index": 234, "calling_function": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 2000000000, "tx_index": 106, - "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662951, + "utxo": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16087,9 +16087,9 @@ Returns the events filtered by event name }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 921, @@ -16099,24 +16099,24 @@ Returns the events filtered by event name "asset": "MYASSETA", "block_index": 234, "calling_function": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 2000000000, "tx_index": 106, - "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662951, + "utxo": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 877, @@ -16126,39 +16126,39 @@ Returns the events filtered by event name "asset": "PREMINT", "block_index": 227, "calling_function": "escrowed premint", - "event": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", + "event": "ece5e1523238a478b2934616134dbc3c0c0d7652e681fc120ac41e78259153a7", "quantity": 50, "tx_index": 101, "utxo": null, "utxo_address": null, - "block_time": 1733662914, + "block_time": 1733664094, "asset_info": { "asset_longname": null, "description": "My super description", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": false }, "quantity_normalized": "0.00000050" }, - "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", + "tx_hash": "ece5e1523238a478b2934616134dbc3c0c0d7652e681fc120ac41e78259153a7", "block_index": 227, - "block_time": 1733662914 + "block_time": 1733664094 }, { "event_index": 860, "event": "CREDIT", "params": { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "event": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733662907, + "block_time": 1733664086, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16168,9 +16168,9 @@ Returns the events filtered by event name }, "quantity_normalized": "0.00001000" }, - "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", + "tx_hash": "63c244c2e46947aec961ae8798f3dfec0a61e6bd08f81aae44f51f68344844d5", "block_index": 225, - "block_time": 1733662907 + "block_time": 1733664086 } ], "next_cursor": 834, @@ -16222,26 +16222,26 @@ Returns all the dispenses { "tx_index": 106, "dispense_index": 0, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "btc_amount": 1000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "oracle_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "last_status_tx_hash": null, - "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "origin": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -16256,7 +16256,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16270,18 +16270,18 @@ Returns all the dispenses { "tx_index": 69, "dispense_index": 0, - "tx_hash": "3d816bb9da3e8382155c32330e0949633245a5b06a4e040498c8290561e28139", + "tx_hash": "da6a151b91397c5fe8d86bc389708b01e210739f880c2ea12bd3a0d517878c8a", "block_index": 194, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "dispenser_tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "btc_amount": 4000, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -16289,7 +16289,7 @@ Returns all the dispenses "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -16304,11 +16304,11 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662737, + "block_time": 1733663923, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -16318,26 +16318,26 @@ Returns all the dispenses { "tx_index": 34, "dispense_index": 0, - "tx_hash": "72aeb92e989c915f9b002d26cd474ce972dcb2c06d76abfabf4feee4d3ba3e25", + "tx_hash": "7eb1c4f5b5224621998efc4c6d2cfac3df256cf1e7b2d01062ccfd70a9412e6f", "block_index": 138, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "destination": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "destination": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "btc_amount": 10000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "oracle_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "last_status_tx_hash": null, - "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "origin": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -16352,7 +16352,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733662506, + "block_time": 1733663684, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16366,18 +16366,18 @@ Returns all the dispenses { "tx_index": 28, "dispense_index": 0, - "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", + "tx_hash": "e02ea87bd0376af951ee8a57a3103e5d6f0265252ded7746b00c046b77033c51", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -16385,7 +16385,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -16400,7 +16400,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16414,18 +16414,18 @@ Returns all the dispenses { "tx_index": 27, "dispense_index": 0, - "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", + "tx_hash": "8a51521b8419746fa32485a32a6632ab14a0832c48d2f16a28655b3595bfc17d", "block_index": 131, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -16433,7 +16433,7 @@ Returns all the dispenses "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -16448,7 +16448,7 @@ Returns all the dispenses "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662481, + "block_time": 1733663640, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16496,17 +16496,17 @@ Returns all the sends include Enhanced and MPMA sends "result": [ { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16519,21 +16519,21 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -16542,17 +16542,17 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "memo1", "fee_paid": 0, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -16565,21 +16565,21 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 1, "memo": "memo3", "fee_paid": 0, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -16588,21 +16588,21 @@ Returns all the sends include Enhanced and MPMA sends }, { "tx_index": 81, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 0, "memo": "the memo", "fee_paid": 0, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -16651,14 +16651,14 @@ Returns all the issuances "result": [ { "tx_index": 105, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "msg_index": 0, "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "issuer": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "transfer": false, "callable": false, "call_date": 0, @@ -16672,20 +16672,20 @@ Returns all the issuances "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", - "block_time": 1733662942, + "block_time": 1733664114, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 102, - "tx_hash": "b78410a2a80a2abbde1b69ab81f14bd7d3a9620b7d8594371942c474a0ea8776", + "tx_hash": "4e643061d48f23c90ba0e5c90b321b01eab4611cdaef5b04ba7e31327c126424", "msg_index": 0, "block_index": 229, "asset": "PREMINT", "quantity": 0, "divisible": true, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "transfer": false, "callable": false, "call_date": 0, @@ -16699,20 +16699,20 @@ Returns all the issuances "description_locked": false, "fair_minting": false, "asset_events": "change_description", - "block_time": 1733662921, + "block_time": 1733664102, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 101, - "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", + "tx_hash": "ece5e1523238a478b2934616134dbc3c0c0d7652e681fc120ac41e78259153a7", "msg_index": 1, "block_index": 228, "asset": "PREMINT", "quantity": 0, "divisible": true, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "transfer": false, "callable": false, "call_date": 0, @@ -16726,20 +16726,20 @@ Returns all the issuances "description_locked": false, "fair_minting": false, "asset_events": "close_fairminter", - "block_time": 1733662918, + "block_time": 1733664098, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 101, - "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", + "tx_hash": "ece5e1523238a478b2934616134dbc3c0c0d7652e681fc120ac41e78259153a7", "msg_index": 0, "block_index": 227, "asset": "PREMINT", "quantity": 50, "divisible": true, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "transfer": false, "callable": false, "call_date": 0, @@ -16753,20 +16753,20 @@ Returns all the issuances "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", - "block_time": 1733662914, + "block_time": 1733664094, "quantity_normalized": "0.00000050", "fee_paid_normalized": "0.50000000" }, { "tx_index": 100, - "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", + "tx_hash": "63c244c2e46947aec961ae8798f3dfec0a61e6bd08f81aae44f51f68344844d5", "msg_index": 1, "block_index": 226, "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "transfer": false, "callable": false, "call_date": 0, @@ -16780,7 +16780,7 @@ Returns all the issuances "description_locked": false, "fair_minting": false, "asset_events": "close_fairminter", - "block_time": 1733662911, + "block_time": 1733664091, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -16795,7 +16795,7 @@ Returns all the issuances Returns the issuances of a block + Parameters - + tx_hash: `ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8` (str, required) - The hash of the transaction to return + + tx_hash: `d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -16805,14 +16805,14 @@ Returns the issuances of a block { "result": { "tx_index": 105, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "msg_index": 0, "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "issuer": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "transfer": false, "callable": false, "call_date": 0, @@ -16826,7 +16826,7 @@ Returns the issuances of a block "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", - "block_time": 1733662942, + "block_time": 1733664114, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -16856,15 +16856,15 @@ Returns all sweeps "result": [ { "tx_index": 65, - "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", + "tx_hash": "f6f1dd1640fa599d048daaa43dd7ad57104761cce91bb73182ac3ce688e2daf1", "block_index": 190, - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, - "block_time": 1733662722, + "block_time": 1733663898, "fee_paid_normalized": "0.00600000" } ], @@ -16878,7 +16878,7 @@ Returns all sweeps Returns the sweeps of a transaction + Parameters - + tx_hash: `8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551` (str, required) - The hash of the transaction to return + + tx_hash: `f6f1dd1640fa599d048daaa43dd7ad57104761cce91bb73182ac3ce688e2daf1` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -16889,15 +16889,15 @@ Returns the sweeps of a transaction "result": [ { "tx_index": 65, - "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", + "tx_hash": "f6f1dd1640fa599d048daaa43dd7ad57104761cce91bb73182ac3ce688e2daf1", "block_index": 190, - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, - "block_time": 1733662722, + "block_time": 1733663898, "fee_paid_normalized": "0.00600000" } ], @@ -16929,30 +16929,30 @@ Returns all valid broadcasts "result": [ { "tx_index": 25, - "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", + "tx_hash": "0d855bb8de5f24b5c232aee85adf238f6f2a3dfb506f6b291a66f9f2d636966a", "block_index": 129, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, "text": "price-USD", "locked": false, "status": "valid", - "block_time": 1733662474, + "block_time": 1733663634, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "3241987309692b6707b4651f9f2a8e60f491efb1911cae2686f47ae12966e8f1", + "tx_hash": "c262dac35899eebabf2318179d4a8a961dd6559352d33589e7edbd5323b52320", "block_index": 128, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, "text": "Hello, world!", "locked": false, "status": "valid", - "block_time": 1733662470, + "block_time": 1733663630, "fee_fraction_int_normalized": "0.00000000" } ], @@ -16966,7 +16966,7 @@ Returns all valid broadcasts Returns the broadcast of a transaction + Parameters - + tx_hash: `5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf` (str, required) - The hash of the transaction to return + + tx_hash: `0d855bb8de5f24b5c232aee85adf238f6f2a3dfb506f6b291a66f9f2d636966a` (str, required) - The hash of the transaction to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -16976,16 +16976,16 @@ Returns the broadcast of a transaction { "result": { "tx_index": 25, - "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", + "tx_hash": "0d855bb8de5f24b5c232aee85adf238f6f2a3dfb506f6b291a66f9f2d636966a", "block_index": 129, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, "text": "price-USD", "locked": false, "status": "valid", - "block_time": 1733662474, + "block_time": 1733663634, "fee_fraction_int_normalized": "0.00000000" } } @@ -17020,10 +17020,10 @@ Returns all fairminters { "result": [ { - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "tx_index": 105, "block_index": 232, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "asset": "OPENFAIR", "asset_parent": null, "asset_longname": null, @@ -17047,7 +17047,7 @@ Returns all fairminters "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733662942, + "block_time": 1733664114, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -17056,10 +17056,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", + "tx_hash": "ece5e1523238a478b2934616134dbc3c0c0d7652e681fc120ac41e78259153a7", "tx_index": 101, "block_index": 228, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "asset": "PREMINT", "asset_parent": null, "asset_longname": null, @@ -17083,7 +17083,7 @@ Returns all fairminters "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733662918, + "block_time": 1733664098, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -17092,10 +17092,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000050" }, { - "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", + "tx_hash": "63c244c2e46947aec961ae8798f3dfec0a61e6bd08f81aae44f51f68344844d5", "tx_index": 100, "block_index": 226, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "asset": "STARTNOW", "asset_parent": null, "asset_longname": null, @@ -17119,7 +17119,7 @@ Returns all fairminters "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733662911, + "block_time": 1733664091, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -17128,10 +17128,10 @@ Returns all fairminters "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "21f686ef5af2440a808c1ccfdcf310053abc7d20da5eedcf6fb011ae89d8c422", + "tx_hash": "af09266a3c789c0ee44481677e7d55e022e18d1cb814ee656348b798f5f56f0c", "tx_index": 99, "block_index": 224, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "asset": null, "asset_parent": null, "asset_longname": null, @@ -17155,13 +17155,13 @@ Returns all fairminters "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733662893 + "block_time": 1733664083 }, { - "tx_hash": "55c081be300d1ac4ff7b175d9795db435293e7dc10a2b88ba972b6995ca61ac6", + "tx_hash": "a3583dc43bd64e5e347a1ad1a0faf67afd0c866d117c1c7db51bea686adef8f7", "tx_index": 98, "block_index": 223, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "asset": "EXPANSIVE", "asset_parent": null, "asset_longname": null, @@ -17185,7 +17185,7 @@ Returns all fairminters "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733662889, + "block_time": 1733664080, "price_normalized": "99900000000.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -17245,21 +17245,21 @@ Returns all fairmints { "result": [ { - "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", + "tx_hash": "feb9230ff4823ac9611af89348fc8b3a3ef21e174720c321bdd359100a8cf8a3", "tx_index": 97, "block_index": 221, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "fairminter_tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "fairminter_tx_hash": "16a2331c4274ae6134bdce67bdbfd33cd2b39ba2fd15ef604046a63f8992d3ed", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", - "block_time": 1733662883, + "block_time": 1733664071, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -17268,21 +17268,21 @@ Returns all fairmints "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "c078a7713eeb7de231ecc35c7a5d3af052929fd457546e76e80ce3c601ae9565", + "tx_hash": "cfd5d52db0004d5c662e58188c83c80eabbe2e1ee551e792b202c728cbb76dd5", "tx_index": 95, "block_index": 219, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "fairminter_tx_hash": "d2edc737c747e5f2031640e260b79f9298e92c792db93cbed5c3674e5acd5e6e", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "fairminter_tx_hash": "ec48a4f02cd559b5b7ac589d15ef3f5d4a99092ad3faa7290905a53bf1ebbc2b", "asset": "LOCKDESC", "earn_quantity": 800000000, "paid_quantity": 0, "commission": 200000000, "status": "valid", - "block_time": 1733662876, + "block_time": 1733664065, "asset_info": { "asset_longname": null, "description": "My super asset LOCKDESC", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -17291,21 +17291,21 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "35d1f1891ee7d00d5e7f8dfaa155d686d598074dd15b652ec736869735701453", + "tx_hash": "6a36a9b23de76c951f5db2e0b09cd7ae54841a5e09f122d6dbf273d3f5e82f38", "tx_index": 91, "block_index": 215, - "source": "bcrt1qj6tvevnnae8pm3edzntcj226e4ldzjefd2zw0x", - "fairminter_tx_hash": "547d662c481b6cce1fd0eebfbf61582a4c72c8f1c0c61721ae06a1b2d9ca776e", + "source": "bcrt1qx7pnpkyhrag0y4dknllvrpevam9zyjuelk48nc", + "fairminter_tx_hash": "a73da64e3a16c357d27307eeea3f02dd3864328ad91e3047c1987d1e15c6a1ef", "asset": "A95428959531084712", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1733662853, + "block_time": 1733664049, "asset_info": { "asset_longname": "PARENTA.SUBASSETC", "description": "", - "issuer": "bcrt1qj6tvevnnae8pm3edzntcj226e4ldzjefd2zw0x", + "issuer": "bcrt1qx7pnpkyhrag0y4dknllvrpevam9zyjuelk48nc", "divisible": true, "locked": false }, @@ -17314,21 +17314,21 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "f7afb409d53d760cc0e1b6287fb322b46c0cec5b0db19e0db1e4cb8e9acfa06c", + "tx_hash": "c596391857a9b55ece95aecde22793bcc1f097bf9a0c731b9c90b2d9287c9099", "tx_index": 46, "block_index": 150, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "fairminter_tx_hash": "f49987520b37269d66e22c08d64105ad8b3ca4ddd9cf77289a9c701eb7cd17fd", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "fairminter_tx_hash": "50923f7fcb999bf51e391f16f3d6904a103ab55460d3cd6094351a37489eb5b4", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1733662559, + "block_time": 1733663735, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -17337,21 +17337,21 @@ Returns all fairmints "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "0f816a7124ca2d321d50cb5a756e505409860107a5cdf6818af0c49903109e92", + "tx_hash": "05d3d95677e594741397af8c1b7d70d95526f042d85bf688b81d518bef7473b4", "tx_index": 45, "block_index": 149, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "fairminter_tx_hash": "f49987520b37269d66e22c08d64105ad8b3ca4ddd9cf77289a9c701eb7cd17fd", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "fairminter_tx_hash": "50923f7fcb999bf51e391f16f3d6904a103ab55460d3cd6094351a37489eb5b4", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1733662555, + "block_time": 1733663732, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -17370,7 +17370,7 @@ Returns all fairmints Returns the fairmint by its hash + Parameters - + tx_hash: `88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759` (str, required) - The hash of the fairmint to return + + tx_hash: `feb9230ff4823ac9611af89348fc8b3a3ef21e174720c321bdd359100a8cf8a3` (str, required) - The hash of the fairmint to return + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. + Default: `false` @@ -17379,21 +17379,21 @@ Returns the fairmint by its hash ``` { "result": { - "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", + "tx_hash": "feb9230ff4823ac9611af89348fc8b3a3ef21e174720c321bdd359100a8cf8a3", "tx_index": 97, "block_index": 221, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "fairminter_tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "fairminter_tx_hash": "16a2331c4274ae6134bdce67bdbfd33cd2b39ba2fd15ef604046a63f8992d3ed", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", - "block_time": 1733662883, + "block_time": 1733664071, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -17411,7 +17411,7 @@ Returns the fairmint by its hash Returns a list of unspent outputs for a list of addresses + Parameters - + addresses: `bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne,bcrt1qj6tvevnnae8pm3edzntcj226e4ldzjefd2zw0x` (str, required) - The addresses to search for + + addresses: `bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8,bcrt1qx7pnpkyhrag0y4dknllvrpevam9zyjuelk48nc` (str, required) - The addresses to search for + unconfirmed (bool, optional) - Include unconfirmed transactions + Default: `False` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -17423,13 +17423,13 @@ Returns a list of unspent outputs for a list of addresses { "result": [ { - "vout": 2, - "height": 199, - "value": 4949920000, - "confirmations": 36, - "amount": 49.4992, - "txid": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", - "address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne" + "vout": 0, + "height": 233, + "value": 15000, + "confirmations": 2, + "amount": 0.00015, + "txid": "3e4549f4bd2540253b62d5e536c760c8f28e7e68af7993ec4d34d1b65f9ab5be", + "address": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8" }, { "vout": 0, @@ -17437,17 +17437,17 @@ Returns a list of unspent outputs for a list of addresses "value": 10000, "confirmations": 36, "amount": 0.0001, - "txid": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", - "address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne" + "txid": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da", + "address": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8" }, { - "vout": 0, - "height": 233, - "value": 15000, - "confirmations": 2, - "amount": 0.00015, - "txid": "d48b379c567d8e56220067a7bc50b6d785a11121b304f71ad1854660c070c9bf", - "address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne" + "vout": 2, + "height": 199, + "value": 4949920000, + "confirmations": 36, + "amount": 49.4992, + "txid": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da", + "address": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8" } ], "next_cursor": null, @@ -17460,7 +17460,7 @@ Returns a list of unspent outputs for a list of addresses Returns all transactions involving a given address + Parameters - + address: `bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9` (str, required) - The address to search for + + address: `bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7` (str, required) - The address to search for + unconfirmed: `True` (bool, optional) - Include unconfirmed transactions + Default: `True` + only_tx_hashes: `True` (bool, optional) - Return only the tx hashes @@ -17474,28 +17474,28 @@ Returns all transactions involving a given address { "result": [ { - "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551" + "tx_hash": "0029eb4da947e26bd3ed87904102e20bea2ad94bca040173f69c34fe2bcedd01" }, { - "tx_hash": "c022cb0c0b98e04e436d5df0c7410993517ee3e9e62f947ed1fd42997fa40f8f" + "tx_hash": "a2b2ac4451d6edcfc816b7393cc7d9fe7395d8922b919d06e2825d461fed3004" }, { - "tx_hash": "61f41ef6ab83e2901e1c39f89c0c5850308b98b4ed814cee93127808b7bd3c91" + "tx_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55" }, { - "tx_hash": "ce4ebdc15f8677b23ee6f97b3f33ff103d754d54f993ab6f528797866d22419b" + "tx_hash": "8c6d598bbb403da7a00c447b94e0aede91bf5582dc0330668262311f7f09738a" }, { - "tx_hash": "95db2791e37d288a1a4fb3c7414e3aca564b4024baaaf2c7bc77689349c31ca7" + "tx_hash": "2e50a4e80b01fb522badf7fbd84862aa54b40ac6f94b60e585d3ad8e660b849f" }, { - "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8" + "tx_hash": "800ffe9b30b7f3cdf4be23b4d0e1eaee89247f2bf226c5daba651ebb01d3e59f" }, { - "tx_hash": "756966acacb7de325ad5f8f9b4ecc373854b6e7b0e706c205666bd59c3ed59c3" + "tx_hash": "7f95f11da950a3e99186454fbeaac75e4716fe2aa0a9a0977ca5c2204bdd53de" }, { - "tx_hash": "f1122472a2791b85e5881888994ffd1fbb6d2fbdf6ed9bc814022197b8d461e0" + "tx_hash": "f6f1dd1640fa599d048daaa43dd7ad57104761cce91bb73182ac3ce688e2daf1" } ], "next_cursor": null, @@ -17508,7 +17508,7 @@ Returns all transactions involving a given address Get the oldest transaction for an address. + Parameters - + address: `bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m` (str, required) - The address to search for. + + address: `bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp` (str, required) - The address to search for. + block_index (int, optional) - The block index to search from. + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -17519,8 +17519,8 @@ Get the oldest transaction for an address. ``` { "result": { - "block_index": 10, - "tx_hash": "e469fe31857a7f2fec51624324263fba1a5acd7a1ba7fcc455e2239904119973" + "block_index": 9, + "tx_hash": "ce98ecb24d227621cb231ca5e36f7347d803269419f39a73d1b06ff34023732c" } } ``` @@ -17530,7 +17530,7 @@ Get the oldest transaction for an address. Returns a list of unspent outputs for a specific address + Parameters - + address: `bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne` (str, required) - The address to search for + + address: `bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8` (str, required) - The address to search for + unconfirmed (bool, optional) - Include unconfirmed transactions + Default: `False` + unspent_tx_hash (str, optional) - Filter by unspent_tx_hash @@ -17543,21 +17543,13 @@ Returns a list of unspent outputs for a specific address ``` { "result": [ - { - "vout": 0, - "height": 233, - "value": 15000, - "confirmations": 2, - "amount": 0.00015, - "txid": "d48b379c567d8e56220067a7bc50b6d785a11121b304f71ad1854660c070c9bf" - }, { "vout": 2, "height": 199, "value": 4949920000, "confirmations": 36, "amount": 49.4992, - "txid": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310" + "txid": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da" }, { "vout": 0, @@ -17565,7 +17557,15 @@ Returns a list of unspent outputs for a specific address "value": 10000, "confirmations": 36, "amount": 0.0001, - "txid": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310" + "txid": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da" + }, + { + "vout": 0, + "height": 233, + "value": 15000, + "confirmations": 2, + "amount": 0.00015, + "txid": "3e4549f4bd2540253b62d5e536c760c8f28e7e68af7993ec4d34d1b65f9ab5be" } ], "next_cursor": null, @@ -17578,7 +17578,7 @@ Returns a list of unspent outputs for a specific address Get pubkey for an address. + Parameters - + address: `bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla` (str, required) - Address to get pubkey for. + + address: `bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z` (str, required) - Address to get pubkey for. + provided_pubkeys (str, optional) - Comma separated list of provided pubkeys. + Default: `None` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -17588,7 +17588,7 @@ Get pubkey for an address. ``` { - "result": "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" + "result": "03bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f48" } ``` @@ -17597,7 +17597,7 @@ Get pubkey for an address. Get a transaction from the blockchain + Parameters - + tx_hash: `24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b` (str, required) - The transaction hash + + tx_hash: `ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f` (str, required) - The transaction hash + format: `hex` (str, optional) - Whether to return JSON output or raw hex + Default: `json` + verbose: `true` (bool, optional) - Include asset and dispenser info and normalized quantities in the response. @@ -17607,7 +17607,7 @@ Get a transaction from the blockchain ``` { - "result": "020000000001011ceb53c6a3dce3d18382ad5e3780d0ea8d60fb0a2f98eb1251498608aa6858730100000000ffffffff03e803000000000000160014ca742dc81cac024b4cbde6236e1c599304258b4c00000000000000000c6a0ae188dda1bd4cd0f449a487140927010000001600140fa13933cab9aaea4cec2b6194cc224402aa6efe024730440220352aeb29117b931d5eebdf47f842688e1a116a0b6097cd220d203728209a24110220206b2946f514d6783bb2159466e097ef9cc807d5224470bc0c2003d49c322ea7012102aaee4b16d3883ba2f7cd0fc3e4ce2217159a774fd9f34ca4756a232e0799a47400000000" + "result": "02000000000101630fdd360012f438429a5b47af237e3d8bb82acc6bf6daea17e56b59389c53ea0100000000ffffffff03e8030000000000001600140368c8629d8d4a4cdb98e52538a5a1dc3a531aa200000000000000000c6a0a14422ad20b235e3837fd87140927010000001600143008f46eb4cce0041fe05407924d4e947ef1f45002473044022035c1bdf8c250cd0f9a15101d5a0edf0634fed83e2b89d3a8d3ddf8680dd438ea022035ef6513ab2000b82a22cf32318a79fbe0bddd44405a0c1f581551f1e3b6e37401210212d1bfe610828afc080aa6ffdcd54f6483ea10dbca8b3e58d228496eb086c61400000000" } ``` @@ -17758,27 +17758,27 @@ Returns all mempool events { "result": [ { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "tx_index": 107 }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "memo": null, "quantity": 10000, - "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "status": "valid", - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "tx_index": 107, "asset_info": { "asset_longname": null, @@ -17789,22 +17789,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "CREDIT", "params": { - "address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "asset": "XCP", "block_index": 234, "calling_function": "send", - "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "event": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -17814,22 +17814,22 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "address": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "asset": "XCP", "block_index": 234, - "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "event": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -17839,27 +17839,27 @@ Returns all mempool events }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1733662956.0412934, + "block_time": 1733664127.5138223, "btc_amount": 0, - "data": "020000000000000001000000000000271080f73044edb424e8df3d85a40888172e373ed483c0", + "data": "0200000000000000010000000000002710802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa", "destination": "", "fee": 10000, - "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "transaction_type": "enhanced_send", - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "tx_index": 107, - "utxos_info": " f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf:1 2 0", + "utxos_info": " bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9:1 2 0", "btc_amount_normalized": "0.00000000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 } ], "next_cursor": null, @@ -17888,19 +17888,19 @@ Returns the mempool events filtered by event name { "result": [ { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "CREDIT", "params": { - "address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "asset": "XCP", "block_index": 234, "calling_function": "send", - "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "event": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -17910,7 +17910,7 @@ Returns the mempool events filtered by event name }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 } ], "next_cursor": null, @@ -17923,7 +17923,7 @@ Returns the mempool events filtered by event name Returns the mempool events filtered by transaction hash + Parameters - + tx_hash: `f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf` (str, required) - The hash of the transaction to return + + tx_hash: `bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9` (str, required) - The hash of the transaction to return + event_name (str, optional) - Comma separated list of events to return + Default: `None` + cursor (str, optional) - The last event index to return @@ -17941,27 +17941,27 @@ Returns the mempool events filtered by transaction hash { "result": [ { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "tx_index": 107 }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "memo": null, "quantity": 10000, - "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "status": "valid", - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "tx_index": 107, "asset_info": { "asset_longname": null, @@ -17972,22 +17972,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "CREDIT", "params": { - "address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "asset": "XCP", "block_index": 234, "calling_function": "send", - "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "event": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -17997,22 +17997,22 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "address": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "asset": "XCP", "block_index": 234, - "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "event": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -18022,27 +18022,27 @@ Returns the mempool events filtered by transaction hash }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1733662956.0412934, + "block_time": 1733664127.5138223, "btc_amount": 0, - "data": "020000000000000001000000000000271080f73044edb424e8df3d85a40888172e373ed483c0", + "data": "0200000000000000010000000000002710802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa", "destination": "", "fee": 10000, - "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "transaction_type": "enhanced_send", - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "tx_index": 107, - "utxos_info": " f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf:1 2 0", + "utxos_info": " bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9:1 2 0", "btc_amount_normalized": "0.00000000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 } ], "next_cursor": null, diff --git a/counterparty-core/counterpartycore/lib/setup.py b/counterparty-core/counterpartycore/lib/setup.py index e0d8be0a2a..d828154658 100644 --- a/counterparty-core/counterpartycore/lib/setup.py +++ b/counterparty-core/counterpartycore/lib/setup.py @@ -107,9 +107,8 @@ def extract_bitcoincore_config(): "rpcssl": "backend-ssl", } - for bitcoind_key in config_keys: + for bitcoind_key, counterparty_key in config_keys.items(): if bitcoind_key in conf: - counterparty_key = config_keys[bitcoind_key] bitcoincore_config[counterparty_key] = conf[bitcoind_key] return bitcoincore_config @@ -144,9 +143,8 @@ def server_to_client_config(server_config): "rpc-password": "counterparty-rpc-password", } - for server_key in config_keys: + for server_key, client_key in config_keys.items(): if server_key in server_config: - client_key = config_keys[server_key] client_config[client_key] = server_config[server_key] return client_config diff --git a/counterparty-core/counterpartycore/test/fixtures/scenarios.py b/counterparty-core/counterpartycore/test/fixtures/scenarios.py index c3807a422b..c3f669ac34 100644 --- a/counterparty-core/counterpartycore/test/fixtures/scenarios.py +++ b/counterparty-core/counterpartycore/test/fixtures/scenarios.py @@ -582,8 +582,8 @@ def generate_standard_scenario(address1, address2, order_matches): "parseblock_unittest_fixture": (PARSEBLOCKS_FIXTURE, "parseblock_unittest_fixture"), } # Generate special tests for simplesig, multisig2 and multisig3 using standard scenario. -for scenario_name in standard_scenarios_params: +for scenario_name, params in standard_scenarios_params.items(): INTEGRATION_SCENARIOS[scenario_name] = ( - generate_standard_scenario(**standard_scenarios_params[scenario_name]), + generate_standard_scenario(**params), scenario_name, ) diff --git a/counterparty-core/counterpartycore/test/p2sh_encoding_test.py b/counterparty-core/counterpartycore/test/p2sh_encoding_test.py index f1b2159585..06322541d9 100644 --- a/counterparty-core/counterpartycore/test/p2sh_encoding_test.py +++ b/counterparty-core/counterpartycore/test/p2sh_encoding_test.py @@ -38,9 +38,10 @@ def test_p2sh_encoding_composed(server_db): source = ADDR[0] # noqa: F841 destination = ADDR[1] # noqa: F841 - with util_test.ConfigContext( - DISABLE_ARC4_MOCKING=True, OLD_STYLE_API=True - ), util_test.MockProtocolChangesContext(enhanced_sends=True, p2sh_encoding=True): + with ( + util_test.ConfigContext(DISABLE_ARC4_MOCKING=True, OLD_STYLE_API=True), + util_test.MockProtocolChangesContext(enhanced_sends=True, p2sh_encoding=True), + ): # BTC Mainnet tx d90dc8637fd2ab9ae39b7c2929c793c5d28d7dea672afb02fb4001637085e9a1 datatxhex = "010000000102d2b137e49e930ef3e436b342713d8d07bd378e773c915a5938993d81dc7e6000000000fdab0147304402207848293e88563750f647e949cb594cdbec0beb4070faac73040d77d479420f8302201e0ac32788e98bd984279102b7382576d7ddb4b125d1d507725cbd12d97a2908014d60014d1401434e5452505254590300010042276049e5518791be2ffe2c301f5dfe9ef85dd0400001720034b0410000000000000001500000006a79811e000000000000000054000079cec1665f4800000000000000050000000ca91f2d660000000000000005402736c8de6e34d54000000000000001500c5e4c71e081ceb00000000000000054000000045dc03ec4000000000000000500004af1271cf5fc00000000000000054001e71f8464432780000000000000015000002e1e4191f0d0000000000000005400012bc4aaac2a54000000000000001500079c7e774e411c00000000000000054000000045dc0a6f00000000000000015000002e1e486f661000000000000000540001c807abe13908000000000000000475410426156245525daa71f2e84a40797bcf28099a2c508662a8a33324a703597b9aa2661a79a82ffb4caaa9b15f4094622fbfa85f8b9dc7381f991f5a265421391cc3ad0075740087ffffffff0100000000000000000e6a0c31d52bf3b404aefaf596cfd000000000" config.PREFIX = b"CNTRPRTY" @@ -66,10 +67,11 @@ def test_p2sh_encoding(server_db): source = ADDR[0] destination = ADDR[1] - with util_test.ConfigContext( - DISABLE_ARC4_MOCKING=True, OLD_STYLE_API=True - ), util_test.MockProtocolChangesContext( - enhanced_sends=True, p2sh_encoding=True, short_tx_type_id=False + with ( + util_test.ConfigContext(DISABLE_ARC4_MOCKING=True, OLD_STYLE_API=True), + util_test.MockProtocolChangesContext( + enhanced_sends=True, p2sh_encoding=True, short_tx_type_id=False + ), ): utxos = dict( ((utxo["txid"], utxo["vout"]), utxo) @@ -248,8 +250,11 @@ def test_p2sh_encoding_long_data(server_db): source = ADDR[0] destination = ADDR[1] # noqa: F841 - with util_test.ConfigContext(OLD_STYLE_API=True), util_test.MockProtocolChangesContext( - enhanced_sends=True, p2sh_encoding=True, short_tx_type_id=False + with ( + util_test.ConfigContext(OLD_STYLE_API=True), + util_test.MockProtocolChangesContext( + enhanced_sends=True, p2sh_encoding=True, short_tx_type_id=False + ), ): utxos = dict( ((utxo["txid"], utxo["vout"]), utxo) @@ -434,8 +439,11 @@ def test_p2sh_encoding_p2sh_source_not_supported(server_db): source = P2SH_ADDR[0] destination = ADDR[1] - with util_test.ConfigContext(OLD_STYLE_API=True), util_test.MockProtocolChangesContext( - enhanced_sends=True, p2sh_encoding=True, short_tx_type_id=False + with ( + util_test.ConfigContext(OLD_STYLE_API=True), + util_test.MockProtocolChangesContext( + enhanced_sends=True, p2sh_encoding=True, short_tx_type_id=False + ), ): fee = 20000 fee_per_kb = 50000 @@ -459,8 +467,11 @@ def test_p2sh_encoding_manual_multisig_transaction(server_db): source = P2SH_ADDR[0] destination = ADDR[1] - with util_test.ConfigContext(OLD_STYLE_API=True), util_test.MockProtocolChangesContext( - enhanced_sends=True, p2sh_encoding=True, short_tx_type_id=False + with ( + util_test.ConfigContext(OLD_STYLE_API=True), + util_test.MockProtocolChangesContext( + enhanced_sends=True, p2sh_encoding=True, short_tx_type_id=False + ), ): p2sh_source_multisig_pubkeys_binary = [ binascii.unhexlify(p) diff --git a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json index 019ef40054..c2c0a1c72c 100644 --- a/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json +++ b/counterparty-core/counterpartycore/test/regtest/apidoc/apicache.json @@ -3,56 +3,56 @@ "result": [ { "block_index": 234, - "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", - "block_time": 1733662951, - "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", - "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", - "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", - "previous_block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482", + "block_hash": "00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45", + "block_time": 1733664124, + "ledger_hash": "45ce2aec46047790b784c61e48d1a4a33fab17a4ae86db0601f02b5bc64a0fa1", + "txlist_hash": "f0253bdf0d14167513005643cdec3e8872519b0226a5194e52eae3149f35ddd5", + "messages_hash": "222bf6a0adcb1f8c1df56bb65831fdc05183e797fbca2ac43dbb06bdd89b9a88", + "previous_block_hash": "603c0b67e999c35cec4f4087e3c7b289be955ffa9129efb92fcd29a661dcf7c6", "difficulty": 545259519, "transaction_count": 1 }, { "block_index": 233, - "block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482", - "block_time": 1733662945, - "ledger_hash": "c4effb812a79178863a6ce95a80026fdcbbc521bcd82420d62b64d1662592807", - "txlist_hash": "faa07c0ac1aa2d221ab2faf26a4de852b4a50bcd5a73981f9ba109caeb3f9eea", - "messages_hash": "a9fa900b8f6522f9dc91f323b9d39abbf0d8bb9599e6bc75fb0dde9729d12d3f", - "previous_block_hash": "5b934ef246230a877ae6d123edb3ed2e9e334e4e08e11d0d96617acbd2940927", + "block_hash": "603c0b67e999c35cec4f4087e3c7b289be955ffa9129efb92fcd29a661dcf7c6", + "block_time": 1733664118, + "ledger_hash": "c2db7954b543ce6ad169ccccd44d83e5a832b186c87a1d0ab1878c286a08cbae", + "txlist_hash": "c3494442dcd9185c66336e58b76f9e3e3cd510babcf72024f7d28b1d3c150d2c", + "messages_hash": "5c2fc2e16817c2cc6f82fd6c393526c3d125ac97b539877653d06865ce618843", + "previous_block_hash": "3052aa47893addec70f3784c26325d7cdd6351d3f301dc5d70cd31602b00b9a6", "difficulty": 545259519, "transaction_count": 0 }, { "block_index": 232, - "block_hash": "5b934ef246230a877ae6d123edb3ed2e9e334e4e08e11d0d96617acbd2940927", - "block_time": 1733662942, - "ledger_hash": "e32d339f6d64ba68194a1ee7f4dd31b6707316212fbebc113225d2911e9da526", - "txlist_hash": "6b32615860ef61fe693553866e61d8b9ac89c3b0c68970b803ae5e8d77953142", - "messages_hash": "0b1dded5296e4e8a337f1705a58d44df91ef8edd6eb463ab479f219b18a35bf2", - "previous_block_hash": "24100a2e929da6ee163f9710db8efbaca85f19101a3b869caf7c47fc69ea1e79", + "block_hash": "3052aa47893addec70f3784c26325d7cdd6351d3f301dc5d70cd31602b00b9a6", + "block_time": 1733664114, + "ledger_hash": "5e47081164b2ce9aa6029575ca5be12d3f3d7d7281f51bbd33af29a322d2e5af", + "txlist_hash": "04e1356704b7d2744f10bcbc87c2a1517d3b0eacaed5bc2124a0297cbaaccf46", + "messages_hash": "268327255eb4b2eb4b9f7da99409e1dfac33d4895aba11ce78ea11abd503e447", + "previous_block_hash": "2a11b56f9b980cdc5c11d5cbbf3d691cc80df4b7050bdddd26af75c7f38d7071", "difficulty": 545259519, "transaction_count": 1 }, { "block_index": 231, - "block_hash": "24100a2e929da6ee163f9710db8efbaca85f19101a3b869caf7c47fc69ea1e79", - "block_time": 1733662928, - "ledger_hash": "4c1955e9609c751f3bd23ab4e79524f761a774e4817f7bfa4945f01ed5fc2fe8", - "txlist_hash": "2d9b43604aa3d491cb58bfbfe246a19be9a1cb49313411571ab32fd493b1dd1f", - "messages_hash": "fa344060ce89302213bead5a679a8e936eb9b6f03963893d09fe986cd961a41b", - "previous_block_hash": "4e86867ff19ab5f8c6edfcce7beab0df102e903f9a94ad15af6c0fe5935916bc", + "block_hash": "2a11b56f9b980cdc5c11d5cbbf3d691cc80df4b7050bdddd26af75c7f38d7071", + "block_time": 1733664110, + "ledger_hash": "698fba3ba5b655f33952ca39db01968dc4eb5a9ccb31f4ebfd14fea0dfd4f303", + "txlist_hash": "5b0a0968e715df261e662b479ade150e96a714b3888243aa22e0de2ed4f319b9", + "messages_hash": "2e3b492eb147415acc838539036973df025c4f15385fcde19c7745cba9e389b5", + "previous_block_hash": "6eb906bac2608e669fc33efb2ef92bc4e89b1c622ec137557ab75ecdc8512e55", "difficulty": 545259519, "transaction_count": 1 }, { "block_index": 230, - "block_hash": "4e86867ff19ab5f8c6edfcce7beab0df102e903f9a94ad15af6c0fe5935916bc", - "block_time": 1733662924, - "ledger_hash": "3b4ac818c89ec20fe795ff45aa0ddb6252a42e5d39e887bec818b1a4e2835172", - "txlist_hash": "8df69dd5bc43012fbfed4d7c9d79bd6b0e47e75fac8c98f89ceaa562d20b3ed7", - "messages_hash": "050f2205d08ef79443c4575005e8991d8d4f17996f53f1942b9702b8bbe59c31", - "previous_block_hash": "7cecdf143482d91a29a97d0fee2369913272ce9d8c597c5b8916aae7e9f0fc6f", + "block_hash": "6eb906bac2608e669fc33efb2ef92bc4e89b1c622ec137557ab75ecdc8512e55", + "block_time": 1733664106, + "ledger_hash": "7fc392c589c7ab35b807ce106d04fb88dafdf4c978905ec3cd3380e770e2cb77", + "txlist_hash": "7af48f51b266807b1db7dc345ead381b6cdeb0bb444cdf9dafac537d9fef4f08", + "messages_hash": "d03a92c96081ce9269f0c0da1a7819293a7f81aa8d860ce88dc5c93dc6fb2b58", + "previous_block_hash": "13852c4f1bfc9f8171bd4aca403c68bda53d0a39ee28bb1b074d8060b4be5e39", "difficulty": 545259519, "transaction_count": 1 } @@ -63,12 +63,12 @@ "/v2/blocks/last": { "result": { "block_index": 234, - "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", - "block_time": 1733662951, - "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", - "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", - "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", - "previous_block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482", + "block_hash": "00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45", + "block_time": 1733664124, + "ledger_hash": "45ce2aec46047790b784c61e48d1a4a33fab17a4ae86db0601f02b5bc64a0fa1", + "txlist_hash": "f0253bdf0d14167513005643cdec3e8872519b0226a5194e52eae3149f35ddd5", + "messages_hash": "222bf6a0adcb1f8c1df56bb65831fdc05183e797fbca2ac43dbb06bdd89b9a88", + "previous_block_hash": "603c0b67e999c35cec4f4087e3c7b289be955ffa9129efb92fcd29a661dcf7c6", "difficulty": 545259519, "transaction_count": 1 } @@ -76,12 +76,12 @@ "/v2/blocks/": { "result": { "block_index": 234, - "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", - "block_time": 1733662951, - "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", - "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", - "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", - "previous_block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482", + "block_hash": "00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45", + "block_time": 1733664124, + "ledger_hash": "45ce2aec46047790b784c61e48d1a4a33fab17a4ae86db0601f02b5bc64a0fa1", + "txlist_hash": "f0253bdf0d14167513005643cdec3e8872519b0226a5194e52eae3149f35ddd5", + "messages_hash": "222bf6a0adcb1f8c1df56bb65831fdc05183e797fbca2ac43dbb06bdd89b9a88", + "previous_block_hash": "603c0b67e999c35cec4f4087e3c7b289be955ffa9129efb92fcd29a661dcf7c6", "difficulty": 545259519, "transaction_count": 1 } @@ -89,12 +89,12 @@ "/v2/blocks/": { "result": { "block_index": 234, - "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", - "block_time": 1733662951, - "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", - "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", - "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", - "previous_block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482", + "block_hash": "00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45", + "block_time": 1733664124, + "ledger_hash": "45ce2aec46047790b784c61e48d1a4a33fab17a4ae86db0601f02b5bc64a0fa1", + "txlist_hash": "f0253bdf0d14167513005643cdec3e8872519b0226a5194e52eae3149f35ddd5", + "messages_hash": "222bf6a0adcb1f8c1df56bb65831fdc05183e797fbca2ac43dbb06bdd89b9a88", + "previous_block_hash": "603c0b67e999c35cec4f4087e3c7b289be955ffa9129efb92fcd29a661dcf7c6", "difficulty": 545259519, "transaction_count": 1 } @@ -103,17 +103,17 @@ "result": [ { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", - "block_time": 1733662951, - "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", - "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_hash": "00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45", + "block_time": 1733664124, + "source": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", + "destination": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", + "utxos_info": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1 ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0 3 1", "transaction_type": "dispense", "events": [ { @@ -122,26 +122,26 @@ "params": { "asset": "MYASSETA", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 0, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 925, @@ -149,14 +149,14 @@ "params": { "asset": "XCP", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 1, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -166,9 +166,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 927, @@ -177,9 +177,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": 0, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -189,9 +189,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 928, @@ -200,14 +200,14 @@ "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -218,9 +218,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "unpacked_data": { @@ -247,11 +247,11 @@ "event": "BLOCK_PARSED", "params": { "block_index": 234, - "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", - "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", + "ledger_hash": "45ce2aec46047790b784c61e48d1a4a33fab17a4ae86db0601f02b5bc64a0fa1", + "messages_hash": "222bf6a0adcb1f8c1df56bb65831fdc05183e797fbca2ac43dbb06bdd89b9a88", "transaction_count": 1, - "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", - "block_time": 1733662951 + "txlist_hash": "f0253bdf0d14167513005643cdec3e8872519b0226a5194e52eae3149f35ddd5", + "block_time": 1733664124 }, "tx_hash": null }, @@ -260,10 +260,10 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106 }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f" }, { "event_index": 928, @@ -272,14 +272,14 @@ "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -290,7 +290,7 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f" }, { "event_index": 927, @@ -299,9 +299,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": 0, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -311,22 +311,22 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f" }, { "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -336,7 +336,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f" } ], "next_cursor": 925, @@ -374,16 +374,16 @@ "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -393,7 +393,7 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f" }, { "event_index": 924, @@ -403,12 +403,12 @@ "asset": "XCP", "block_index": 234, "calling_function": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 2000000000, "tx_index": 106, - "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662951, + "utxo": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -418,7 +418,7 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f" }, { "event_index": 921, @@ -428,22 +428,22 @@ "asset": "MYASSETA", "block_index": 234, "calling_function": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 2000000000, "tx_index": 106, - "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662951, + "utxo": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b" + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f" } ], "next_cursor": null, @@ -453,15 +453,15 @@ "result": [ { "block_index": 234, - "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "quantity": 66, "calling_function": "dispense", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -477,11 +477,11 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662951, + "utxo": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -497,15 +497,15 @@ "asset": "MYASSETA", "quantity": 2000000000, "calling_function": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662951, + "utxo": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -523,11 +523,11 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "utxo": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "utxo_address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", - "block_time": 1733662951, + "utxo": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "utxo_address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -543,15 +543,15 @@ "asset": "MYASSETA", "quantity": 2000000000, "action": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "utxo": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "utxo_address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", - "block_time": 1733662951, + "utxo": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "utxo_address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -565,9 +565,9 @@ "result": [ { "type": "order", - "object_id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "object_id": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", "block_index": 211, - "block_time": 1733662819 + "block_time": 1733664025 } ], "next_cursor": null, @@ -577,12 +577,12 @@ "result": [ { "tx_index": 63, - "tx_hash": "de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6", + "tx_hash": "669b450cbfa122294f7dcee16998a68b9e2aab3815b341a188918aef777e401c", "block_index": 188, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "offer_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "offer_hash": "4387209cd138023912f31ea19f0290397fffd4f21b306e08ad5ef9c80d0836aa", "status": "valid", - "block_time": 1733662715 + "block_time": 1733663880 } ], "next_cursor": null, @@ -592,18 +592,18 @@ "result": [ { "tx_index": 101, - "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", + "tx_hash": "ece5e1523238a478b2934616134dbc3c0c0d7652e681fc120ac41e78259153a7", "block_index": 228, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "asset": "PREMINT", "quantity": 50, "tag": "soft cap not reached", "status": "valid", - "block_time": 1733662918, + "block_time": 1733664098, "asset_info": { "asset_longname": null, "description": "My super description", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": false }, @@ -617,14 +617,14 @@ "result": [ { "tx_index": 105, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "msg_index": 0, "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "issuer": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "transfer": false, "callable": false, "call_date": 0, @@ -638,7 +638,7 @@ "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", - "block_time": 1733662942, + "block_time": 1733664114, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -650,17 +650,17 @@ "result": [ { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -673,21 +673,21 @@ }, { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -703,26 +703,26 @@ { "tx_index": 106, "dispense_index": 0, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "btc_amount": 1000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "oracle_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "last_status_tx_hash": null, - "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "origin": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -737,7 +737,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -756,15 +756,15 @@ "result": [ { "tx_index": 65, - "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", + "tx_hash": "f6f1dd1640fa599d048daaa43dd7ad57104761cce91bb73182ac3ce688e2daf1", "block_index": 190, - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, - "block_time": 1733662722, + "block_time": 1733663898, "fee_paid_normalized": "0.00600000" } ], @@ -774,10 +774,10 @@ "/v2/blocks//fairminters": { "result": [ { - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "tx_index": 105, "block_index": 232, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "asset": "OPENFAIR", "asset_parent": null, "asset_longname": null, @@ -801,7 +801,7 @@ "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733662942, + "block_time": 1733664114, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -816,21 +816,21 @@ "/v2/blocks//fairmints": { "result": [ { - "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", + "tx_hash": "feb9230ff4823ac9611af89348fc8b3a3ef21e174720c321bdd359100a8cf8a3", "tx_index": 97, "block_index": 221, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "fairminter_tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "fairminter_tx_hash": "16a2331c4274ae6134bdce67bdbfd33cd2b39ba2fd15ef604046a63f8992d3ed", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", - "block_time": 1733662883, + "block_time": 1733664071, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -846,17 +846,17 @@ "result": [ { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", - "block_time": 1733662951, - "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", - "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_hash": "00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45", + "block_time": 1733664124, + "source": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", + "destination": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", + "utxos_info": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1 ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0 3 1", "transaction_type": "dispense", "events": [ { @@ -865,26 +865,26 @@ "params": { "asset": "MYASSETA", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 0, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 925, @@ -892,14 +892,14 @@ "params": { "asset": "XCP", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 1, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -909,9 +909,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 927, @@ -920,9 +920,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": 0, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -932,9 +932,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 928, @@ -943,14 +943,14 @@ "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -961,9 +961,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "unpacked_data": { @@ -976,17 +976,17 @@ }, { "tx_index": 105, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "block_index": 232, - "block_hash": "5b934ef246230a877ae6d123edb3ed2e9e334e4e08e11d0d96617acbd2940927", - "block_time": 1733662942, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_hash": "3052aa47893addec70f3784c26325d7cdd6351d3f301dc5d70cd31602b00b9a6", + "block_time": 1733664114, + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "destination": null, "btc_amount": 0, "fee": 10000, "data": "5a4f50454e464149527c7c307c317c31307c307c307c307c307c307c307c307c307c307c307c317c", "supported": true, - "utxos_info": " ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8:1 2 0", + "utxos_info": " d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5:1 2 0", "transaction_type": "fairminter", "events": [ { @@ -1012,12 +1012,12 @@ "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "start_block": 0, "status": "open", - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "tx_index": 105, - "block_time": 1733662942, + "block_time": 1733664114, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -1025,9 +1025,9 @@ "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "block_index": 232, - "block_time": 1733662942 + "block_time": 1733664114 }, { "event_index": 910, @@ -1037,11 +1037,11 @@ "asset_longname": null, "asset_name": "OPENFAIR", "block_index": 232, - "block_time": 1733662942 + "block_time": 1733664114 }, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "block_index": 232, - "block_time": 1733662942 + "block_time": 1733664114 }, { "event_index": 911, @@ -1058,22 +1058,22 @@ "divisible": true, "fair_minting": true, "fee_paid": 50000000.0, - "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "issuer": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": "valid", "transfer": false, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "tx_index": 105, - "block_time": 1733662942, + "block_time": 1733664114, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "block_index": 232, - "block_time": 1733662942 + "block_time": 1733664114 } ], "unpacked_data": { @@ -1184,53 +1184,53 @@ }, "/v2/transactions/info": { "result": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d260d2e34c89b206a0797add1942aa6ca5cd4fdf80f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003802e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa80c035166f0c339550322fb09e1a7ff181aa5646fd88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "799f8e97f7ac1576fd79057d81c71818eb79ec38be99555350cddcf84d96dfb2", + "hash": "30e64567bcaa54a14c5f0bfdbd6c16ae4659bec0463471d1beede6b6ed9fc95a", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "60400b16bf8d7717161813673d78b0fe4f50d988f62b2629c964461260f93f31", + "hash": "28b8f6b0cad77fadd68daa227c33c85ac40e874c8902b5ac2b7fe916badf7f83", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "5b7cf6ab95178b2526a85bff6788f98be4caa143471d933e8363162a3247077c", + "hash": "101e3ac483cc0be24b09fe41d094633dda3fd66451617ac32f265d94b7800023", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "fa97d472b475f0dd1745c5e70af11bd0ab56fb354bb5cc0e7699ce3880237765", + "hash": "393d844a474b8bc6037ad7c225f96f15afe87d0224fa6788be52933598322ab7", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "e3e15ea04b644d1d833088a5b0ee60a3bb4236b461ef3d865504e1949b1ba067", + "hash": "a966cb948741da7770f2afd485f04efec7d8fdcb4c579bc0d903b2e18dfd6726", "n": 0, "script_sig": "", "sequence": 4294967295, "coinbase": false }, { - "hash": "d54e558dd98b683037111a91f1843db7196bf06116d3530fd353c6a3bb959e5b", + "hash": "2754de0012f6fcd1a1ba171d9d3b9aeb23334b24994a7e676b0364aaa3033a82", "n": 0, "script_sig": "", "sequence": 4294967295, @@ -1240,50 +1240,50 @@ "vout": [ { "value": 1000, - "script_pub_key": "51210397128e37f2c839dd94b4d90c4f7df343238ca6543dd370eb16e93907f4fd030a2102ad03ec3302f2c2ed16edcdd6fda9de031a92f16e3c292cde49cf61d3ab2a8d002103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03353ae" + "script_pub_key": "51210228a240b3e7e714122cf4cd39ab392fb3fdb5e2203c3d7e788e7815cfe12973e22102ddf27f28924017df810bbb92500586fabcfbd196a2eab343d87c9e1031027ac62103bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f4853ae" }, { "value": 1000, - "script_pub_key": "51210297128e37f2c839dd944db29c45ec6ef4d56c9b1b257c4991cbf598cd109c1ab32103e2dc6cc432b62f7327b0875ec4c7d68b0dbcc650e8a0693304d8c37978c404252103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03353ae" + "script_pub_key": "51210228a240b3e7e714122ca7ff159b8910236b698ed9631f4a6f3aa3c74a5b3f20af210360b9ff0846f6d2b4d9d63e249e1df257a1fee0de8eca19c31209887f3d31ef052103bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f4853ae" }, { "value": 1000, - "script_pub_key": "512102b6128e37f2c839dd94b7d90fcfaf1391c0c02fe63b735dbaa0db10d41058ce742102e2dc6cc432b62f59320512eb780dd68b0dbcc650e8aaec5e61b5ac4af8c404d42103778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c03353ae" + "script_pub_key": "51210206a240b3e7e714122cf7cd7a2b170a5c9ae824a725e2c21b52c6e7273e524f752103e0b9ff038037c33d71d63e249e1df257f3fee0de8eca19c31849887f3d31efdb2103bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f4853ae" }, { "value": 29999987000, - "script_pub_key": "0014a0a90e6acc5b35a094a931d109e64b559674fb84" + "script_pub_key": "001455a1c1bd309c3761f38e46de17c86a78cf853fbb" } ], "vtxinwit": [ [ - "30440220216482cdae9c1635bc183d916fdc36c7efbbe593b5b6c87b386d7fc98ecd0f990220060319eacf6920b8c98b7ae1e1db5e64483764e2e8e27b4d739716f47bd508ee01", - "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" + "304402202543433afe81001ead2e111bb5897ee2932b24037ee96649cb44a81cd2d494a402205719dfa4690a952cb65dfc663ae2a92f1675b33de2843f1237322eefa57ad3bd01", + "03bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f48" ], [ - "304402202f1cfce226cd446a2c00d9e6da89eb4b2fb7c9aa6f20741845e98ec76be4582e022044e302fa7a26c9004f5f7674feda5497aa3e101a380e947fdbc23a08a893d06e01", - "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" + "30440220115c85a48dc5ad1ac88c1c9fe5399e8a6fc3d2a56f23c14799f8487e6bf60d520220284be468b91c21667b0d8498ccccffca4d34d554bcdd4011506b6131cadad6c801", + "03bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f48" ], [ - "3044022005278a7b8c76c672f4f7f1c7af5c4dba5884adcfb8f7d00e22a36034e2fe89680220214c055c37265fea873a6c6c03e06c3546aa7f9d817a0c1ac8f0bdb9e6ebd5bc01", - "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" + "304402201c3c7f4e8126261e7ebcb62304e13d95b8c65da50becfc2407d88da5295c194d022032aaac2bd10f0f5fad968a4d9a5518b501b2e8be6c784221e80563f37f52fc5b01", + "03bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f48" ], [ - "304402201d11fa7da8a8a001a34bf71eb4b8ed43f558c1538464782f955120d728907a1b0220356d21ffbda65e06543a6500f7e015f3bbf08c29acbc204b9467b93c3d3bc1c901", - "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" + "3044022059a097b7685bfacb7e9f199becf77b9027581babde7fc90ecb4b43ed37a26d3802206dadbc36e11af63bf93f2a7876dc24fdc90d46062daa38acf0e4cd49b720a84801", + "03bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f48" ], [ - "30440220764f43fd27dca8eb357be67bfc4720ea6cfd61802866eb2640c0f3fbbb1f705202206c927f6c72222bf964122682a669bc3b30de078530cb1f443d21831bb87fce8501", - "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" + "304402206fcd3afd40d071848b41313f430e796aa28198e5e57112ea51969c73c0efa92b02206b595da2f268431cfc1468e886922382968994323cd4ae21d96c32bfe5b7c2ec01", + "03bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f48" ], [ - "304402205b6744ccdca0ecc12b0ba2c8b4a6965507c328abcb89e07d13e0a76f0655fe6a02207c5200c79a7e87a01b5d20a8ecb18e3387922a47e246c18e9ec55e2e2d2c760801", - "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" + "30440220613e0e062f87eec5e4864f2b6a1dbe2e77296503a7e5430f3228a09a7792ff3e0220336c765f1347747cd3419a514ad5fa486628600e71048c70bc3d91226391336301", + "03bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f48" ] ], "lock_time": 0, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", - "tx_id": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab" + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", + "tx_id": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd" }, "unpacked_data": { "message_type": "mpma_send", @@ -1291,14 +1291,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "quantity": 10, - "memo": "memo2", + "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -1306,9 +1306,9 @@ }, { "asset": "XCP", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "quantity": 10, - "memo": "memo1", + "memo": "the memo", "memo_is_hex": false, "asset_info": { "asset_longname": null, @@ -1326,18 +1326,18 @@ }, "/v2/transactions//info": { "result": { - "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "020000000000000001000000000000271080f73044edb424e8df3d85a40888172e373ed483c0", + "data": "0200000000000000010000000000002710802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa", "decoded_tx": { "version": 2, "segwit": true, "coinbase": false, "vin": [ { - "hash": "002f40bdbe04cb71270828b3bd36a42730fe49089bc95f262b95834124b9463b", + "hash": "973ab27bcaf03578bf31a937fe55734b84798c100afca34ad4bfdbf43669dced", "n": 1, "script_sig": "", "sequence": 4294967295, @@ -1347,22 +1347,22 @@ "vout": [ { "value": 0, - "script_pub_key": "6a2e0d3783d1420c0f9a2161d03e6e1a07fffe253f36576d8cea8dd5e795dda625acc0c60a786218ae94ac1adb38184a" + "script_pub_key": "6a2ea53f09e174999469f0cbc5fe140fa79e1dfcfbdc723a13c82b602272e99bfe732611bebf23831ab2fe6abf534295" }, { "value": 4949940000, - "script_pub_key": "0014287acd9953ee89fa6b938a43fd6515acb4fd1e0f" + "script_pub_key": "0014c035166f0c339550322fb09e1a7ff181aa5646fd" } ], "vtxinwit": [ [ - "304402201944e806dd31809c8cea0f60894ad434b062224d3e68282275203c4af83465ad022069f435c39488f541a9d6cd663ed29fe02a3aaa8c37ba50982e39751ab2381ba701", - "030fc8286999a5759d9096b4f3d4f6c0377e40a1cf68bfa63856e63bd06bc878a5" + "30440220542d65a07ef7624ddea7b4124f2daf158b82d20a9059b9f15dbfb62d807963da02202909fc82cb23f2733229e12128941d4e3cba8873db3ce8bb853b78936bdd05fc01", + "036a4485b1e6e897bca4e402ae75ceaf5b1c6b8036f0ca682a22efe7ad825ebbdf" ] ], "lock_time": 0, - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", - "tx_id": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf" + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", + "tx_id": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9" }, "unpacked_data": { "message_type": "enhanced_send", @@ -1370,7 +1370,7 @@ "message_data": { "asset": "XCP", "quantity": 10000, - "address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "memo": null, "asset_info": { "asset_longname": null, @@ -1397,17 +1397,17 @@ "/v2/transactions/": { "result": { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", - "block_time": 1733662951, - "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", - "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_hash": "00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45", + "block_time": 1733664124, + "source": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", + "destination": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", + "utxos_info": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1 ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0 3 1", "transaction_type": "dispense", "events": [ { @@ -1416,26 +1416,26 @@ "params": { "asset": "MYASSETA", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 0, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 925, @@ -1443,14 +1443,14 @@ "params": { "asset": "XCP", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 1, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1460,9 +1460,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 927, @@ -1471,9 +1471,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": 0, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1483,9 +1483,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 928, @@ -1494,14 +1494,14 @@ "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1512,9 +1512,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "unpacked_data": { @@ -1529,17 +1529,17 @@ "/v2/transactions/": { "result": { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", - "block_time": 1733662951, - "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", - "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "block_hash": "00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45", + "block_time": 1733664124, + "source": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", + "destination": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "btc_amount": 1000, "fee": 0, "data": "0d00", "supported": true, - "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", + "utxos_info": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1 ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0 3 1", "transaction_type": "dispense", "events": [ { @@ -1548,26 +1548,26 @@ "params": { "asset": "MYASSETA", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 0, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 925, @@ -1575,14 +1575,14 @@ "params": { "asset": "XCP", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 1, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1592,9 +1592,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 927, @@ -1603,9 +1603,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": 0, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1615,9 +1615,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 928, @@ -1626,14 +1626,14 @@ "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1644,9 +1644,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "unpacked_data": { @@ -1665,12 +1665,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106 }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 928, @@ -1679,14 +1679,14 @@ "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1697,9 +1697,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 927, @@ -1708,9 +1708,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": 0, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1720,24 +1720,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1747,9 +1747,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 925, @@ -1757,14 +1757,14 @@ "params": { "asset": "XCP", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 1, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1774,9 +1774,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 924, @@ -1789,12 +1789,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106 }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 928, @@ -1803,14 +1803,14 @@ "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1821,9 +1821,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 927, @@ -1832,9 +1832,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": 0, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1844,24 +1844,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1871,9 +1871,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 925, @@ -1881,14 +1881,14 @@ "params": { "asset": "XCP", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 1, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1898,9 +1898,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 924, @@ -1910,17 +1910,17 @@ "result": [ { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -1933,21 +1933,21 @@ }, { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -1963,26 +1963,26 @@ { "tx_index": 106, "dispense_index": 0, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "btc_amount": 1000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "oracle_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "last_status_tx_hash": null, - "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "origin": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -1997,7 +1997,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2018,16 +2018,16 @@ "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2037,9 +2037,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 924, @@ -2049,12 +2049,12 @@ "asset": "XCP", "block_index": 234, "calling_function": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 2000000000, "tx_index": 106, - "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662951, + "utxo": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2064,9 +2064,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 921, @@ -2076,24 +2076,24 @@ "asset": "MYASSETA", "block_index": 234, "calling_function": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 2000000000, "tx_index": 106, - "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662951, + "utxo": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": null, @@ -2105,16 +2105,16 @@ "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2124,9 +2124,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 924, @@ -2136,12 +2136,12 @@ "asset": "XCP", "block_index": 234, "calling_function": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 2000000000, "tx_index": 106, - "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662951, + "utxo": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2151,9 +2151,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 921, @@ -2163,24 +2163,24 @@ "asset": "MYASSETA", "block_index": 234, "calling_function": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 2000000000, "tx_index": 106, - "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662951, + "utxo": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": null, @@ -2194,7 +2194,7 @@ "total": 100000000000, "addresses": [ { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "utxo": null, "utxo_address": null, "quantity": 100000000000, @@ -2204,7 +2204,7 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -2216,7 +2216,7 @@ "total": 500000000, "addresses": [ { - "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "utxo": null, "utxo_address": null, "quantity": 500000000, @@ -2226,7 +2226,7 @@ "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -2238,7 +2238,7 @@ "total": 180, "addresses": [ { - "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "utxo": null, "utxo_address": null, "quantity": 180, @@ -2248,7 +2248,7 @@ "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -2260,7 +2260,7 @@ "total": 40, "addresses": [ { - "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "utxo": null, "utxo_address": null, "quantity": 40, @@ -2270,7 +2270,7 @@ "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -2282,7 +2282,7 @@ "total": 19, "addresses": [ { - "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "utxo": null, "utxo_address": null, "quantity": 19, @@ -2292,7 +2292,7 @@ "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -2306,17 +2306,17 @@ "result": [ { "tx_index": 81, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_hash": "662c168d8674e444aa102dfae48120064c0f87a9a881dcd17c07cae9ab69839a", - "block_time": 1733662789, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "block_hash": "4da269e5df643f16d5f6a21901a775707b5c7421e91b503d5a30d1d37fc51558", + "block_time": 1733663983, + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a0a90e6acc5b35a094a931d109e64b559674fb8480f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "0300038055a1c1bd309c3761f38e46de17c86a78cf853fbb802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa80c035166f0c339550322fb09e1a7ff181aa5646fd88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf:0 4 ", + "utxos_info": " e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993:0 4 ", "transaction_type": "mpma", "events": [ { @@ -2324,24 +2324,24 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8" + "tx_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55" }, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_time": 1733662789 + "block_time": 1733663983 }, { "event_index": 705, "event": "ORDER_EXPIRATION", "params": { "block_index": 205, - "order_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", - "block_time": 1733662789 + "order_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", + "block_time": 1733663983 }, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_time": 1733662789 + "block_time": 1733663983 }, { "event_index": 711, @@ -2349,27 +2349,27 @@ "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "memo": "the memo", "msg_index": 0, "quantity": 10, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "tx_index": 81, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_time": 1733662789 + "block_time": 1733663983 }, { "event_index": 712, @@ -2377,27 +2377,27 @@ "params": { "asset": "MPMASSET", "block_index": 205, - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "tx_index": 81, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_time": 1733662789 + "block_time": 1733663983 }, { "event_index": 713, @@ -2405,15 +2405,15 @@ "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "tx_index": 81, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2423,9 +2423,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_time": 1733662789 + "block_time": 1733663983 } ], "unpacked_data": { @@ -2434,14 +2434,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "quantity": 10, "memo": "the memo", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "quantity": 10, "memo": "memo1", "memo_is_hex": false @@ -2451,30 +2451,30 @@ }, { "tx_index": 80, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "block_hash": "31c2a66bb4ad76bc8c708308bfcef980d21165fb8136cf83b22bc1a4a95d61b6", - "block_time": 1733662785, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "block_hash": "464f38539e9d419864391e203c8bbcf823f8f049ba7ee51993d84d8b7c3baa65", + "block_time": 1733663979, + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380a0a90e6acc5b35a094a931d109e64b559674fb8480f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0fc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "0300038055a1c1bd309c3761f38e46de17c86a78cf853fbb802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa80c035166f0c339550322fb09e1a7ff181aa5646fdc8746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4:0 4 ", + "utxos_info": " 3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7:0 4 ", "transaction_type": "mpma", "events": [ { "event_index": 685, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "order_match_id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "status": "expired" }, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "block_time": 1733662785 + "block_time": 1733663979 }, { "event_index": 687, @@ -2484,26 +2484,26 @@ "get_remaining": 3000, "give_remaining": 3000, "status": "open", - "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "fee_required_remaining_normalized": "0.00000000" }, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "block_time": 1733662785 + "block_time": 1733663979 }, { "event_index": 688, "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 204, - "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", - "block_time": 1733662785 + "order_match_id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "tx1_address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", + "block_time": 1733663979 }, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "block_time": 1733662785 + "block_time": 1733663979 }, { "event_index": 689, @@ -2514,13 +2514,13 @@ "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "tx_hash": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "block_time": 1733662785 + "block_time": 1733663979 }, { "event_index": 690, @@ -2531,13 +2531,13 @@ "get_remaining": 2000, "give_remaining": 2000, "status": "open", - "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "block_time": 1733662785 + "block_time": 1733663979 }, { "event_index": 691, @@ -2549,20 +2549,20 @@ "fee_paid": 0, "forward_asset": "XCP", "forward_quantity": 1000, - "id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "id": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "match_expire_index": 224, "status": "pending", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx0_block_index": 189, "tx0_expiration": 21, - "tx0_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "tx0_hash": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", "tx0_index": 64, - "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "tx1_address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "tx1_block_index": 204, "tx1_expiration": 21, - "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx1_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "tx1_index": 58, - "block_time": 1733662785, + "block_time": 1733663979, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2581,9 +2581,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "block_time": 1733662785 + "block_time": 1733663979 }, { "event_index": 697, @@ -2591,27 +2591,27 @@ "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "memo": "746865206d656d6f", "msg_index": 0, "quantity": 10, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "tx_index": 80, - "block_time": 1733662785, + "block_time": 1733663979, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "block_time": 1733662785 + "block_time": 1733663979 }, { "event_index": 698, @@ -2619,27 +2619,27 @@ "params": { "asset": "MPMASSET", "block_index": 204, - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "memo": "746865206d656d6f", "msg_index": 1, "quantity": 10, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "tx_index": 80, - "block_time": 1733662785, + "block_time": 1733663979, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "block_time": 1733662785 + "block_time": 1733663979 }, { "event_index": 699, @@ -2647,15 +2647,15 @@ "params": { "asset": "XCP", "block_index": 204, - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "memo": "746865206d656d6f", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "tx_index": 80, - "block_time": 1733662785, + "block_time": 1733663979, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2665,9 +2665,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "block_time": 1733662785 + "block_time": 1733663979 } ], "unpacked_data": { @@ -2676,14 +2676,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true }, { "asset": "XCP", - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "quantity": 10, "memo": "746865206d656d6f", "memo_is_hex": true @@ -2693,17 +2693,17 @@ }, { "tx_index": 79, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "block_hash": "0de537875466fcabb29014860060168e58d39d6640e6be78625455093e5557db", - "block_time": 1733662781, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_hash": "27b7ed239faada74794cabc6bf3773aab04cf81db1ab8933c4079f7e9648cd84", + "block_time": 1733663976, + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d260d2e34c89b206a0797add1942aa6ca5cd4fdf80f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003802e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa80c035166f0c339550322fb09e1a7ff181aa5646fd40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab:0 4 ", + "utxos_info": " fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0:0 4 ", "transaction_type": "mpma", "events": [ { @@ -2712,27 +2712,27 @@ "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "memo": "memo2", "msg_index": 0, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "tx_index": 79, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "block_time": 1733662781 + "block_time": 1733663976 }, { "event_index": 679, @@ -2740,27 +2740,27 @@ "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "tx_index": 79, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "block_time": 1733662781 + "block_time": 1733663976 }, { "event_index": 680, @@ -2768,15 +2768,15 @@ "params": { "asset": "XCP", "block_index": 203, - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "tx_index": 79, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2786,9 +2786,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "block_time": 1733662781 + "block_time": 1733663976 } ], "unpacked_data": { @@ -2797,14 +2797,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "quantity": 10, "memo": "memo2", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "quantity": 10, "memo": "memo1", "memo_is_hex": false @@ -2814,17 +2814,17 @@ }, { "tx_index": 78, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_hash": "592b0db0b71afdbe18b1fc5432bbfde15ca979682f0055e3e62c2d56161c659b", - "block_time": 1733662777, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_hash": "74bb75075b8ee6db1ca89241b13253330e8780effe1396da8e92cfe290215430", + "block_time": 1733663962, + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d260d2e34c89b206a0797add1942aa6ca5cd4fdf80f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003802e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa80c035166f0c339550322fb09e1a7ff181aa5646fd88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe:0 4 ", + "utxos_info": " d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd:0 4 ", "transaction_type": "mpma", "events": [ { @@ -2832,24 +2832,24 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29" + "tx_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803" }, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_time": 1733662777 + "block_time": 1733663962 }, { "event_index": 660, "event": "ORDER_EXPIRATION", "params": { "block_index": 202, - "order_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "block_time": 1733662777 + "order_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "block_time": 1733663962 }, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_time": 1733662777 + "block_time": 1733663962 }, { "event_index": 666, @@ -2857,27 +2857,27 @@ "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "memo": "the memo", "msg_index": 0, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "tx_index": 78, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_time": 1733662777 + "block_time": 1733663962 }, { "event_index": 667, @@ -2885,27 +2885,27 @@ "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "memo": "the memo", "msg_index": 1, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "tx_index": 78, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_time": 1733662777 + "block_time": 1733663962 }, { "event_index": 668, @@ -2913,15 +2913,15 @@ "params": { "asset": "XCP", "block_index": 202, - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "memo": "the memo", "msg_index": 2, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "tx_index": 78, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -2931,9 +2931,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_time": 1733662777 + "block_time": 1733663962 } ], "unpacked_data": { @@ -2942,14 +2942,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "quantity": 10, "memo": "the memo", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "quantity": 10, "memo": "the memo", "memo_is_hex": false @@ -2959,17 +2959,17 @@ }, { "tx_index": 77, - "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", + "tx_hash": "dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66", "block_index": 201, - "block_hash": "10801583bacc821606b117a03aa3d8edc91e8b6c864a3f72a6dfac845ed9f0a6", - "block_time": 1733662764, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_hash": "1d373b1daa975404c2f43e18164dac89ddef98c8671263b2361aa95138ab20e7", + "block_time": 1733663958, + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d260d2e34c89b206a0797add1942aa6ca5cd4fdf", + "data": "02000000178d82231300000000000003e8802e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b", "supported": true, - "utxos_info": " ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6:1 2 0", + "utxos_info": " dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66:1 2 0", "transaction_type": "enhanced_send", "events": [ { @@ -2978,26 +2978,26 @@ "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "memo": null, "quantity": 1000, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", + "tx_hash": "dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66", "tx_index": 77, - "block_time": 1733662764, + "block_time": 1733663958, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", + "tx_hash": "dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66", "block_index": 201, - "block_time": 1733662764 + "block_time": 1733663958 } ], "unpacked_data": { @@ -3006,7 +3006,7 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "memo": null } } @@ -3022,29 +3022,29 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", - "block_time": 1733662907 + "order_match_id": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "tx1_address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", + "block_time": 1733664086 }, - "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", + "tx_hash": "63c244c2e46947aec961ae8798f3dfec0a61e6bd08f81aae44f51f68344844d5", "block_index": 225, - "block_time": 1733662907 + "block_time": 1733664086 }, { "event_index": 860, "event": "CREDIT", "params": { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "event": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733662907, + "block_time": 1733664086, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3054,37 +3054,37 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", + "tx_hash": "63c244c2e46947aec961ae8798f3dfec0a61e6bd08f81aae44f51f68344844d5", "block_index": 225, - "block_time": 1733662907 + "block_time": 1733664086 }, { "event_index": 758, "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "block_time": 1733662819 + "order_hash": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "block_time": 1733664025 }, - "tx_hash": "816df0c34171151d8c1947707f1c924dc6988f829038e9f0709bb2b7ab206acc", + "tx_hash": "4fdf78335a98077540fddc780efe3c1edc802b6367282daac69677eed5c92467", "block_index": 211, - "block_time": 1733662819 + "block_time": 1733664025 }, { "event_index": 757, "event": "CREDIT", "params": { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "block_index": 211, "calling_function": "cancel order", - "event": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "event": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", "quantity": 0, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733662819, + "block_time": 1733664025, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3094,9 +3094,9 @@ }, "quantity_normalized": "0.00000000" }, - "tx_hash": "816df0c34171151d8c1947707f1c924dc6988f829038e9f0709bb2b7ab206acc", + "tx_hash": "4fdf78335a98077540fddc780efe3c1edc802b6367282daac69677eed5c92467", "block_index": 211, - "block_time": 1733662819 + "block_time": 1733664025 }, { "event_index": 713, @@ -3104,15 +3104,15 @@ "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "tx_index": 81, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3122,9 +3122,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_time": 1733662789 + "block_time": 1733663983 } ], "next_cursor": 713, @@ -3133,17 +3133,17 @@ "/v2/addresses/mempool": { "result": [ { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "memo": null, "quantity": 10000, - "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "status": "valid", - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "tx_index": 107, "asset_info": { "asset_longname": null, @@ -3154,22 +3154,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "CREDIT", "params": { - "address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "asset": "XCP", "block_index": 234, "calling_function": "send", - "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "event": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3179,22 +3179,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "address": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "asset": "XCP", "block_index": 234, - "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "event": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3204,27 +3204,27 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1733662956.0412934, + "block_time": 1733664127.5138223, "btc_amount": 0, - "data": "020000000000000001000000000000271080f73044edb424e8df3d85a40888172e373ed483c0", + "data": "0200000000000000010000000000002710802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa", "destination": "", "fee": 10000, - "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "transaction_type": "enhanced_send", - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "tx_index": 107, - "utxos_info": " f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf:1 2 0", + "utxos_info": " bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9:1 2 0", "btc_amount_normalized": "0.00000000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 } ], "next_cursor": null, @@ -3233,7 +3233,7 @@ "/v2/addresses/
/balances": { "result": [ { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "A95428956980101314", "asset_longname": null, "quantity": 100000000000, @@ -3242,14 +3242,14 @@ "asset_info": { "asset_longname": "A95428959745315388.SUBNUMERIC", "description": "A subnumeric asset", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "1000.00000000" }, { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "MPMASSET", "asset_longname": null, "quantity": 99999998960, @@ -3258,14 +3258,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "999.99998960" }, { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "MYASSETA", "asset_longname": null, "quantity": 97999999980, @@ -3274,14 +3274,14 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "979.99999980" }, { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "asset_longname": null, "quantity": 82599966196, @@ -3297,7 +3297,7 @@ "quantity_normalized": "825.99966196" }, { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "TESTLOCKDESC", "asset_longname": null, "quantity": 9999990000, @@ -3306,7 +3306,7 @@ "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -3319,7 +3319,7 @@ "/v2/addresses/
/balances/": { "result": [ { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "asset_longname": null, "quantity": 82599966196, @@ -3342,15 +3342,15 @@ "result": [ { "block_index": 225, - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 1000, "calling_function": "order expired", - "event": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "event": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733662907, + "block_time": 1733664086, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3362,15 +3362,15 @@ }, { "block_index": 205, - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "event": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "tx_index": 81, "utxo": null, "utxo_address": null, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3382,15 +3382,15 @@ }, { "block_index": 204, - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 10, "calling_function": "mpma send", - "event": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "event": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "tx_index": 80, "utxo": null, "utxo_address": null, - "block_time": 1733662785, + "block_time": 1733663979, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3402,15 +3402,15 @@ }, { "block_index": 204, - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 3000, "calling_function": "order expired", - "event": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "event": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733662785, + "block_time": 1733663979, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3422,15 +3422,15 @@ }, { "block_index": 202, - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 5000, "calling_function": "cancel order", - "event": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "event": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3448,15 +3448,15 @@ "result": [ { "block_index": 203, - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "event": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3468,19 +3468,19 @@ }, { "block_index": 203, - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "event": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "tx_index": 79, "utxo": null, "utxo_address": null, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -3488,15 +3488,15 @@ }, { "block_index": 202, - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 10, "action": "mpma send", - "event": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "event": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3508,19 +3508,19 @@ }, { "block_index": 202, - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "MPMASSET", "quantity": 20, "action": "mpma send", - "event": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "event": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "tx_index": 78, "utxo": null, "utxo_address": null, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -3528,19 +3528,19 @@ }, { "block_index": 201, - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "MPMASSET", "quantity": 1000, "action": "send", - "event": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", + "event": "dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66", "tx_index": 77, "utxo": null, "utxo_address": null, - "block_time": 1733662764, + "block_time": 1733663958, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -3559,16 +3559,16 @@ "result": [ { "tx_index": 24, - "tx_hash": "3241987309692b6707b4651f9f2a8e60f491efb1911cae2686f47ae12966e8f1", + "tx_hash": "c262dac35899eebabf2318179d4a8a961dd6559352d33589e7edbd5323b52320", "block_index": 128, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, "text": "Hello, world!", "locked": false, "status": "valid", - "block_time": 1733662470, + "block_time": 1733663630, "fee_fraction_int_normalized": "0.00000000" } ], @@ -3578,14 +3578,14 @@ "/v2/addresses/
/burns": { "result": [ { - "tx_index": 5, - "tx_hash": "87bf46153fabbf44f202f0538ee531356e5ce77768e094ec9859b5a11380c959", + "tx_index": 2, + "tx_hash": "5d1103e10a744a25f95d0ef649fb7b57d41783a171863813bccc60ae77880e29", "block_index": 112, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733662402, + "block_time": 1733663559, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" } @@ -3597,17 +3597,17 @@ "result": [ { "tx_index": 79, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "memo1", "fee_paid": 0, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3620,21 +3620,21 @@ }, { "tx_index": 79, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 1, "memo": "memo3", "fee_paid": 0, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -3643,21 +3643,21 @@ }, { "tx_index": 79, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 0, "memo": "memo2", "fee_paid": 0, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -3666,17 +3666,17 @@ }, { "tx_index": 78, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "the memo", "fee_paid": 0, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3689,21 +3689,21 @@ }, { "tx_index": 78, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 1, "memo": "the memo", "fee_paid": 0, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -3718,21 +3718,21 @@ "result": [ { "tx_index": 38, - "tx_hash": "d566733813ff14d927b500e4d3c53d459f80cf6147bde7b6bab0bf07548d5d2b", + "tx_hash": "d735e5491caa35cfaa35b9cd2c195362ef1e6a01576531a3f2296d3b3d669826", "block_index": 142, - "source": "eff988c400c90aba10b2dd3e2e1d5e3236a9917793fb5973f7323d76d6c6c545:0", - "destination": "bcrt1qcg7s7t5nr4edjh4znztk65wcrp3quf3h8ky2le", + "source": "0d6a4f5085c37bb316aafed57b87cd2756fb8e1efe09214db57bd045bdcc103f:0", + "destination": "bcrt1qf6h255qf77vgyg4exfe33z83e8dntf3rv2euq6", "asset": "MYASSETA", "quantity": 1000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, - "block_time": 1733662521, + "block_time": 1733663697, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -3757,9 +3757,9 @@ "result": [ { "tx_index": 68, - "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "block_index": 194, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -3768,7 +3768,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3778,11 +3778,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662737, + "block_time": 1733663923, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -3795,9 +3795,9 @@ }, { "tx_index": 26, - "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -3806,7 +3806,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3816,7 +3816,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3838,9 +3838,9 @@ "/v2/addresses/
/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -3849,7 +3849,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3859,7 +3859,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3880,18 +3880,18 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "3d816bb9da3e8382155c32330e0949633245a5b06a4e040498c8290561e28139", + "tx_hash": "da6a151b91397c5fe8d86bc389708b01e210739f880c2ea12bd3a0d517878c8a", "block_index": 194, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "dispenser_tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "btc_amount": 4000, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3899,7 +3899,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -3914,11 +3914,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662737, + "block_time": 1733663923, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -3928,18 +3928,18 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", + "tx_hash": "e02ea87bd0376af951ee8a57a3103e5d6f0265252ded7746b00c046b77033c51", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3947,7 +3947,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -3962,7 +3962,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -3976,18 +3976,18 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", + "tx_hash": "8a51521b8419746fa32485a32a6632ab14a0832c48d2f16a28655b3595bfc17d", "block_index": 131, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -3995,7 +3995,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4010,7 +4010,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662481, + "block_time": 1733663640, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4030,18 +4030,18 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "3d816bb9da3e8382155c32330e0949633245a5b06a4e040498c8290561e28139", + "tx_hash": "da6a151b91397c5fe8d86bc389708b01e210739f880c2ea12bd3a0d517878c8a", "block_index": 194, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "dispenser_tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "btc_amount": 4000, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -4049,7 +4049,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -4064,11 +4064,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662737, + "block_time": 1733663923, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -4078,18 +4078,18 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", + "tx_hash": "e02ea87bd0376af951ee8a57a3103e5d6f0265252ded7746b00c046b77033c51", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -4097,7 +4097,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4112,7 +4112,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4126,18 +4126,18 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", + "tx_hash": "8a51521b8419746fa32485a32a6632ab14a0832c48d2f16a28655b3595bfc17d", "block_index": 131, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -4145,7 +4145,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4160,7 +4160,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662481, + "block_time": 1733663640, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4180,18 +4180,18 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", + "tx_hash": "e02ea87bd0376af951ee8a57a3103e5d6f0265252ded7746b00c046b77033c51", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -4199,7 +4199,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4214,7 +4214,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4228,18 +4228,18 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", + "tx_hash": "8a51521b8419746fa32485a32a6632ab14a0832c48d2f16a28655b3595bfc17d", "block_index": 131, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -4247,7 +4247,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4262,7 +4262,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662481, + "block_time": 1733663640, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4282,18 +4282,18 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", + "tx_hash": "e02ea87bd0376af951ee8a57a3103e5d6f0265252ded7746b00c046b77033c51", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -4301,7 +4301,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4316,7 +4316,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4330,18 +4330,18 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", + "tx_hash": "8a51521b8419746fa32485a32a6632ab14a0832c48d2f16a28655b3595bfc17d", "block_index": 131, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -4349,7 +4349,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -4364,7 +4364,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662481, + "block_time": 1733663640, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4383,15 +4383,15 @@ "result": [ { "tx_index": 65, - "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", + "tx_hash": "f6f1dd1640fa599d048daaa43dd7ad57104761cce91bb73182ac3ce688e2daf1", "block_index": 190, - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, - "block_time": 1733662722, + "block_time": 1733663898, "fee_paid_normalized": "0.00600000" } ], @@ -4402,14 +4402,14 @@ "result": [ { "tx_index": 76, - "tx_hash": "1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644", + "tx_hash": "31e87316faa7bf0702535007bfe5fe2bf00d78048caee422d601b2e7ba51b642", "msg_index": 0, "block_index": 200, "asset": "MPMASSET", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "transfer": false, "callable": false, "call_date": 0, @@ -4423,20 +4423,20 @@ "description_locked": false, "fair_minting": false, "asset_events": "creation", - "block_time": 1733662760, + "block_time": 1733663955, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 52, - "tx_hash": "af26ce6aa85ff2f672028a3cfecf49ed4d8b2791495b66b8198f5ae9cb182479", + "tx_hash": "fe1893cf1e875a47161c98c3611e96f45cccf4cb8c3683be0bd29caa452f3d7e", "msg_index": 0, "block_index": 156, "asset": "A95428956980101314", "quantity": 100000000000, "divisible": true, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "transfer": false, "callable": false, "call_date": 0, @@ -4450,20 +4450,20 @@ "description_locked": false, "fair_minting": false, "asset_events": "creation", - "block_time": 1733662592, + "block_time": 1733663766, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 51, - "tx_hash": "d6711f9495e7f4d3d0267e48487c2329555979680e084182b8a5e06cd65e5b55", + "tx_hash": "69fcec5e6b67ca9125dccf6a5c5d725eb4f336ad92ebf630c8aeb003b1a9f799", "msg_index": 0, "block_index": 155, "asset": "TESTLOCKDESC", "quantity": 0, "divisible": true, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "transfer": false, "callable": false, "call_date": 0, @@ -4477,20 +4477,20 @@ "description_locked": true, "fair_minting": false, "asset_events": "lock_description", - "block_time": 1733662579, + "block_time": 1733663763, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 50, - "tx_hash": "f300f4f1d3c80fd6f7807624d2236e0de7a91528e43ff41eb2cbaddbaceea14e", + "tx_hash": "468b8d838e5aad27478cef5f5e6799d0c359fd50c79a33a43635666fdaeed21b", "msg_index": 0, "block_index": 154, "asset": "A95428959745315388", "quantity": 0, "divisible": true, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "transfer": false, "callable": false, "call_date": 0, @@ -4504,20 +4504,20 @@ "description_locked": false, "fair_minting": false, "asset_events": "creation", - "block_time": 1733662576, + "block_time": 1733663759, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 49, - "tx_hash": "aafc3281649611fab635e59b621a98cd2e246b3d7da0cb364f0b08c39e28fe94", + "tx_hash": "d95d82f1df0b5468963c3e57b56b14c1163ed106ec29d6e006e6d34980c9c6e7", "msg_index": 0, "block_index": 153, "asset": "TESTLOCKDESC", "quantity": 10000000000, "divisible": true, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "transfer": false, "callable": false, "call_date": 0, @@ -4531,7 +4531,7 @@ "description_locked": false, "fair_minting": false, "asset_events": "creation", - "block_time": 1733662572, + "block_time": 1733663745, "quantity_normalized": "100.00000000", "fee_paid_normalized": "0.50000000" } @@ -4545,8 +4545,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 100000000000, @@ -4554,16 +4554,16 @@ "description_locked": false, "first_issuance_block_index": 200, "last_issuance_block_index": 200, - "first_issuance_block_time": 1733662760, - "last_issuance_block_time": 1733662760, + "first_issuance_block_time": 1733663955, + "last_issuance_block_time": 1733663955, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 10000000000, @@ -4571,16 +4571,16 @@ "description_locked": false, "first_issuance_block_index": 153, "last_issuance_block_index": 155, - "first_issuance_block_time": 1733662572, - "last_issuance_block_time": 1733662579, + "first_issuance_block_time": 1733663745, + "last_issuance_block_time": 1733663763, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 180, @@ -4588,16 +4588,16 @@ "description_locked": false, "first_issuance_block_index": 148, "last_issuance_block_index": 150, - "first_issuance_block_time": 1733662552, - "last_issuance_block_time": 1733662559, + "first_issuance_block_time": 1733663729, + "last_issuance_block_time": 1733663735, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 100000000000, @@ -4605,16 +4605,16 @@ "description_locked": false, "first_issuance_block_index": 139, "last_issuance_block_index": 139, - "first_issuance_block_time": 1733662509, - "last_issuance_block_time": 1733662509, + "first_issuance_block_time": 1733663687, + "last_issuance_block_time": 1733663687, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 40, @@ -4622,8 +4622,8 @@ "description_locked": false, "first_issuance_block_index": 126, "last_issuance_block_index": 127, - "first_issuance_block_time": 1733662462, - "last_issuance_block_time": 1733662467, + "first_issuance_block_time": 1733663623, + "last_issuance_block_time": 1733663627, "supply_normalized": "0.00000040" } ], @@ -4636,8 +4636,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 100000000000, @@ -4645,16 +4645,16 @@ "description_locked": false, "first_issuance_block_index": 200, "last_issuance_block_index": 200, - "first_issuance_block_time": 1733662760, - "last_issuance_block_time": 1733662760, + "first_issuance_block_time": 1733663955, + "last_issuance_block_time": 1733663955, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 10000000000, @@ -4662,16 +4662,16 @@ "description_locked": false, "first_issuance_block_index": 153, "last_issuance_block_index": 155, - "first_issuance_block_time": 1733662572, - "last_issuance_block_time": 1733662579, + "first_issuance_block_time": 1733663745, + "last_issuance_block_time": 1733663763, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 180, @@ -4679,16 +4679,16 @@ "description_locked": false, "first_issuance_block_index": 148, "last_issuance_block_index": 150, - "first_issuance_block_time": 1733662552, - "last_issuance_block_time": 1733662559, + "first_issuance_block_time": 1733663729, + "last_issuance_block_time": 1733663735, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 100000000000, @@ -4696,16 +4696,16 @@ "description_locked": false, "first_issuance_block_index": 139, "last_issuance_block_index": 139, - "first_issuance_block_time": 1733662509, - "last_issuance_block_time": 1733662509, + "first_issuance_block_time": 1733663687, + "last_issuance_block_time": 1733663687, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 40, @@ -4713,8 +4713,8 @@ "description_locked": false, "first_issuance_block_index": 126, "last_issuance_block_index": 127, - "first_issuance_block_time": 1733662462, - "last_issuance_block_time": 1733662467, + "first_issuance_block_time": 1733663623, + "last_issuance_block_time": 1733663627, "supply_normalized": "0.00000040" } ], @@ -4727,8 +4727,8 @@ "asset": "MPMASSET", "asset_id": "101158363923", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 100000000000, @@ -4736,16 +4736,16 @@ "description_locked": false, "first_issuance_block_index": 200, "last_issuance_block_index": 200, - "first_issuance_block_time": 1733662760, - "last_issuance_block_time": 1733662760, + "first_issuance_block_time": 1733663955, + "last_issuance_block_time": 1733663955, "supply_normalized": "1000.00000000" }, { "asset": "TESTLOCKDESC", "asset_id": "70403005118950974", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 10000000000, @@ -4753,16 +4753,16 @@ "description_locked": false, "first_issuance_block_index": 153, "last_issuance_block_index": 155, - "first_issuance_block_time": 1733662572, - "last_issuance_block_time": 1733662579, + "first_issuance_block_time": 1733663745, + "last_issuance_block_time": 1733663763, "supply_normalized": "100.00000000" }, { "asset": "FREEFAIRMINT", "asset_id": "20774156646107637", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 180, @@ -4770,16 +4770,16 @@ "description_locked": false, "first_issuance_block_index": 148, "last_issuance_block_index": 150, - "first_issuance_block_time": 1733662552, - "last_issuance_block_time": 1733662559, + "first_issuance_block_time": 1733663729, + "last_issuance_block_time": 1733663735, "supply_normalized": "0.00000180" }, { "asset": "MYASSETA", "asset_id": "103804245870", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 100000000000, @@ -4787,16 +4787,16 @@ "description_locked": false, "first_issuance_block_index": 139, "last_issuance_block_index": 139, - "first_issuance_block_time": 1733662509, - "last_issuance_block_time": 1733662509, + "first_issuance_block_time": 1733663687, + "last_issuance_block_time": 1733663687, "supply_normalized": "1000.00000000" }, { "asset": "FAIRMINTD", "asset_id": "1046814266085", "asset_longname": null, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "owner": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "owner": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false, "supply": 40, @@ -4804,8 +4804,8 @@ "description_locked": false, "first_issuance_block_index": 126, "last_issuance_block_index": 127, - "first_issuance_block_time": 1733662462, - "last_issuance_block_time": 1733662467, + "first_issuance_block_time": 1733663623, + "last_issuance_block_time": 1733663627, "supply_normalized": "0.00000040" } ], @@ -4816,17 +4816,17 @@ "result": [ { "tx_index": 79, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "block_hash": "0de537875466fcabb29014860060168e58d39d6640e6be78625455093e5557db", - "block_time": 1733662781, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_hash": "27b7ed239faada74794cabc6bf3773aab04cf81db1ab8933c4079f7e9648cd84", + "block_time": 1733663976, + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d260d2e34c89b206a0797add1942aa6ca5cd4fdf80f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", + "data": "030003802e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa80c035166f0c339550322fb09e1a7ff181aa5646fd40000005e36088c4d4000000000000002a15b595b5bcca000000000000000a856d656d6f3380000000000000008000000000000000542b6b2b6b7988", "supported": true, - "utxos_info": " 8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab:0 4 ", + "utxos_info": " fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0:0 4 ", "transaction_type": "mpma", "events": [ { @@ -4835,27 +4835,27 @@ "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "memo": "memo2", "msg_index": 0, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "tx_index": 79, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "block_time": 1733662781 + "block_time": 1733663976 }, { "event_index": 679, @@ -4863,27 +4863,27 @@ "params": { "asset": "MPMASSET", "block_index": 203, - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "memo": "memo3", "msg_index": 1, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "tx_index": 79, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "block_time": 1733662781 + "block_time": 1733663976 }, { "event_index": 680, @@ -4891,15 +4891,15 @@ "params": { "asset": "XCP", "block_index": 203, - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "tx_index": 79, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -4909,9 +4909,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "block_time": 1733662781 + "block_time": 1733663976 } ], "unpacked_data": { @@ -4920,14 +4920,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "quantity": 10, "memo": "memo2", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "quantity": 10, "memo": "memo1", "memo_is_hex": false @@ -4937,17 +4937,17 @@ }, { "tx_index": 78, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_hash": "592b0db0b71afdbe18b1fc5432bbfde15ca979682f0055e3e62c2d56161c659b", - "block_time": 1733662777, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_hash": "74bb75075b8ee6db1ca89241b13253330e8780effe1396da8e92cfe290215430", + "block_time": 1733663962, + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "03000380d260d2e34c89b206a0797add1942aa6ca5cd4fdf80f73044edb424e8df3d85a40888172e373ed483c080287acd9953ee89fa6b938a43fd6515acb4fd1e0f88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", + "data": "030003802e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa80c035166f0c339550322fb09e1a7ff181aa5646fd88746865206d656d6f8000000bc6c11189a80000000000000052000000000000000a4000000000000000400000000000000028", "supported": true, - "utxos_info": " 08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe:0 4 ", + "utxos_info": " d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd:0 4 ", "transaction_type": "mpma", "events": [ { @@ -4955,24 +4955,24 @@ "event": "ORDER_UPDATE", "params": { "status": "expired", - "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29" + "tx_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803" }, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_time": 1733662777 + "block_time": 1733663962 }, { "event_index": 660, "event": "ORDER_EXPIRATION", "params": { "block_index": 202, - "order_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "block_time": 1733662777 + "order_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "block_time": 1733663962 }, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_time": 1733662777 + "block_time": 1733663962 }, { "event_index": 666, @@ -4980,27 +4980,27 @@ "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "memo": "the memo", "msg_index": 0, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "tx_index": 78, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_time": 1733662777 + "block_time": 1733663962 }, { "event_index": 667, @@ -5008,27 +5008,27 @@ "params": { "asset": "MPMASSET", "block_index": 202, - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "memo": "the memo", "msg_index": 1, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "tx_index": 78, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00000010" }, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_time": 1733662777 + "block_time": 1733663962 }, { "event_index": 668, @@ -5036,15 +5036,15 @@ "params": { "asset": "XCP", "block_index": 202, - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "memo": "the memo", "msg_index": 2, "quantity": 10, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "tx_index": 78, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5054,9 +5054,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "block_time": 1733662777 + "block_time": 1733663962 } ], "unpacked_data": { @@ -5065,14 +5065,14 @@ "message_data": [ { "asset": "MPMASSET", - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "quantity": 10, "memo": "the memo", "memo_is_hex": false }, { "asset": "XCP", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "quantity": 10, "memo": "the memo", "memo_is_hex": false @@ -5082,17 +5082,17 @@ }, { "tx_index": 77, - "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", + "tx_hash": "dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66", "block_index": 201, - "block_hash": "10801583bacc821606b117a03aa3d8edc91e8b6c864a3f72a6dfac845ed9f0a6", - "block_time": 1733662764, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_hash": "1d373b1daa975404c2f43e18164dac89ddef98c8671263b2361aa95138ab20e7", + "block_time": 1733663958, + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, - "data": "02000000178d82231300000000000003e880d260d2e34c89b206a0797add1942aa6ca5cd4fdf", + "data": "02000000178d82231300000000000003e8802e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b", "supported": true, - "utxos_info": " ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6:1 2 0", + "utxos_info": " dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66:1 2 0", "transaction_type": "enhanced_send", "events": [ { @@ -5101,26 +5101,26 @@ "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "memo": null, "quantity": 1000, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", + "tx_hash": "dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66", "tx_index": 77, - "block_time": 1733662764, + "block_time": 1733663958, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", + "tx_hash": "dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66", "block_index": 201, - "block_time": 1733662764 + "block_time": 1733663958 } ], "unpacked_data": { @@ -5129,24 +5129,24 @@ "message_data": { "asset": "MPMASSET", "quantity": 1000, - "address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "memo": null } } }, { "tx_index": 76, - "tx_hash": "1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644", + "tx_hash": "31e87316faa7bf0702535007bfe5fe2bf00d78048caee422d601b2e7ba51b642", "block_index": 200, - "block_hash": "3e589a03624f3b3414e98872b3f5818c624e0b28da6495b611bb10403669e396", - "block_time": 1733662760, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_hash": "07129c9baf94a93c46e08d0a4ce80894e7a407b0d3a2c8e52ba38ec73f473fbe", + "block_time": 1733663955, + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, "data": "16000000178d822313000000174876e8000100004d792073757065722061737365742042", "supported": true, - "utxos_info": " 1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644:1 2 0", + "utxos_info": " 31e87316faa7bf0702535007bfe5fe2bf00d78048caee422d601b2e7ba51b642:1 2 0", "transaction_type": "issuance", "events": [ { @@ -5157,11 +5157,11 @@ "asset_longname": null, "asset_name": "MPMASSET", "block_index": 200, - "block_time": 1733662760 + "block_time": 1733663955 }, - "tx_hash": "1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644", + "tx_hash": "31e87316faa7bf0702535007bfe5fe2bf00d78048caee422d601b2e7ba51b642", "block_index": 200, - "block_time": 1733662760 + "block_time": 1733663955 }, { "event_index": 645, @@ -5178,22 +5178,22 @@ "description_locked": false, "divisible": true, "fee_paid": 50000000, - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "locked": false, "quantity": 100000000000, "reset": false, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", "transfer": false, - "tx_hash": "1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644", + "tx_hash": "31e87316faa7bf0702535007bfe5fe2bf00d78048caee422d601b2e7ba51b642", "tx_index": 76, - "block_time": 1733662760, + "block_time": 1733663955, "quantity_normalized": "1000.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "1c44a7359a0c9eabd8a4d9f626d34316c07563ac0614dc8cc65a6de60d6a7644", + "tx_hash": "31e87316faa7bf0702535007bfe5fe2bf00d78048caee422d601b2e7ba51b642", "block_index": 200, - "block_time": 1733662760 + "block_time": 1733663955 } ], "unpacked_data": { @@ -5217,17 +5217,17 @@ }, { "tx_index": 68, - "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "block_index": 193, - "block_hash": "10b675298433b89dad6dfa3551134328a0689c8e59eb4c543ae2ddcfcff81544", - "block_time": 1733662733, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "block_hash": "18fde4ed39bac3ec73d7baa0127a13ae2a93ece3d5a5c5838994b074611196d6", + "block_time": 1733663919, + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "destination": null, "btc_amount": 0, "fee": 10000, "data": "0c00fa1f28ff3c2e3e00000000000000010000000000002710000000000000000100", "supported": true, - "utxos_info": " ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952:1 2 0", + "utxos_info": " 08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38:1 2 0", "transaction_type": "dispenser", "events": [ { @@ -5241,17 +5241,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "satoshirate": 1, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": 0, - "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "tx_index": 68, - "block_time": 1733662733, + "block_time": 1733663919, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -5260,9 +5260,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "block_index": 193, - "block_time": 1733662733 + "block_time": 1733663919 } ], "unpacked_data": { @@ -5288,19 +5288,19 @@ "result": [ { "tx_index": 42, - "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", + "tx_hash": "9676962b470a9998d30eeaec911a79f39a722075bb60a164d5e1ef5f59945120", "block_index": 146, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", - "block_time": 1733662534, + "block_time": 1733663711, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -5322,9 +5322,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", + "tx_hash": "8cf9dd0bba63907b47eaffd8339bfc5d2a084267465b28eccf9364df93ceed37", "block_index": 179, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5340,7 +5340,7 @@ "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662607, + "block_time": 1733663781, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5368,9 +5368,9 @@ }, { "tx_index": 55, - "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "tx_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", "block_index": 202, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -5386,7 +5386,7 @@ "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662777, + "block_time": 1733663962, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5414,9 +5414,9 @@ }, { "tx_index": 62, - "tx_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", + "tx_hash": "4387209cd138023912f31ea19f0290397fffd4f21b306e08ad5ef9c80d0836aa", "block_index": 188, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -5432,7 +5432,7 @@ "status": "cancelled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662715, + "block_time": 1733663880, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5460,9 +5460,9 @@ }, { "tx_index": 64, - "tx_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "tx_hash": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", "block_index": 211, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -5478,7 +5478,7 @@ "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662819, + "block_time": 1733664025, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -5511,10 +5511,10 @@ "/v2/addresses/
/fairminters": { "result": [ { - "tx_hash": "f49987520b37269d66e22c08d64105ad8b3ca4ddd9cf77289a9c701eb7cd17fd", + "tx_hash": "50923f7fcb999bf51e391f16f3d6904a103ab55460d3cd6094351a37489eb5b4", "tx_index": 44, "block_index": 150, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "FREEFAIRMINT", "asset_parent": null, "asset_longname": null, @@ -5538,7 +5538,7 @@ "earned_quantity": 180, "paid_quantity": 0, "commission": 0, - "block_time": 1733662559, + "block_time": 1733663735, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000180", "soft_cap_normalized": "0.00000000", @@ -5550,10 +5550,10 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "c08fd3a8aeff123265f1bb8c22f18a72614767838b8dba6a17ddd8de121b8486", + "tx_hash": "1bfbc2a4034045d7d015ce21f2add61dc914c39e0f24378da226255de3840ef0", "tx_index": 43, "block_index": 147, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "A95428958968845068", "asset_parent": "MYASSETA", "asset_longname": "MYASSETA.SUBMYASSETA", @@ -5577,7 +5577,7 @@ "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733662539, + "block_time": 1733663715, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -5586,10 +5586,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "944f4b25248d9ceabac7ba67e9b8c5cba51f208732d6e10967981e481d445bab", + "tx_hash": "ad35c0195cd0372aa88e05feae9ad7af70dbd0c85e27f9883ec4457a03f8626f", "tx_index": 22, "block_index": 126, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "FAIRMINTD", "asset_parent": null, "asset_longname": null, @@ -5613,7 +5613,7 @@ "earned_quantity": 40, "paid_quantity": 34, "commission": 0, - "block_time": 1733662462, + "block_time": 1733663623, "price_normalized": "50.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -5625,10 +5625,10 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "3fe3cc258aff8adebf2c59df508d6e915c65e494545f1973cbd6fac50bf52f7a", + "tx_hash": "d7bf0545b0be4b22db30469e5e44a771153aca3fdfb40b4cead14f293cce65cf", "tx_index": 18, "block_index": 122, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "FAIRMINTC", "asset_parent": null, "asset_longname": null, @@ -5652,7 +5652,7 @@ "earned_quantity": 19, "paid_quantity": 5, "commission": 0, - "block_time": 1733662438, + "block_time": 1733663598, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -5664,10 +5664,10 @@ "paid_quantity_normalized": "0.00000005" }, { - "tx_hash": "f1650bc5e4862573c5bdcaeee8c79235a3afbbe4a4b1dde5ae00856fc2ec3092", + "tx_hash": "adcb871b73226294a5765669393f976645fa31b4485e46b851022f16656da53d", "tx_index": 14, "block_index": 121, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "FAIRMINTB", "asset_parent": null, "asset_longname": null, @@ -5691,7 +5691,7 @@ "earned_quantity": 300000000, "paid_quantity": 300000000, "commission": 0, - "block_time": 1733662435, + "block_time": 1733663595, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -5703,10 +5703,10 @@ "paid_quantity_normalized": "3.00000000" }, { - "tx_hash": "78a0d2b2e6a58b814c45278e7486d9916983dd9996fa320ebd4c77c3efecc28c", + "tx_hash": "5bd820741bb8091a3d2b4c6ab277ba3f8cc1c466193f1820517dbc6cfa6a4ee2", "tx_index": 10, "block_index": 116, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "FAIRMINTA", "asset_parent": null, "asset_longname": null, @@ -5730,7 +5730,7 @@ "earned_quantity": 10000000000, "paid_quantity": 10000000000, "commission": 0, - "block_time": 1733662417, + "block_time": 1733663576, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "100.00000000", "soft_cap_normalized": "10.00000000", @@ -5748,21 +5748,21 @@ "/v2/addresses/
/fairmints": { "result": [ { - "tx_hash": "f7afb409d53d760cc0e1b6287fb322b46c0cec5b0db19e0db1e4cb8e9acfa06c", + "tx_hash": "c596391857a9b55ece95aecde22793bcc1f097bf9a0c731b9c90b2d9287c9099", "tx_index": 46, "block_index": 150, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "fairminter_tx_hash": "f49987520b37269d66e22c08d64105ad8b3ca4ddd9cf77289a9c701eb7cd17fd", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "fairminter_tx_hash": "50923f7fcb999bf51e391f16f3d6904a103ab55460d3cd6094351a37489eb5b4", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1733662559, + "block_time": 1733663735, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -5771,21 +5771,21 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "0f816a7124ca2d321d50cb5a756e505409860107a5cdf6818af0c49903109e92", + "tx_hash": "05d3d95677e594741397af8c1b7d70d95526f042d85bf688b81d518bef7473b4", "tx_index": 45, "block_index": 149, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "fairminter_tx_hash": "f49987520b37269d66e22c08d64105ad8b3ca4ddd9cf77289a9c701eb7cd17fd", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "fairminter_tx_hash": "50923f7fcb999bf51e391f16f3d6904a103ab55460d3cd6094351a37489eb5b4", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1733662555, + "block_time": 1733663732, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -5794,21 +5794,21 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "bd8a49f0e5175b0e9376309693c7ab46f23e81ff6da37e173fafd49112e3a002", + "tx_hash": "fa040cf888674be63375c7343027048ac5745c31d8bd5ed5fec8f0c7e36a9b97", "tx_index": 23, "block_index": 127, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "fairminter_tx_hash": "944f4b25248d9ceabac7ba67e9b8c5cba51f208732d6e10967981e481d445bab", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "fairminter_tx_hash": "ad35c0195cd0372aa88e05feae9ad7af70dbd0c85e27f9883ec4457a03f8626f", "asset": "FAIRMINTD", "earn_quantity": 40, "paid_quantity": 34, "commission": 0, "status": "valid", - "block_time": 1733662467, + "block_time": 1733663627, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -5817,21 +5817,21 @@ "paid_quantity_normalized": "0.00000034" }, { - "tx_hash": "5442ddf25d7b2d0522c3e6ee4f6ea07046e498791dad9a59493585cd95e4a482", + "tx_hash": "2730f482970c6ffc09d7d891d1d16ef689c9ac22adfd0423774c482c9aeae806", "tx_index": 21, "block_index": 125, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "fairminter_tx_hash": "3fe3cc258aff8adebf2c59df508d6e915c65e494545f1973cbd6fac50bf52f7a", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "fairminter_tx_hash": "d7bf0545b0be4b22db30469e5e44a771153aca3fdfb40b4cead14f293cce65cf", "asset": "FAIRMINTC", "earn_quantity": 11, "paid_quantity": 3, "commission": 0, "status": "valid", - "block_time": 1733662459, + "block_time": 1733663619, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -5840,21 +5840,21 @@ "paid_quantity_normalized": "0.00000003" }, { - "tx_hash": "9044b8e851b9db643759825189ee18e3a4f8e024073cee1071770547f10d5441", + "tx_hash": "3c4dd8305d3e7f13c8fa128a0c9c220a6a984f76419f9f109f0bce69d216b2d7", "tx_index": 20, "block_index": 124, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "fairminter_tx_hash": "3fe3cc258aff8adebf2c59df508d6e915c65e494545f1973cbd6fac50bf52f7a", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "fairminter_tx_hash": "d7bf0545b0be4b22db30469e5e44a771153aca3fdfb40b4cead14f293cce65cf", "asset": "FAIRMINTC", "earn_quantity": 3, "paid_quantity": 1, "commission": 0, "status": "valid", - "block_time": 1733662456, + "block_time": 1733663606, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -5863,21 +5863,21 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "9a0ee57960e481e4db622af7aada351d92452cbffc33a5a0620d13c09b3fb924", + "tx_hash": "c4fb132da6dce0c0527b9ea05c7f09998fdac79eee53c48074492072d7ee4f71", "tx_index": 19, "block_index": 123, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "fairminter_tx_hash": "3fe3cc258aff8adebf2c59df508d6e915c65e494545f1973cbd6fac50bf52f7a", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "fairminter_tx_hash": "d7bf0545b0be4b22db30469e5e44a771153aca3fdfb40b4cead14f293cce65cf", "asset": "FAIRMINTC", "earn_quantity": 5, "paid_quantity": 1, "commission": 0, "status": "valid", - "block_time": 1733662442, + "block_time": 1733663602, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -5886,21 +5886,21 @@ "paid_quantity_normalized": "0.00000001" }, { - "tx_hash": "393205372ad51ba0bcf4bc28968fa4d1453aab18ae0c057a72eb47ab5a60a5b1", + "tx_hash": "49f10f2a8191abe9dbe3b7d1e34b467be262554a6236967519350121fbe01c2e", "tx_index": 15, "block_index": 118, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "fairminter_tx_hash": "f1650bc5e4862573c5bdcaeee8c79235a3afbbe4a4b1dde5ae00856fc2ec3092", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "fairminter_tx_hash": "adcb871b73226294a5765669393f976645fa31b4485e46b851022f16656da53d", "asset": "FAIRMINTB", "earn_quantity": 100000000, "paid_quantity": 100000000, "commission": 0, "status": "valid", - "block_time": 1733662424, + "block_time": 1733663583, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -5909,21 +5909,21 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "25af25186fc3e49b496ad5ee19fed27ef2a5109e584442cddd3eb85b6acdcadd", + "tx_hash": "422d48438bb97df0426839209678a4925d40c81936fc1b626dc0ada3eb0763b0", "tx_index": 11, "block_index": 114, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "fairminter_tx_hash": "78a0d2b2e6a58b814c45278e7486d9916983dd9996fa320ebd4c77c3efecc28c", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "fairminter_tx_hash": "5bd820741bb8091a3d2b4c6ab277ba3f8cc1c466193f1820517dbc6cfa6a4ee2", "asset": "FAIRMINTA", "earn_quantity": 500000000, "paid_quantity": 500000000, "commission": 0, "status": "valid", - "block_time": 1733662411, + "block_time": 1733663568, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -5946,12 +5946,12 @@ "asset": "UTXOASSET", "asset_longname": null, "quantity": 1000000000, - "utxo": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0", - "utxo_address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "utxo": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da:0", + "utxo_address": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "issuer": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "divisible": true, "locked": false }, @@ -5973,7 +5973,7 @@ "/v2/addresses/
/compose/broadcast": { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "timestamp": 4003903985, "value": 100.0, "fee_fraction": 0.05, @@ -5986,29 +5986,29 @@ "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "02000000000101924d72a09461c8a24f938092ec2c38ee65a0860665187ebc36ee0a773dcb312e00000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff0200000000000000002b6a29c1f068038c28abd4c1a685dad029f822c87e68e49f72de9cdd2ed2c905060888251c4114f8a9594d0300f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "02000000000101dfce07811b656f41c5043032bb9ed03c7933b322f7c8750d1b4f29c499f8d66a0000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff0200000000000000002b6a293d6b17968a1ead569c3f7890fed653d21c6d59699584fed2141bcfb22cef5bf7764a45b4a96627b4aa00f2052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } }, "/v2/addresses/
/compose/btcpay": { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "order_match_id": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076_97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "order_match_id": "238eb2739cf62d41cc2aa459c23bc83d5c7b43f6a7bd00e39044d7be51abb255_93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "skip_validation": false }, "name": "btcpay", - "data": "434e5452505254590bc3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c40940507697a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "data": "434e5452505254590b238eb2739cf62d41cc2aa459c23bc83d5c7b43f6a7bd00e39044d7be51abb25593c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "btc_in": 5000000000, "btc_out": 1000, "btc_change": 4999999000, "btc_fee": 0, - "rawtransaction": "0200000000010125aba795909c8b9f384c4ebff2c61f344c437c974c6b3277de4e1b644480f30200000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff03e80300000000000016001447e5951068f42b237b00d9525db4515fd642e8e700000000000000004b6a498d7fd3aeb2357e4c9dcb457b6a9b8353d683928a73043d4b4710b8657a90cf67bc673b73d3ad872313602266cd30e3d901f0806a34111b0fc9f9c6c1eee6965d1e6eadb1af6f76e10118ee052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "02000000000101f0c172da7f802b7424bee40a9276ebef0800917156ea485b8d8e6c99f3faa71f0000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff03e8030000000000001600140102104371526b459cf231d9bd444dd573b343ea00000000000000004b6a498dcfb2ef4eeda63bce0f0fc7d0daae8e9df5961e2be68bee9b6c5954bd2a7f5cb0f1c288cf35cdb01638a43d6c3f2bc07fb16dc1daf01c3d1bf048944e3e73258bef0518467b65524918ee052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } }, "/v2/addresses/
/compose/burn": { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "quantity": 1000, "overburn": false, "skip_validation": false @@ -6019,29 +6019,29 @@ "btc_out": 1000, "btc_change": 4999999000, "btc_fee": 0, - "rawtransaction": "02000000000101ef341ce05ee7aa7a2ce0be2425da212c732d47d2b295fb2a53b04af584e3913800000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac18ee052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "020000000001014136e64fa6466010d504caf042caca6dcf9d1731a9709dfaaf05ce83c89a66310000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff02e8030000000000001976a914a11b66a67b3ff69671c8f82254099faf374b800e88ac18ee052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } }, "/v2/addresses/
/compose/cancel": { "result": { "params": { - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "offer_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "offer_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "skip_validation": false }, "name": "cancel", - "data": "434e5452505254594697a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "data": "434e5452505254594693c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "btc_in": 4949950000, "btc_out": 0, "btc_change": 4949950000, "btc_fee": 0, - "rawtransaction": "02000000000101d854173e9ed4905322fd15252603e6fb0fa74ece29662dd694bf7c5d46db34ed01000000160014ca742dc81cac024b4cbde6236e1c599304258b4cffffffff0200000000000000002b6a29f7dae01011d34722e465f0868d3df317e5c5199fb830e35626de317c584150be3114face31c0a76fc8303e0a2701000000160014ca742dc81cac024b4cbde6236e1c599304258b4c02000000000000" + "rawtransaction": "02000000000101a55d3d312f6bfb85c4057684872a01bb8a907a72642017271f784aa69e98ecd8010000001600140368c8629d8d4a4cdb98e52538a5a1dc3a531aa2ffffffff0200000000000000002b6a295ce1552f0e813550efe25cb12e23db94b772858a52fa1823417f92e3809a9dddb9ffe4af1b7edf10f0303e0a27010000001600140368c8629d8d4a4cdb98e52538a5a1dc3a531aa202000000000000" } }, "/v2/addresses/
/compose/destroy": { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 1000, "tag": "\"bugs!\"", @@ -6061,13 +6061,13 @@ "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "020000000001012ac40fdeebf7c01a2698f5b5e7eea0010fbdde64b345f0a16732c59b93419efd00000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000226a2091e0960c55d817b983e462979b739182d16cb862cec1127feab9baa6875c8fff00f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "0200000000010156206c6b6168b9453ece86012cad2e6815c75c65ea8ca109df0d2db7d382687f0000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff020000000000000000226a205512b49ce96f5c9e5c4f476b75952e3d944eaaf497b04a7715a4fa279893efd000f2052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } }, "/v2/addresses/
/compose/dispenser": { "result": { "params": { - "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "source": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "give_quantity": 1000, "escrow_quantity": 1000, @@ -6092,13 +6092,13 @@ "btc_out": 0, "btc_change": 4949873799, "btc_fee": 0, - "rawtransaction": "020000000001018ba93f0a63356315c790b72f8b7e31503ec8c37b2213ce56abaa0fd3102b1424020000001600140fa13933cab9aaea4cec2b6194cc224402aa6efeffffffff0200000000000000002c6a2ae136236b460653c4983ef1fd9789b3859175df5c946229068f3aa8b3b370ec456bad04d6778e55c73cf587140927010000001600140fa13933cab9aaea4cec2b6194cc224402aa6efe02000000000000" + "rawtransaction": "020000000001016f94b78a38c8ee1828ced73a69c9245add14003247a2f62a33479a1dd87d74ed020000001600143008f46eb4cce0041fe05407924d4e947ef1f450ffffffff0200000000000000002c6a2a1cf0abe97cf33950b6ee2cf120d4c28fb1b2ab146fdcdc01cf2eef242ff4116e18a6b8af0871821ab27687140927010000001600143008f46eb4cce0041fe05407924d4e947ef1f45002000000000000" } }, "/v2/addresses/
/compose/dividend": { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "quantity_per_unit": 1, "asset": "MYASSETA", "dividend_asset": "XCP", @@ -6106,7 +6106,7 @@ "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -6125,16 +6125,16 @@ "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "0200000000010119223da59577f02cdf31d254f84c7868f7156ac26b2c3242e18c5ce0afe91db500000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000236a21bf2eb869a55c3e60dce8f1e8c72d87a431653b501e8053af28e8bac1ae9c65793500f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "020000000001017e4a665adfe086310b58b110d85a000a9cc1a5c148f794bf5ccc77d35f9ad7820000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff020000000000000000236a216eb641910385a209ed795b096dad33f2a042195372f7229a71923c8b7c9e4ef13100f2052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } }, "/v2/addresses/
/compose/issuance": { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCPTEST", "quantity": 1000, - "transfer_destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "transfer_destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "lock": false, "reset": false, @@ -6148,22 +6148,22 @@ "btc_out": 546, "btc_change": 4999999454, "btc_fee": 0, - "rawtransaction": "02000000000101ab9a4793ec37e972e246f834cee22b215ee18a2e7de88553a263a50070c7dc3100000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff032202000000000000160014a0a90e6acc5b35a094a931d109e64b559674fb840000000000000000236a2138872d422e7694fa97d233e6740fc804551c12dbd0f6742a238caa5d6c8774d576deef052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "02000000000101561bad4e09dded6cc6f71dde05e3f3b961c040e40e43945a255ccd612c8841b60000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff03220200000000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb0000000000000000236a21d1d96bbbb412b719979cd34978853d9209c1d0b0435d4d42118a01119d1ad49a83deef052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } }, "/v2/addresses/
/compose/mpma": { "result": { "params": { - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset_dest_quant_list": [ [ "XCP", - "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", 1 ], [ "FAIRMINTC", - "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", 2 ] ], @@ -6172,18 +6172,18 @@ "skip_validation": false }, "name": "mpma", - "data": "434e54525052545903000280a0a90e6acc5b35a094a931d109e64b559674fb8480d260d2e34c89b206a0797add1942aa6ca5cd4fdf4000003ceebf84b91000000000000000240000000000000004000000000000000100", + "data": "434e5452505254590300028055a1c1bd309c3761f38e46de17c86a78cf853fbb802e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b4000003ceebf84b91000000000000000240000000000000004000000000000000100", "btc_in": 4949808000, "btc_out": 2000, "btc_change": 4949806000, "btc_fee": 0, - "rawtransaction": "02000000000101cfaf6940994f3be90705a5a2849361ba870bf35d6d15b4e377d3bb8cdb847d5c03000000160014d260d2e34c89b206a0797add1942aa6ca5cd4fdfffffffff03e803000000000000695121033d9b8157b929434e54cde851f7659e44eb253e7aaa820bbcaa6f245009a00db7210301654169ce49901de71854042d3eaae893f45ef15a74f0459b6dbac4fc337a8821032a0b9b5c054cfd3455e6bd304ee97b1a1fb37c7fe90d392c05114eef7d1cc09653aee80300000000000069512103229b8157b929434e54dee85377c5374a81cd654f0a16a28d7b62c21b5c3679202103fae1c0bbae9b73516eaa52a4544477f1d15e3254973b2f059b6d862a43b7c33821032a0b9b5c054cfd3455e6bd304ee97b1a1fb37c7fe90d392c05114eef7d1cc09653aeb00b082701000000160014d260d2e34c89b206a0797add1942aa6ca5cd4fdf02000000000000" + "rawtransaction": "0200000000010193b96f9dbe7b223bbfe0af5c0ba4988b4d22a04041ade6ab9f50ce62af206fe9030000001600142e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4bffffffff03e80300000000000069512102012952f60f4fa2ec3d100d0d01e924f22f481bd2ed1f1aec0eee49253701bab421024009a55804664fc5ff18293c312c383ab9b119b0ad34f1b5eb609ff60639d20d2103fa208911a8b113ecc2adda4feb593043e2cb9b8b15686be583811ed0bc0f4fca53aee803000000000000695121021e2952f60f4fa2ec3d030d0f81bc8533925c87e58cec94aad0fd814f4fce3fab21037fb224762189289839b730e38d4fe4844b59c6cb9109baf5eb60a318b9bd6b872103fa208911a8b113ecc2adda4feb593043e2cb9b8b15686be583811ed0bc0f4fca53aeb00b0827010000001600142e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b02000000000000" } }, "/v2/addresses/
/compose/order": { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "get_asset": "BURNER", @@ -6201,7 +6201,7 @@ "get_asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -6215,14 +6215,14 @@ "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "02000000000101df7d6fd911e1547352154244e36a896a2b8077d35da4c69ec4e6821a07112fc800000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000356a33361b6c0c54044c46f87e5bf78e109b5eb37250d937c29a7a320a81baf09eb66312aaa6b9ef81b7b61f218ee8455e2567d22b2600f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "0200000000010125bbc77f1b4ea182617d3ddd94fd3b082d8d2043f3684b211aeedc2e8c0c4bb80000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff020000000000000000356a330c74a82f66921d8ea6c20ecc9cb4b971e700fe2d2ecd4caee78f285c4eea5f6dd5de7b42198fba771b0890579f816bc4c1052900f2052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } }, "/v2/addresses/
/compose/send": { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "quantity": 1000, "memo": null, @@ -6239,37 +6239,37 @@ "quantity_normalized": "0.00001000" }, "name": "send", - "data": "434e54525052545902000000000000000100000000000003e880d260d2e34c89b206a0797add1942aa6ca5cd4fdf", + "data": "434e54525052545902000000000000000100000000000003e8802e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b", "btc_in": 5000000000, "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "02000000000101d30a122e70bbcfc68361c85f3a50c18060c0e32c3a3f7f4b5bb6bb3481cfee6600000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000306a2e8fcb24bf55bc4978d9a430f9b41f1a04b346404d61e3d16305958566dc7055705582269294f8ec2ebb0b1e8d956400f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "0200000000010107784db752b51cb96c2a086e12cf6c80e082b7a7146ff9da4cb2213f7a193bac0000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff020000000000000000306a2e667b92ee7caa5436ce91806ce1088d045377e29797f868cac4e7c029ce25d535994a6d25505c5d4856d53388c4d800f2052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } }, "/v2/addresses/
/compose/sweep": { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "flags": 7, "memo": "FFFF", "skip_validation": false }, "name": "sweep", - "data": "434e5452505254590480d260d2e34c89b206a0797add1942aa6ca5cd4fdf07ffff", + "data": "434e54525052545904802e25ef675dc6af19dfbc63dcbef2e8df7b3c3d4b07ffff", "btc_in": 5000000000, "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "02000000000101e5ca9aa28f0d76341d561b6074ff4734ba5be20a53b0b3d39df6b6f8879b493100000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000236a21a8a573db466a5d914540aad096f0997de899868a65f4360cf638b01cd7f0041b3b00f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "02000000000101c70400befe8d2df5c9ea6209a078e921e25bf3896e6c21c38922e5cc420600260000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff020000000000000000236a21cdac56b1dd6d8f1177390edaa0d5def3b6d415b673b8a69ae59e08408112b7d18c00f2052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } }, "/v2/addresses/
/compose/dispense": { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "quantity": 1000, "skip_validation": false }, @@ -6279,13 +6279,13 @@ "btc_out": 1000, "btc_change": 4999999000, "btc_fee": 0, - "rawtransaction": "02000000000101215f231861e5b622b58e6b2abee10cad2699238d105dff1a04abdc554d6c835b00000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff03e803000000000000160014287acd9953ee89fa6b938a43fd6515acb4fd1e0f00000000000000000c6a0ab5093e6d20cfa6727b4418ee052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "02000000000101deefad00aebb78d55225b4c29d09fd06dbad60649f79641cee6457ab72ea27ae0000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff03e803000000000000160014c035166f0c339550322fb09e1a7ff181aa5646fd00000000000000000c6a0a04abec984033f47d451d18ee052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } }, "/v2/addresses/
/compose/fairminter": { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "MYASSET", "asset_parent": "", "price": 10, @@ -6317,20 +6317,20 @@ "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "020000000001017c751df4631de1c9616aec45e7634a049c92b31ce9d74ca78df32c3fa09629af00000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000316a2f2b660474faa29eb9c5ccae18ce3b8e4fc0526cc81b281186cf19754fc822748732d2ab25928b3cdc59830bbb095c3e00f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "020000000001018ab561d1734f968558b4c69acdaec5c43ee23d77df19be07181733fbb03b12080000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff020000000000000000316a2ff3e469feb814911e8f2c5ba113f38ffa5189ca5cd620abb2513322087010232f8634d9ab99cb4efe0f1404a0610e0d00f2052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } }, "/v2/addresses/
/compose/fairmint": { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "OPENFAIR", "quantity": 0, "skip_validation": false, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "issuer": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "divisible": true, "locked": false }, @@ -6342,13 +6342,13 @@ "btc_out": 0, "btc_change": 5000000000, "btc_fee": 0, - "rawtransaction": "02000000000101ce2278c985d555c1c97a5d9608b5e76e53af29de8da614a3fa5ba3e1f8748a9700000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff020000000000000000156a13ea1510453fd7721e4c0fd34d6760c74a07fb4d00f2052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "02000000000101df36988b4821e52edbca575e4b37af02f6fc43a896b5b381a9a02d336fc16c6f0000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff020000000000000000156a1353c10fc1d77fd072b500a8804b38055806c1ae00f2052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } }, "/v2/addresses/
/compose/attach": { "result": { "params": { - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 1000, "destination_vout": null, @@ -6368,30 +6368,30 @@ "btc_out": 10000, "btc_change": 4999990000, "btc_fee": 0, - "rawtransaction": "02000000000101a083620385610e58938234512b566b6b433db4be019147169c8eb57543417e8b00000000160014a0a90e6acc5b35a094a931d109e64b559674fb84ffffffff031027000000000000160014a0a90e6acc5b35a094a931d109e64b559674fb840000000000000000146a12aeb7b16f0af5ae303e8ba37097a47641614df0ca052a01000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "02000000000101e9b84abcf9b6d2c3d170dfe8655d95ebc1d60988e645d4c94a04466bbd15f45e0000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbbffffffff03102700000000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb0000000000000000146a12556522324c558d0a2466bcd895d2c48ca738f0ca052a0100000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } }, "/v2/utxos//compose/detach": { "result": { "params": { - "source": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0", - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da:0", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "skip_validation": false }, "name": "detach", - "data": "434e54525052545966626372743171357a357375366b767476363670393966783867736e656a74326b743866377579673961736c61", + "data": "434e54525052545966626372743171326b7375723066736e736d6b72757577676d3070306a7232307238633230616d32357870377a", "btc_in": 10000, "btc_out": 0, "btc_change": 10000, "btc_fee": 0, - "rawtransaction": "02000000000101103306445e9e2206e7e480f5849f2ab7d012ec7c728afc41bfc478783a198cbc0000000016001447e5951068f42b237b00d9525db4515fd642e8e7ffffffff020000000000000000376a353a36eec8bd08a6a4377ee7e6e279b070abec5f17aaa20991607f3e514a2f67bec0ba05de90f349c74207f20b9f942694aff01abd43102700000000000016001447e5951068f42b237b00d9525db4515fd642e8e702000000000000" + "rawtransaction": "02000000000101dae602c583e481eee79604797acb4174c86a06520eb50c912e1c7e913323e7bd000000001600140102104371526b459cf231d9bd444dd573b343eaffffffff020000000000000000376a3500f35da86e21616627415fa37bc882a10ff277bb3137de2a13cc6a899110d0ed9ebe50c54c55163eeacb54ffe971ce8fefdc0e800a10270000000000001600140102104371526b459cf231d9bd444dd573b343ea02000000000000" } }, "/v2/utxos//compose/movetoutxo": { "result": { "params": { - "source": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0", - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da:0", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "skip_validation": false }, "name": "move", @@ -6400,7 +6400,7 @@ "btc_out": 10000, "btc_change": null, "btc_fee": 0, - "rawtransaction": "02000000000101103306445e9e2206e7e480f5849f2ab7d012ec7c728afc41bfc478783a198cbc0000000016001447e5951068f42b237b00d9525db4515fd642e8e7ffffffff011027000000000000160014a0a90e6acc5b35a094a931d109e64b559674fb8402000000000000" + "rawtransaction": "02000000000101dae602c583e481eee79604797acb4174c86a06520eb50c912e1c7e913323e7bd000000001600140102104371526b459cf231d9bd444dd573b343eaffffffff01102700000000000016001455a1c1bd309c3761f38e46de17c86a78cf853fbb02000000000000" } }, "/v2/compose/attach/estimatexcpfees": { @@ -6412,8 +6412,8 @@ "asset": "OPENFAIR", "asset_id": "117132633401", "asset_longname": null, - "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "owner": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "issuer": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "owner": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "divisible": true, "locked": false, "supply": 0, @@ -6421,16 +6421,16 @@ "description_locked": false, "first_issuance_block_index": 232, "last_issuance_block_index": 232, - "first_issuance_block_time": 1733662942, - "last_issuance_block_time": 1733662942, + "first_issuance_block_time": 1733664114, + "last_issuance_block_time": 1733664114, "supply_normalized": "0.00000000" }, { "asset": "PREMINT", "asset_id": "4837764613", "asset_longname": null, - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", - "owner": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", + "owner": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": false, "supply": 0, @@ -6438,16 +6438,16 @@ "description_locked": false, "first_issuance_block_index": 227, "last_issuance_block_index": 229, - "first_issuance_block_time": 1733662914, - "last_issuance_block_time": 1733662921, + "first_issuance_block_time": 1733664094, + "last_issuance_block_time": 1733664102, "supply_normalized": "0.00000000" }, { "asset": "STARTNOW", "asset_id": "150450094622", "asset_longname": null, - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", - "owner": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", + "owner": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": false, "supply": 0, @@ -6455,16 +6455,16 @@ "description_locked": false, "first_issuance_block_index": 225, "last_issuance_block_index": 226, - "first_issuance_block_time": 1733662907, - "last_issuance_block_time": 1733662911, + "first_issuance_block_time": 1733664086, + "last_issuance_block_time": 1733664091, "supply_normalized": "0.00000000" }, { "asset": "EXPANSIVE", "asset_id": "1024679892006", "asset_longname": null, - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", - "owner": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", + "owner": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": false, "supply": 0, @@ -6472,16 +6472,16 @@ "description_locked": false, "first_issuance_block_index": 222, "last_issuance_block_index": 223, - "first_issuance_block_time": 1733662886, - "last_issuance_block_time": 1733662889, + "first_issuance_block_time": 1733664076, + "last_issuance_block_time": 1733664080, "supply_normalized": "0.00000000" }, { "asset": "BURNER", "asset_id": "21328597", "asset_longname": null, - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", - "owner": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", + "owner": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true, "supply": 100000000, @@ -6489,8 +6489,8 @@ "description_locked": false, "first_issuance_block_index": 220, "last_issuance_block_index": 221, - "first_issuance_block_time": 1733662879, - "last_issuance_block_time": 1733662883, + "first_issuance_block_time": 1733664068, + "last_issuance_block_time": 1733664071, "supply_normalized": "1.00000000" } ], @@ -6502,8 +6502,8 @@ "asset": "BURNER", "asset_id": "21328597", "asset_longname": null, - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", - "owner": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", + "owner": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true, "supply": 100000000, @@ -6511,15 +6511,15 @@ "description_locked": false, "first_issuance_block_index": 220, "last_issuance_block_index": 221, - "first_issuance_block_time": 1733662879, - "last_issuance_block_time": 1733662883, + "first_issuance_block_time": 1733664068, + "last_issuance_block_time": 1733664071, "supply_normalized": "1.00000000" } }, "/v2/assets//balances": { "result": [ { - "address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -6528,14 +6528,14 @@ "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, "quantity_normalized": "0.80000000" }, { - "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "address": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "utxo": null, "utxo_address": null, "asset": "BURNER", @@ -6544,7 +6544,7 @@ "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -6557,7 +6557,7 @@ "/v2/assets//balances/
": { "result": [ { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "asset_longname": null, "quantity": 82599966196, @@ -6580,9 +6580,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", + "tx_hash": "8cf9dd0bba63907b47eaffd8339bfc5d2a084267465b28eccf9364df93ceed37", "block_index": 179, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6598,7 +6598,7 @@ "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662607, + "block_time": 1733663781, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6626,9 +6626,9 @@ }, { "tx_index": 55, - "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "tx_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", "block_index": 202, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -6644,7 +6644,7 @@ "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662777, + "block_time": 1733663962, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6672,9 +6672,9 @@ }, { "tx_index": 62, - "tx_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", + "tx_hash": "4387209cd138023912f31ea19f0290397fffd4f21b306e08ad5ef9c80d0836aa", "block_index": 188, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -6690,7 +6690,7 @@ "status": "cancelled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662715, + "block_time": 1733663880, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6718,9 +6718,9 @@ }, { "tx_index": 64, - "tx_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", + "tx_hash": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", "block_index": 211, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 0, @@ -6736,7 +6736,7 @@ "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662819, + "block_time": 1733664025, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6764,9 +6764,9 @@ }, { "tx_index": 56, - "tx_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "tx_hash": "5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", "block_index": 182, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -6782,7 +6782,7 @@ "status": "filled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662675, + "block_time": 1733663847, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -6815,13 +6815,13 @@ "/v2/assets//matches": { "result": [ { - "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "tx0_index": 55, - "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 58, - "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "tx1_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "tx1_address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -6834,7 +6834,7 @@ "match_expire_index": 203, "fee_paid": 0, "status": "expired", - "block_time": 1733662785, + "block_time": 1733663979, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6854,13 +6854,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", "tx0_index": 55, - "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 56, - "tx1_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", - "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "tx1_hash": "5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", + "tx1_address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -6873,7 +6873,7 @@ "match_expire_index": 201, "fee_paid": 0, "status": "completed", - "block_time": 1733662675, + "block_time": 1733663847, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6893,13 +6893,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf_4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", + "id": "8cf9dd0bba63907b47eaffd8339bfc5d2a084267465b28eccf9364df93ceed37_017693fda4299ac90631a7e1b7d10c7e90c3c40fab69bac2d869882df78f16ad", "tx0_index": 53, - "tx0_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "8cf9dd0bba63907b47eaffd8339bfc5d2a084267465b28eccf9364df93ceed37", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 54, - "tx1_hash": "4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", - "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "tx1_hash": "017693fda4299ac90631a7e1b7d10c7e90c3c40fab69bac2d869882df78f16ad", + "tx1_address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6912,7 +6912,7 @@ "match_expire_index": 178, "fee_paid": 0, "status": "expired", - "block_time": 1733662607, + "block_time": 1733663781, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6932,13 +6932,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "id": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "tx0_index": 64, - "tx0_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 58, - "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "tx1_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "tx1_address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -6951,7 +6951,7 @@ "match_expire_index": 224, "fee_paid": 0, "status": "expired", - "block_time": 1733662907, + "block_time": 1733664086, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -6978,19 +6978,19 @@ "result": [ { "block_index": 221, - "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "address": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "asset": "BURNER", "quantity": 20000000, "calling_function": "fairmint commission", - "event": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", + "event": "feb9230ff4823ac9611af89348fc8b3a3ef21e174720c321bdd359100a8cf8a3", "tx_index": 97, "utxo": null, "utxo_address": null, - "block_time": 1733662883, + "block_time": 1733664071, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -6998,19 +6998,19 @@ }, { "block_index": 221, - "address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "asset": "BURNER", "quantity": 80000000, "calling_function": "fairmint", - "event": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", + "event": "feb9230ff4823ac9611af89348fc8b3a3ef21e174720c321bdd359100a8cf8a3", "tx_index": 97, "utxo": null, "utxo_address": null, - "block_time": 1733662883, + "block_time": 1733664071, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -7028,11 +7028,11 @@ "asset": "XCP", "quantity": 2000000000, "action": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "utxo": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "utxo_address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", - "block_time": 1733662951, + "utxo": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "utxo_address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7044,15 +7044,15 @@ }, { "block_index": 232, - "address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "event": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "tx_index": 105, "utxo": null, "utxo_address": null, - "block_time": 1733662942, + "block_time": 1733664114, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7064,15 +7064,15 @@ }, { "block_index": 227, - "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "address": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", + "event": "ece5e1523238a478b2934616134dbc3c0c0d7652e681fc120ac41e78259153a7", "tx_index": 101, "utxo": null, "utxo_address": null, - "block_time": 1733662914, + "block_time": 1733664094, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7084,15 +7084,15 @@ }, { "block_index": 225, - "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "address": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", + "event": "63c244c2e46947aec961ae8798f3dfec0a61e6bd08f81aae44f51f68344844d5", "tx_index": 100, "utxo": null, "utxo_address": null, - "block_time": 1733662907, + "block_time": 1733664086, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7104,15 +7104,15 @@ }, { "block_index": 222, - "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "address": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "asset": "XCP", "quantity": 50000000, "action": "fairminter fee", - "event": "55c081be300d1ac4ff7b175d9795db435293e7dc10a2b88ba972b6995ca61ac6", + "event": "a3583dc43bd64e5e347a1ad1a0faf67afd0c866d117c1c7db51bea686adef8f7", "tx_index": 98, "utxo": null, "utxo_address": null, - "block_time": 1733662886, + "block_time": 1733664076, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7135,14 +7135,14 @@ "result": [ { "tx_index": 97, - "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", + "tx_hash": "feb9230ff4823ac9611af89348fc8b3a3ef21e174720c321bdd359100a8cf8a3", "msg_index": 0, "block_index": 221, "asset": "BURNER", "quantity": 100000000, "divisible": true, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "transfer": false, "callable": false, "call_date": 0, @@ -7156,20 +7156,20 @@ "description_locked": true, "fair_minting": false, "asset_events": "fairmint", - "block_time": 1733662883, + "block_time": 1733664071, "quantity_normalized": "1.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 96, - "tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", + "tx_hash": "16a2331c4274ae6134bdce67bdbfd33cd2b39ba2fd15ef604046a63f8992d3ed", "msg_index": 0, "block_index": 220, "asset": "BURNER", "quantity": 0, "divisible": true, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "transfer": false, "callable": false, "call_date": 0, @@ -7183,7 +7183,7 @@ "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", - "block_time": 1733662879, + "block_time": 1733664068, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -7195,17 +7195,17 @@ "result": [ { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7218,17 +7218,17 @@ }, { "tx_index": 81, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "memo1", "fee_paid": 0, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7241,17 +7241,17 @@ }, { "tx_index": 80, - "tx_hash": "b02635c412abab7c8cb2baced1657caa6580d20979b5873f23d94c4825da9ef4", + "tx_hash": "3597be86d3293a0d3f7479bc9ba8d67bb49b91394e7431bd93d8bf1fccf858a7", "block_index": 204, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "746865206d656d6f", "fee_paid": 0, - "block_time": 1733662785, + "block_time": 1733663979, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7264,17 +7264,17 @@ }, { "tx_index": 79, - "tx_hash": "8e07ec1fff4477a153fcc91fcf374e0e3d27f5396900895730feab5fd1f95bab", + "tx_hash": "fea3d9235869672a0e8112d742c6e0a4148d4cdf6c9ecdf2f6b8febf88ffa4f0", "block_index": 203, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "memo1", "fee_paid": 0, - "block_time": 1733662781, + "block_time": 1733663976, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7287,17 +7287,17 @@ }, { "tx_index": 78, - "tx_hash": "08afb6823ce445c6d56f0da5d38fa50fe16a3b8b30c46f67556722f69ee262fe", + "tx_hash": "d4404afd04e56adcaef18084325532d54e3a3df141d086091d22d931e041cdfd", "block_index": 202, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "the memo", "fee_paid": 0, - "block_time": 1733662777, + "block_time": 1733663962, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7316,9 +7316,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7327,7 +7327,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7337,7 +7337,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7354,9 +7354,9 @@ }, { "tx_index": 29, - "tx_hash": "6daa84f64ee34d9155c3428658588fff312d5e267875c528a19e7b6706fb3fa5", + "tx_hash": "148cc6cd20ece0f264176be2b23f51e8e38497541e62fb345744ad3d8f174bd9", "block_index": 133, - "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7365,7 +7365,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "origin": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -7375,7 +7375,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662488, + "block_time": 1733663657, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7392,9 +7392,9 @@ }, { "tx_index": 30, - "tx_hash": "ea1a192405fa4439cd194c2dd622e088addef725cb25debbd12b34766f2140a7", + "tx_hash": "c94bc472c505bbd908031a7adcf8e688d673892d00e7be53eb1fbee53f25379f", "block_index": 141, - "source": "mwGrVHb495rLnPnW2W9yvMfsayfdGhBD7M", + "source": "mvhkw2Szn9FeXit5DkusaxK7CS66HghzXC", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -7402,10 +7402,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "8d23eecb8396aa466580dc248667649c9fd8e56e37ec0e13c9361bb3e7ab2dd0", - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "last_status_tx_hash": "ce4c7b40d22c27be1bd046befedc5d0712705354c6e0fc7173a7549d97b51c88", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 0, - "last_status_tx_source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "last_status_tx_source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "close_block_index": 141, "price": 1.0, "fiat_price": null, @@ -7413,7 +7413,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662517, + "block_time": 1733663694, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7430,18 +7430,18 @@ }, { "tx_index": 33, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "oracle_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "last_status_tx_hash": null, - "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "origin": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7451,7 +7451,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7473,9 +7473,9 @@ "/v2/assets//dispensers/
": { "result": { "tx_index": 26, - "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -7484,7 +7484,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7494,7 +7494,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7514,7 +7514,7 @@ "result": [ { "asset": "BURNER", - "address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "quantity": 80000000, "escrow": null, "cursor_id": "balances_55", @@ -7523,7 +7523,7 @@ "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -7531,7 +7531,7 @@ }, { "asset": "BURNER", - "address": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "address": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "quantity": 20000000, "escrow": null, "cursor_id": "balances_56", @@ -7540,7 +7540,7 @@ "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -7555,26 +7555,26 @@ { "tx_index": 106, "dispense_index": 0, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "btc_amount": 1000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "oracle_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "last_status_tx_hash": null, - "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "origin": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7589,7 +7589,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7603,26 +7603,26 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "72aeb92e989c915f9b002d26cd474ce972dcb2c06d76abfabf4feee4d3ba3e25", + "tx_hash": "7eb1c4f5b5224621998efc4c6d2cfac3df256cf1e7b2d01062ccfd70a9412e6f", "block_index": 138, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "destination": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "destination": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "btc_amount": 10000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "oracle_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "last_status_tx_hash": null, - "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "origin": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7637,7 +7637,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733662506, + "block_time": 1733663684, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7651,18 +7651,18 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", + "tx_hash": "e02ea87bd0376af951ee8a57a3103e5d6f0265252ded7746b00c046b77033c51", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7670,7 +7670,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7685,7 +7685,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7699,18 +7699,18 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", + "tx_hash": "8a51521b8419746fa32485a32a6632ab14a0832c48d2f16a28655b3595bfc17d", "block_index": 131, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -7718,7 +7718,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -7733,7 +7733,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662481, + "block_time": 1733663640, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7756,10 +7756,10 @@ "/v2/assets//fairminters": { "result": [ { - "tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", + "tx_hash": "16a2331c4274ae6134bdce67bdbfd33cd2b39ba2fd15ef604046a63f8992d3ed", "tx_index": 96, "block_index": 221, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "asset": "BURNER", "asset_parent": null, "asset_longname": null, @@ -7783,7 +7783,7 @@ "earned_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, - "block_time": 1733662883, + "block_time": 1733664071, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "1.00000000", "soft_cap_normalized": "0.00000000", @@ -7801,21 +7801,21 @@ "/v2/assets//fairmints": { "result": [ { - "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", + "tx_hash": "feb9230ff4823ac9611af89348fc8b3a3ef21e174720c321bdd359100a8cf8a3", "tx_index": 97, "block_index": 221, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "fairminter_tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "fairminter_tx_hash": "16a2331c4274ae6134bdce67bdbfd33cd2b39ba2fd15ef604046a63f8992d3ed", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", - "block_time": 1733662883, + "block_time": 1733664071, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -7836,9 +7836,9 @@ "result": [ { "tx_index": 53, - "tx_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", + "tx_hash": "8cf9dd0bba63907b47eaffd8339bfc5d2a084267465b28eccf9364df93ceed37", "block_index": 179, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -7854,7 +7854,7 @@ "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662607, + "block_time": 1733663781, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7882,9 +7882,9 @@ }, { "tx_index": 55, - "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "tx_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", "block_index": 202, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -7900,7 +7900,7 @@ "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662777, + "block_time": 1733663962, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -7928,9 +7928,9 @@ }, { "tx_index": 56, - "tx_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "tx_hash": "5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", "block_index": 182, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -7946,7 +7946,7 @@ "status": "filled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662675, + "block_time": 1733663847, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -7974,9 +7974,9 @@ }, { "tx_index": 58, - "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "block_index": 205, - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -7992,7 +7992,7 @@ "status": "expired", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662789, + "block_time": 1733663983, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -8020,9 +8020,9 @@ }, { "tx_index": 62, - "tx_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", + "tx_hash": "4387209cd138023912f31ea19f0290397fffd4f21b306e08ad5ef9c80d0836aa", "block_index": 188, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -8038,7 +8038,7 @@ "status": "cancelled", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662715, + "block_time": 1733663880, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8071,9 +8071,9 @@ "/v2/orders/": { "result": { "tx_index": 104, - "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "block_index": 231, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 0, @@ -8089,7 +8089,7 @@ "status": "open", "give_price": 1.0, "get_price": 1.0, - "block_time": 1733662928, + "block_time": 1733664110, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -8100,7 +8100,7 @@ "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "issuer": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "divisible": true, "locked": false }, @@ -8119,13 +8119,13 @@ "/v2/orders//matches": { "result": [ { - "id": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076_97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "id": "238eb2739cf62d41cc2aa459c23bc83d5c7b43f6a7bd00e39044d7be51abb255_93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "tx0_index": 103, - "tx0_hash": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076", - "tx0_address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "tx0_hash": "238eb2739cf62d41cc2aa459c23bc83d5c7b43f6a7bd00e39044d7be51abb255", + "tx0_address": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "tx1_index": 104, - "tx1_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", - "tx1_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx1_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", + "tx1_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8138,11 +8138,11 @@ "match_expire_index": 251, "fee_paid": 0, "status": "pending", - "block_time": 1733662928, + "block_time": 1733664110, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "issuer": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "divisible": true, "locked": false }, @@ -8165,14 +8165,14 @@ "result": [ { "tx_index": 57, - "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", + "tx_hash": "9856ba83ca5f23579cb3f792ae48c1bc7497391d9677ad8d3e6a6fdf2d3025ec", "block_index": 182, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "btc_amount": 2000, - "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "order_match_id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", "status": "valid", - "block_time": 1733662675, + "block_time": 1733663847, "btc_amount_normalized": "0.00002000" } ], @@ -8183,9 +8183,9 @@ "result": [ { "tx_index": 56, - "tx_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "tx_hash": "5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", "block_index": 182, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "give_asset": "BTC", "give_quantity": 2000, "give_remaining": 0, @@ -8202,7 +8202,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1733662675, + "block_time": 1733663847, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -8228,9 +8228,9 @@ }, { "tx_index": 58, - "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "tx_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "block_index": 205, - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "give_asset": "BTC", "give_quantity": 3000, "give_remaining": 2000, @@ -8247,7 +8247,7 @@ "market_pair": "BTC/XCP", "market_dir": "SELL", "market_price": "1.00000000", - "block_time": 1733662789, + "block_time": 1733663983, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -8273,9 +8273,9 @@ }, { "tx_index": 53, - "tx_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", + "tx_hash": "8cf9dd0bba63907b47eaffd8339bfc5d2a084267465b28eccf9364df93ceed37", "block_index": 179, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -8292,7 +8292,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733662607, + "block_time": 1733663781, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8318,9 +8318,9 @@ }, { "tx_index": 55, - "tx_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", + "tx_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", "block_index": 202, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 10000, "give_remaining": 5000, @@ -8337,7 +8337,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733662777, + "block_time": 1733663962, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8363,9 +8363,9 @@ }, { "tx_index": 62, - "tx_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", + "tx_hash": "4387209cd138023912f31ea19f0290397fffd4f21b306e08ad5ef9c80d0836aa", "block_index": 188, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_asset": "XCP", "give_quantity": 1000, "give_remaining": 1000, @@ -8382,7 +8382,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733662715, + "block_time": 1733663880, "give_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8413,13 +8413,13 @@ "/v2/orders///matches": { "result": [ { - "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "tx0_index": 55, - "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 58, - "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "tx1_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "tx1_address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -8435,7 +8435,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733662785, + "block_time": 1733663979, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8455,13 +8455,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", "tx0_index": 55, - "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 56, - "tx1_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", - "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "tx1_hash": "5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", + "tx1_address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -8477,7 +8477,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733662675, + "block_time": 1733663847, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8497,13 +8497,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf_4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", + "id": "8cf9dd0bba63907b47eaffd8339bfc5d2a084267465b28eccf9364df93ceed37_017693fda4299ac90631a7e1b7d10c7e90c3c40fab69bac2d869882df78f16ad", "tx0_index": 53, - "tx0_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "8cf9dd0bba63907b47eaffd8339bfc5d2a084267465b28eccf9364df93ceed37", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 54, - "tx1_hash": "4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", - "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "tx1_hash": "017693fda4299ac90631a7e1b7d10c7e90c3c40fab69bac2d869882df78f16ad", + "tx1_address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8519,7 +8519,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733662607, + "block_time": 1733663781, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8539,13 +8539,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "id": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "tx0_index": 64, - "tx0_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 58, - "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "tx1_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "tx1_address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8561,7 +8561,7 @@ "market_pair": "BTC/XCP", "market_dir": "BUY", "market_price": "1.00000000", - "block_time": 1733662907, + "block_time": 1733664086, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8587,13 +8587,13 @@ "/v2/order_matches": { "result": [ { - "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "tx0_index": 55, - "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 58, - "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "tx1_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "tx1_address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "forward_asset": "XCP", "forward_quantity": 3000, "backward_asset": "BTC", @@ -8606,7 +8606,7 @@ "match_expire_index": 203, "fee_paid": 0, "status": "expired", - "block_time": 1733662785, + "block_time": 1733663979, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8626,13 +8626,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", + "id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", "tx0_index": 55, - "tx0_hash": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 56, - "tx1_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", - "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "tx1_hash": "5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", + "tx1_address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "forward_asset": "XCP", "forward_quantity": 2000, "backward_asset": "BTC", @@ -8645,7 +8645,7 @@ "match_expire_index": 201, "fee_paid": 0, "status": "completed", - "block_time": 1733662675, + "block_time": 1733663847, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8665,13 +8665,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf_4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", + "id": "8cf9dd0bba63907b47eaffd8339bfc5d2a084267465b28eccf9364df93ceed37_017693fda4299ac90631a7e1b7d10c7e90c3c40fab69bac2d869882df78f16ad", "tx0_index": 53, - "tx0_hash": "33264437edc34f90ce8efe8533d3579eaf75a780019fe0e3dd40974e562d2dbf", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "8cf9dd0bba63907b47eaffd8339bfc5d2a084267465b28eccf9364df93ceed37", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 54, - "tx1_hash": "4cdda12ec714f7ca992779fb6ac719708c716b39c75ee919bd3602f412f08579", - "tx1_address": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "tx1_hash": "017693fda4299ac90631a7e1b7d10c7e90c3c40fab69bac2d869882df78f16ad", + "tx1_address": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8684,7 +8684,7 @@ "match_expire_index": 178, "fee_paid": 0, "status": "expired", - "block_time": 1733662607, + "block_time": 1733663781, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8704,13 +8704,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "id": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "tx0_index": 64, - "tx0_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "tx0_hash": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "tx1_index": 58, - "tx1_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "tx1_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "tx1_address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "forward_asset": "XCP", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8723,7 +8723,7 @@ "match_expire_index": 224, "fee_paid": 0, "status": "expired", - "block_time": 1733662907, + "block_time": 1733664086, "forward_asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8743,13 +8743,13 @@ "fee_paid_normalized": "0.00000000" }, { - "id": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076_97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "id": "238eb2739cf62d41cc2aa459c23bc83d5c7b43f6a7bd00e39044d7be51abb255_93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "tx0_index": 103, - "tx0_hash": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076", - "tx0_address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "tx0_hash": "238eb2739cf62d41cc2aa459c23bc83d5c7b43f6a7bd00e39044d7be51abb255", + "tx0_address": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "tx1_index": 104, - "tx1_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", - "tx1_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx1_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", + "tx1_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "forward_asset": "UTXOASSET", "forward_quantity": 1000, "backward_asset": "BTC", @@ -8762,11 +8762,11 @@ "match_expire_index": 251, "fee_paid": 0, "status": "pending", - "block_time": 1733662928, + "block_time": 1733664110, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "issuer": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "divisible": true, "locked": false }, @@ -8807,61 +8807,61 @@ "result": [ { "tx_index": 9, - "tx_hash": "95db2791e37d288a1a4fb3c7414e3aca564b4024baaaf2c7bc77689349c31ca7", + "tx_hash": "7f95f11da950a3e99186454fbeaac75e4716fe2aa0a9a0977ca5c2204bdd53de", "block_index": 112, - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733662402, + "block_time": 1733663559, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 8, - "tx_hash": "6de7deec7c8727742c815e615c25f63198863a9719b8689ce8570a98b634ce88", + "tx_hash": "90e561e2e4a37d3fedd43ff0256746d13bde3e5080f86bb85784b204a43502b9", "block_index": 112, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733662402, + "block_time": 1733663559, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 7, - "tx_hash": "ea86811a25f89384639a856ef3b3d26ebabfac1d2c31342efdef66929a8caf85", + "tx_hash": "d15f4575848c0390b190aea13dc5a78b4a5bfafc40e6f16ba96e05d9450e23b2", "block_index": 112, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1qf6h255qf77vgyg4exfe33z83e8dntf3rv2euq6", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733662402, + "block_time": 1733663559, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 6, - "tx_hash": "adc429a9b034bc1bf40ab54154ae4ed40522824a59177a92f9bae9163626d06a", + "tx_hash": "e5725f66d04c1c80d3497f53b35aeb29cbcbef04a521bb7910119812b75bf6a5", "block_index": 112, - "source": "bcrt1qcg7s7t5nr4edjh4znztk65wcrp3quf3h8ky2le", + "source": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733662402, + "block_time": 1733663559, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, { "tx_index": 5, - "tx_hash": "87bf46153fabbf44f202f0538ee531356e5ce77768e094ec9859b5a11380c959", + "tx_hash": "2b8a532563fa1fad30fded52f872327ec43ef62008e54605b4c7497f0c5b3fa1", "block_index": 112, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "burned": 50000000, "earned": 74999998167, "status": "valid", - "block_time": 1733662402, + "block_time": 1733663559, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" } @@ -8873,9 +8873,9 @@ "result": [ { "tx_index": 26, - "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8884,7 +8884,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -8894,7 +8894,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8911,9 +8911,9 @@ }, { "tx_index": 29, - "tx_hash": "6daa84f64ee34d9155c3428658588fff312d5e267875c528a19e7b6706fb3fa5", + "tx_hash": "148cc6cd20ece0f264176be2b23f51e8e38497541e62fb345744ad3d8f174bd9", "block_index": 133, - "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -8922,7 +8922,7 @@ "give_remaining": 10000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "origin": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "dispense_count": 0, "last_status_tx_source": null, "close_block_index": null, @@ -8932,7 +8932,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662488, + "block_time": 1733663657, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8949,9 +8949,9 @@ }, { "tx_index": 30, - "tx_hash": "ea1a192405fa4439cd194c2dd622e088addef725cb25debbd12b34766f2140a7", + "tx_hash": "c94bc472c505bbd908031a7adcf8e688d673892d00e7be53eb1fbee53f25379f", "block_index": 141, - "source": "mwGrVHb495rLnPnW2W9yvMfsayfdGhBD7M", + "source": "mvhkw2Szn9FeXit5DkusaxK7CS66HghzXC", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10, @@ -8959,10 +8959,10 @@ "status": 10, "give_remaining": 0, "oracle_address": null, - "last_status_tx_hash": "8d23eecb8396aa466580dc248667649c9fd8e56e37ec0e13c9361bb3e7ab2dd0", - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "last_status_tx_hash": "ce4c7b40d22c27be1bd046befedc5d0712705354c6e0fc7173a7549d97b51c88", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 0, - "last_status_tx_source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "last_status_tx_source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "close_block_index": 141, "price": 1.0, "fiat_price": null, @@ -8970,7 +8970,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662517, + "block_time": 1733663694, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -8987,9 +8987,9 @@ }, { "tx_index": 68, - "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "block_index": 194, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "TESTLOCKDESC", "give_quantity": 1, "escrow_quantity": 10000, @@ -8998,7 +8998,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -9008,11 +9008,11 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662737, + "block_time": 1733663923, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -9025,18 +9025,18 @@ }, { "tx_index": 33, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "oracle_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "last_status_tx_hash": null, - "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "origin": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9046,7 +9046,7 @@ "fiat_unit": "USD", "oracle_price_last_updated": 129, "satoshi_price": 16, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9068,9 +9068,9 @@ "/v2/dispensers/": { "result": { "tx_index": 26, - "tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "give_quantity": 1, "escrow_quantity": 10000, @@ -9079,7 +9079,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9089,7 +9089,7 @@ "fiat_unit": null, "oracle_price_last_updated": null, "satoshi_price": 1, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9110,18 +9110,18 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", + "tx_hash": "e02ea87bd0376af951ee8a57a3103e5d6f0265252ded7746b00c046b77033c51", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9129,7 +9129,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9144,7 +9144,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9158,18 +9158,18 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", + "tx_hash": "8a51521b8419746fa32485a32a6632ab14a0832c48d2f16a28655b3595bfc17d", "block_index": 131, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9177,7 +9177,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9192,7 +9192,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662481, + "block_time": 1733663640, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9211,19 +9211,19 @@ "result": [ { "tx_index": 42, - "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", + "tx_hash": "9676962b470a9998d30eeaec911a79f39a722075bb60a164d5e1ef5f59945120", "block_index": 146, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", - "block_time": 1733662534, + "block_time": 1733663711, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -9244,19 +9244,19 @@ "/v2/dividends/": { "result": { "tx_index": 42, - "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", + "tx_hash": "9676962b470a9998d30eeaec911a79f39a722075bb60a164d5e1ef5f59945120", "block_index": 146, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "MYASSETA", "dividend_asset": "XCP", "quantity_per_unit": 100000000, "fee_paid": 20000, "status": "valid", - "block_time": 1733662534, + "block_time": 1733663711, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -9279,11 +9279,11 @@ "asset": "XCP", "quantity": 2000000000, "calling_function": "dividend", - "event": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", + "event": "9676962b470a9998d30eeaec911a79f39a722075bb60a164d5e1ef5f59945120", "tx_index": 42, - "utxo": "4d60faaba1be8d75881d245edb4e2f8aed601765899645793cf6d3d731c5d520:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662534, + "utxo": "440be1bc00222cdf63bf492f473f82ad0f5089a2b917b7971f55ee413ee5af72:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733663711, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9304,27 +9304,27 @@ "event": "BLOCK_PARSED", "params": { "block_index": 234, - "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", - "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", + "ledger_hash": "45ce2aec46047790b784c61e48d1a4a33fab17a4ae86db0601f02b5bc64a0fa1", + "messages_hash": "222bf6a0adcb1f8c1df56bb65831fdc05183e797fbca2ac43dbb06bdd89b9a88", "transaction_count": 1, - "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", - "block_time": 1733662951 + "txlist_hash": "f0253bdf0d14167513005643cdec3e8872519b0226a5194e52eae3149f35ddd5", + "block_time": 1733664124 }, "tx_hash": null, "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 929, "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106 }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 928, @@ -9333,14 +9333,14 @@ "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9351,9 +9351,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 927, @@ -9362,9 +9362,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": 0, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9374,24 +9374,24 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9401,9 +9401,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 925, @@ -9415,15 +9415,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 234, - "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", - "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", + "ledger_hash": "45ce2aec46047790b784c61e48d1a4a33fab17a4ae86db0601f02b5bc64a0fa1", + "messages_hash": "222bf6a0adcb1f8c1df56bb65831fdc05183e797fbca2ac43dbb06bdd89b9a88", "transaction_count": 1, - "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", - "block_time": 1733662951 + "txlist_hash": "f0253bdf0d14167513005643cdec3e8872519b0226a5194e52eae3149f35ddd5", + "block_time": 1733664124 }, "tx_hash": null, "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } }, "/v2/events/counts": { @@ -9458,16 +9458,16 @@ "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9477,9 +9477,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 924, @@ -9489,12 +9489,12 @@ "asset": "XCP", "block_index": 234, "calling_function": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 2000000000, "tx_index": 106, - "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662951, + "utxo": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9504,9 +9504,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 921, @@ -9516,24 +9516,24 @@ "asset": "MYASSETA", "block_index": 234, "calling_function": "utxo move", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 2000000000, "tx_index": 106, - "utxo": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", - "utxo_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "block_time": 1733662951, + "utxo": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", + "utxo_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 }, { "event_index": 877, @@ -9543,39 +9543,39 @@ "asset": "PREMINT", "block_index": 227, "calling_function": "escrowed premint", - "event": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", + "event": "ece5e1523238a478b2934616134dbc3c0c0d7652e681fc120ac41e78259153a7", "quantity": 50, "tx_index": 101, "utxo": null, "utxo_address": null, - "block_time": 1733662914, + "block_time": 1733664094, "asset_info": { "asset_longname": null, "description": "My super description", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": false }, "quantity_normalized": "0.00000050" }, - "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", + "tx_hash": "ece5e1523238a478b2934616134dbc3c0c0d7652e681fc120ac41e78259153a7", "block_index": 227, - "block_time": 1733662914 + "block_time": 1733664094 }, { "event_index": 860, "event": "CREDIT", "params": { - "address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "block_index": 225, "calling_function": "order expired", - "event": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "event": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "quantity": 1000, "tx_index": 0, "utxo": null, "utxo_address": null, - "block_time": 1733662907, + "block_time": 1733664086, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9585,9 +9585,9 @@ }, "quantity_normalized": "0.00001000" }, - "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", + "tx_hash": "63c244c2e46947aec961ae8798f3dfec0a61e6bd08f81aae44f51f68344844d5", "block_index": 225, - "block_time": 1733662907 + "block_time": 1733664086 } ], "next_cursor": 834, @@ -9604,26 +9604,26 @@ { "tx_index": 106, "dispense_index": 0, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "btc_amount": 1000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "oracle_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "last_status_tx_hash": null, - "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "origin": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9638,7 +9638,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9652,18 +9652,18 @@ { "tx_index": 69, "dispense_index": 0, - "tx_hash": "3d816bb9da3e8382155c32330e0949633245a5b06a4e040498c8290561e28139", + "tx_hash": "da6a151b91397c5fe8d86bc389708b01e210739f880c2ea12bd3a0d517878c8a", "block_index": 194, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "TESTLOCKDESC", "dispense_quantity": 4000, - "dispenser_tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "dispenser_tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "btc_amount": 4000, "dispenser": { "tx_index": 68, "block_index": 194, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9671,7 +9671,7 @@ "give_remaining": 6000, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 1, "last_status_tx_source": null, "close_block_index": null, @@ -9686,11 +9686,11 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662737, + "block_time": 1733663923, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -9700,26 +9700,26 @@ { "tx_index": 34, "dispense_index": 0, - "tx_hash": "72aeb92e989c915f9b002d26cd474ce972dcb2c06d76abfabf4feee4d3ba3e25", + "tx_hash": "7eb1c4f5b5224621998efc4c6d2cfac3df256cf1e7b2d01062ccfd70a9412e6f", "block_index": 138, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "destination": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "destination": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "asset": "XCP", "dispense_quantity": 666, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "btc_amount": 10000, "dispenser": { "tx_index": 33, "block_index": 234, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, "status": 0, "give_remaining": 9268, - "oracle_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "oracle_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "last_status_tx_hash": null, - "origin": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "origin": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9734,7 +9734,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000016" }, - "block_time": 1733662506, + "block_time": 1733663684, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9748,18 +9748,18 @@ { "tx_index": 28, "dispense_index": 0, - "tx_hash": "88a390922efc2591110e74155141569e0bc9e192f96ecc3a46f982d74fa928fe", + "tx_hash": "e02ea87bd0376af951ee8a57a3103e5d6f0265252ded7746b00c046b77033c51", "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 4000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 4000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9767,7 +9767,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9782,7 +9782,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662484, + "block_time": 1733663654, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9796,18 +9796,18 @@ { "tx_index": 27, "dispense_index": 0, - "tx_hash": "e7da511456e468beef4275b5b11df1677da95903695609a68db2713a8db1cd46", + "tx_hash": "8a51521b8419746fa32485a32a6632ab14a0832c48d2f16a28655b3595bfc17d", "block_index": 131, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "asset": "XCP", "dispense_quantity": 6000, - "dispenser_tx_hash": "d94da67ac004d618398dd0806c2fd49a88d1a4aa595d50cc7561afd2e5788d9e", + "dispenser_tx_hash": "8475a69ef4f02334fa257d34c35c28c42c0a7a67f36a812659a5ee56f912260b", "btc_amount": 6000, "dispenser": { "tx_index": 26, "block_index": 132, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "give_quantity": 1, "escrow_quantity": 10000, "satoshirate": 1, @@ -9815,7 +9815,7 @@ "give_remaining": 0, "oracle_address": null, "last_status_tx_hash": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "dispense_count": 2, "last_status_tx_source": null, "close_block_index": null, @@ -9830,7 +9830,7 @@ "satoshirate_normalized": "0.00000001", "satoshi_price_normalized": "0.00000001" }, - "block_time": 1733662481, + "block_time": 1733663640, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9849,17 +9849,17 @@ "result": [ { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "asset": "XCP", "quantity": 2000000000, "status": "valid", "msg_index": 1, "memo": null, "fee_paid": 0, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9872,21 +9872,21 @@ }, { "tx_index": 106, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "asset": "MYASSETA", "quantity": 2000000000, "status": "valid", "msg_index": 0, "memo": null, "fee_paid": 0, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -9895,17 +9895,17 @@ }, { "tx_index": 81, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "asset": "XCP", "quantity": 10, "status": "valid", "msg_index": 2, "memo": "memo1", "fee_paid": 0, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -9918,21 +9918,21 @@ }, { "tx_index": 81, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 1, "memo": "memo3", "fee_paid": 0, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -9941,21 +9941,21 @@ }, { "tx_index": 81, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "asset": "MPMASSET", "quantity": 10, "status": "valid", "msg_index": 0, "memo": "the memo", "fee_paid": 0, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -9970,14 +9970,14 @@ "result": [ { "tx_index": 105, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "msg_index": 0, "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "issuer": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "transfer": false, "callable": false, "call_date": 0, @@ -9991,20 +9991,20 @@ "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", - "block_time": 1733662942, + "block_time": 1733664114, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, { "tx_index": 102, - "tx_hash": "b78410a2a80a2abbde1b69ab81f14bd7d3a9620b7d8594371942c474a0ea8776", + "tx_hash": "4e643061d48f23c90ba0e5c90b321b01eab4611cdaef5b04ba7e31327c126424", "msg_index": 0, "block_index": 229, "asset": "PREMINT", "quantity": 0, "divisible": true, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "transfer": false, "callable": false, "call_date": 0, @@ -10018,20 +10018,20 @@ "description_locked": false, "fair_minting": false, "asset_events": "change_description", - "block_time": 1733662921, + "block_time": 1733664102, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 101, - "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", + "tx_hash": "ece5e1523238a478b2934616134dbc3c0c0d7652e681fc120ac41e78259153a7", "msg_index": 1, "block_index": 228, "asset": "PREMINT", "quantity": 0, "divisible": true, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "transfer": false, "callable": false, "call_date": 0, @@ -10045,20 +10045,20 @@ "description_locked": false, "fair_minting": false, "asset_events": "close_fairminter", - "block_time": 1733662918, + "block_time": 1733664098, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" }, { "tx_index": 101, - "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", + "tx_hash": "ece5e1523238a478b2934616134dbc3c0c0d7652e681fc120ac41e78259153a7", "msg_index": 0, "block_index": 227, "asset": "PREMINT", "quantity": 50, "divisible": true, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "transfer": false, "callable": false, "call_date": 0, @@ -10072,20 +10072,20 @@ "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", - "block_time": 1733662914, + "block_time": 1733664094, "quantity_normalized": "0.00000050", "fee_paid_normalized": "0.50000000" }, { "tx_index": 100, - "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", + "tx_hash": "63c244c2e46947aec961ae8798f3dfec0a61e6bd08f81aae44f51f68344844d5", "msg_index": 1, "block_index": 226, "asset": "STARTNOW", "quantity": 0, "divisible": true, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "transfer": false, "callable": false, "call_date": 0, @@ -10099,7 +10099,7 @@ "description_locked": false, "fair_minting": false, "asset_events": "close_fairminter", - "block_time": 1733662911, + "block_time": 1733664091, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.00000000" } @@ -10110,14 +10110,14 @@ "/v2/issuances/": { "result": { "tx_index": 105, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "msg_index": 0, "block_index": 232, "asset": "OPENFAIR", "quantity": 0, "divisible": true, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "issuer": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "transfer": false, "callable": false, "call_date": 0, @@ -10131,7 +10131,7 @@ "description_locked": false, "fair_minting": true, "asset_events": "open_fairminter", - "block_time": 1733662942, + "block_time": 1733664114, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" } @@ -10140,15 +10140,15 @@ "result": [ { "tx_index": 65, - "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", + "tx_hash": "f6f1dd1640fa599d048daaa43dd7ad57104761cce91bb73182ac3ce688e2daf1", "block_index": 190, - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, - "block_time": 1733662722, + "block_time": 1733663898, "fee_paid_normalized": "0.00600000" } ], @@ -10159,15 +10159,15 @@ "result": [ { "tx_index": 65, - "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", + "tx_hash": "f6f1dd1640fa599d048daaa43dd7ad57104761cce91bb73182ac3ce688e2daf1", "block_index": 190, - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "flags": 1, "status": "valid", "memo": "sweep my assets", "fee_paid": 600000, - "block_time": 1733662722, + "block_time": 1733663898, "fee_paid_normalized": "0.00600000" } ], @@ -10178,30 +10178,30 @@ "result": [ { "tx_index": 25, - "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", + "tx_hash": "0d855bb8de5f24b5c232aee85adf238f6f2a3dfb506f6b291a66f9f2d636966a", "block_index": 129, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, "text": "price-USD", "locked": false, "status": "valid", - "block_time": 1733662474, + "block_time": 1733663634, "fee_fraction_int_normalized": "0.00000000" }, { "tx_index": 24, - "tx_hash": "3241987309692b6707b4651f9f2a8e60f491efb1911cae2686f47ae12966e8f1", + "tx_hash": "c262dac35899eebabf2318179d4a8a961dd6559352d33589e7edbd5323b52320", "block_index": 128, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "timestamp": 4003903983, "value": 999.0, "fee_fraction_int": 0, "text": "Hello, world!", "locked": false, "status": "valid", - "block_time": 1733662470, + "block_time": 1733663630, "fee_fraction_int_normalized": "0.00000000" } ], @@ -10211,26 +10211,26 @@ "/v2/broadcasts/": { "result": { "tx_index": 25, - "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", + "tx_hash": "0d855bb8de5f24b5c232aee85adf238f6f2a3dfb506f6b291a66f9f2d636966a", "block_index": 129, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "timestamp": 4003903983, "value": 66600.0, "fee_fraction_int": 0, "text": "price-USD", "locked": false, "status": "valid", - "block_time": 1733662474, + "block_time": 1733663634, "fee_fraction_int_normalized": "0.00000000" } }, "/v2/fairminters": { "result": [ { - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "tx_index": 105, "block_index": 232, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "asset": "OPENFAIR", "asset_parent": null, "asset_longname": null, @@ -10254,7 +10254,7 @@ "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733662942, + "block_time": 1733664114, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10263,10 +10263,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", + "tx_hash": "ece5e1523238a478b2934616134dbc3c0c0d7652e681fc120ac41e78259153a7", "tx_index": 101, "block_index": 228, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "asset": "PREMINT", "asset_parent": null, "asset_longname": null, @@ -10290,7 +10290,7 @@ "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733662918, + "block_time": 1733664098, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -10299,10 +10299,10 @@ "premint_quantity_normalized": "0.00000050" }, { - "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", + "tx_hash": "63c244c2e46947aec961ae8798f3dfec0a61e6bd08f81aae44f51f68344844d5", "tx_index": 100, "block_index": 226, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "asset": "STARTNOW", "asset_parent": null, "asset_longname": null, @@ -10326,7 +10326,7 @@ "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733662911, + "block_time": 1733664091, "price_normalized": "1.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000100", @@ -10335,10 +10335,10 @@ "premint_quantity_normalized": "0.00000000" }, { - "tx_hash": "21f686ef5af2440a808c1ccfdcf310053abc7d20da5eedcf6fb011ae89d8c422", + "tx_hash": "af09266a3c789c0ee44481677e7d55e022e18d1cb814ee656348b798f5f56f0c", "tx_index": 99, "block_index": 224, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "asset": null, "asset_parent": null, "asset_longname": null, @@ -10362,13 +10362,13 @@ "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733662893 + "block_time": 1733664083 }, { - "tx_hash": "55c081be300d1ac4ff7b175d9795db435293e7dc10a2b88ba972b6995ca61ac6", + "tx_hash": "a3583dc43bd64e5e347a1ad1a0faf67afd0c866d117c1c7db51bea686adef8f7", "tx_index": 98, "block_index": 223, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "asset": "EXPANSIVE", "asset_parent": null, "asset_longname": null, @@ -10392,7 +10392,7 @@ "earned_quantity": null, "paid_quantity": null, "commission": null, - "block_time": 1733662889, + "block_time": 1733664080, "price_normalized": "99900000000.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -10407,21 +10407,21 @@ "/v2/fairmints": { "result": [ { - "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", + "tx_hash": "feb9230ff4823ac9611af89348fc8b3a3ef21e174720c321bdd359100a8cf8a3", "tx_index": 97, "block_index": 221, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "fairminter_tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "fairminter_tx_hash": "16a2331c4274ae6134bdce67bdbfd33cd2b39ba2fd15ef604046a63f8992d3ed", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", - "block_time": 1733662883, + "block_time": 1733664071, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -10430,21 +10430,21 @@ "paid_quantity_normalized": "1.00000000" }, { - "tx_hash": "c078a7713eeb7de231ecc35c7a5d3af052929fd457546e76e80ce3c601ae9565", + "tx_hash": "cfd5d52db0004d5c662e58188c83c80eabbe2e1ee551e792b202c728cbb76dd5", "tx_index": 95, "block_index": 219, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "fairminter_tx_hash": "d2edc737c747e5f2031640e260b79f9298e92c792db93cbed5c3674e5acd5e6e", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "fairminter_tx_hash": "ec48a4f02cd559b5b7ac589d15ef3f5d4a99092ad3faa7290905a53bf1ebbc2b", "asset": "LOCKDESC", "earn_quantity": 800000000, "paid_quantity": 0, "commission": 200000000, "status": "valid", - "block_time": 1733662876, + "block_time": 1733664065, "asset_info": { "asset_longname": null, "description": "My super asset LOCKDESC", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -10453,21 +10453,21 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "35d1f1891ee7d00d5e7f8dfaa155d686d598074dd15b652ec736869735701453", + "tx_hash": "6a36a9b23de76c951f5db2e0b09cd7ae54841a5e09f122d6dbf273d3f5e82f38", "tx_index": 91, "block_index": 215, - "source": "bcrt1qj6tvevnnae8pm3edzntcj226e4ldzjefd2zw0x", - "fairminter_tx_hash": "547d662c481b6cce1fd0eebfbf61582a4c72c8f1c0c61721ae06a1b2d9ca776e", + "source": "bcrt1qx7pnpkyhrag0y4dknllvrpevam9zyjuelk48nc", + "fairminter_tx_hash": "a73da64e3a16c357d27307eeea3f02dd3864328ad91e3047c1987d1e15c6a1ef", "asset": "A95428959531084712", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1733662853, + "block_time": 1733664049, "asset_info": { "asset_longname": "PARENTA.SUBASSETC", "description": "", - "issuer": "bcrt1qj6tvevnnae8pm3edzntcj226e4ldzjefd2zw0x", + "issuer": "bcrt1qx7pnpkyhrag0y4dknllvrpevam9zyjuelk48nc", "divisible": true, "locked": false }, @@ -10476,21 +10476,21 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "f7afb409d53d760cc0e1b6287fb322b46c0cec5b0db19e0db1e4cb8e9acfa06c", + "tx_hash": "c596391857a9b55ece95aecde22793bcc1f097bf9a0c731b9c90b2d9287c9099", "tx_index": 46, "block_index": 150, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "fairminter_tx_hash": "f49987520b37269d66e22c08d64105ad8b3ca4ddd9cf77289a9c701eb7cd17fd", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "fairminter_tx_hash": "50923f7fcb999bf51e391f16f3d6904a103ab55460d3cd6094351a37489eb5b4", "asset": "FREEFAIRMINT", "earn_quantity": 80, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1733662559, + "block_time": 1733663735, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -10499,21 +10499,21 @@ "paid_quantity_normalized": "0.00000000" }, { - "tx_hash": "0f816a7124ca2d321d50cb5a756e505409860107a5cdf6818af0c49903109e92", + "tx_hash": "05d3d95677e594741397af8c1b7d70d95526f042d85bf688b81d518bef7473b4", "tx_index": 45, "block_index": 149, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", - "fairminter_tx_hash": "f49987520b37269d66e22c08d64105ad8b3ca4ddd9cf77289a9c701eb7cd17fd", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", + "fairminter_tx_hash": "50923f7fcb999bf51e391f16f3d6904a103ab55460d3cd6094351a37489eb5b4", "asset": "FREEFAIRMINT", "earn_quantity": 100, "paid_quantity": 0, "commission": 0, "status": "valid", - "block_time": 1733662555, + "block_time": 1733663732, "asset_info": { "asset_longname": null, "description": "", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -10527,21 +10527,21 @@ }, "/v2/fairmints/": { "result": { - "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", + "tx_hash": "feb9230ff4823ac9611af89348fc8b3a3ef21e174720c321bdd359100a8cf8a3", "tx_index": 97, "block_index": 221, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "fairminter_tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "fairminter_tx_hash": "16a2331c4274ae6134bdce67bdbfd33cd2b39ba2fd15ef604046a63f8992d3ed", "asset": "BURNER", "earn_quantity": 80000000, "paid_quantity": 100000000, "commission": 20000000, "status": "valid", - "block_time": 1733662883, + "block_time": 1733664071, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -10553,13 +10553,13 @@ "/v2/bitcoin/addresses/utxos": { "result": [ { - "vout": 2, - "height": 199, - "value": 4949920000, - "confirmations": 36, - "amount": 49.4992, - "txid": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", - "address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne" + "vout": 0, + "height": 233, + "value": 15000, + "confirmations": 2, + "amount": 0.00015, + "txid": "3e4549f4bd2540253b62d5e536c760c8f28e7e68af7993ec4d34d1b65f9ab5be", + "address": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8" }, { "vout": 0, @@ -10567,17 +10567,17 @@ "value": 10000, "confirmations": 36, "amount": 0.0001, - "txid": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", - "address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne" + "txid": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da", + "address": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8" }, { - "vout": 0, - "height": 233, - "value": 15000, - "confirmations": 2, - "amount": 0.00015, - "txid": "d48b379c567d8e56220067a7bc50b6d785a11121b304f71ad1854660c070c9bf", - "address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne" + "vout": 2, + "height": 199, + "value": 4949920000, + "confirmations": 36, + "amount": 49.4992, + "txid": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da", + "address": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8" } ], "next_cursor": null, @@ -10586,28 +10586,28 @@ "/v2/bitcoin/addresses/
/transactions": { "result": [ { - "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551" + "tx_hash": "0029eb4da947e26bd3ed87904102e20bea2ad94bca040173f69c34fe2bcedd01" }, { - "tx_hash": "c022cb0c0b98e04e436d5df0c7410993517ee3e9e62f947ed1fd42997fa40f8f" + "tx_hash": "a2b2ac4451d6edcfc816b7393cc7d9fe7395d8922b919d06e2825d461fed3004" }, { - "tx_hash": "61f41ef6ab83e2901e1c39f89c0c5850308b98b4ed814cee93127808b7bd3c91" + "tx_hash": "622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55" }, { - "tx_hash": "ce4ebdc15f8677b23ee6f97b3f33ff103d754d54f993ab6f528797866d22419b" + "tx_hash": "8c6d598bbb403da7a00c447b94e0aede91bf5582dc0330668262311f7f09738a" }, { - "tx_hash": "95db2791e37d288a1a4fb3c7414e3aca564b4024baaaf2c7bc77689349c31ca7" + "tx_hash": "2e50a4e80b01fb522badf7fbd84862aa54b40ac6f94b60e585d3ad8e660b849f" }, { - "tx_hash": "fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8" + "tx_hash": "800ffe9b30b7f3cdf4be23b4d0e1eaee89247f2bf226c5daba651ebb01d3e59f" }, { - "tx_hash": "756966acacb7de325ad5f8f9b4ecc373854b6e7b0e706c205666bd59c3ed59c3" + "tx_hash": "7f95f11da950a3e99186454fbeaac75e4716fe2aa0a9a0977ca5c2204bdd53de" }, { - "tx_hash": "f1122472a2791b85e5881888994ffd1fbb6d2fbdf6ed9bc814022197b8d461e0" + "tx_hash": "f6f1dd1640fa599d048daaa43dd7ad57104761cce91bb73182ac3ce688e2daf1" } ], "next_cursor": null, @@ -10615,27 +10615,19 @@ }, "/v2/bitcoin/addresses/
/transactions/oldest": { "result": { - "block_index": 10, - "tx_hash": "e469fe31857a7f2fec51624324263fba1a5acd7a1ba7fcc455e2239904119973" + "block_index": 9, + "tx_hash": "ce98ecb24d227621cb231ca5e36f7347d803269419f39a73d1b06ff34023732c" } }, "/v2/bitcoin/addresses/
/utxos": { "result": [ - { - "vout": 0, - "height": 233, - "value": 15000, - "confirmations": 2, - "amount": 0.00015, - "txid": "d48b379c567d8e56220067a7bc50b6d785a11121b304f71ad1854660c070c9bf" - }, { "vout": 2, "height": 199, "value": 4949920000, "confirmations": 36, "amount": 49.4992, - "txid": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310" + "txid": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da" }, { "vout": 0, @@ -10643,17 +10635,25 @@ "value": 10000, "confirmations": 36, "amount": 0.0001, - "txid": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310" + "txid": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da" + }, + { + "vout": 0, + "height": 233, + "value": 15000, + "confirmations": 2, + "amount": 0.00015, + "txid": "3e4549f4bd2540253b62d5e536c760c8f28e7e68af7993ec4d34d1b65f9ab5be" } ], "next_cursor": null, "result_count": null }, "/v2/bitcoin/addresses/
/pubkey": { - "result": "03778cb1b49cba95739889700191c489e160c0851fd5f1bf5d0ae1bb0143f6c033" + "result": "03bbf1b51d31477004cb4a33cac280a1e114f10ab31e3e4b5d9de04447f5169f48" }, "/v2/bitcoin/transactions/": { - "result": "020000000001011ceb53c6a3dce3d18382ad5e3780d0ea8d60fb0a2f98eb1251498608aa6858730100000000ffffffff03e803000000000000160014ca742dc81cac024b4cbde6236e1c599304258b4c00000000000000000c6a0ae188dda1bd4cd0f449a487140927010000001600140fa13933cab9aaea4cec2b6194cc224402aa6efe024730440220352aeb29117b931d5eebdf47f842688e1a116a0b6097cd220d203728209a24110220206b2946f514d6783bb2159466e097ef9cc807d5224470bc0c2003d49c322ea7012102aaee4b16d3883ba2f7cd0fc3e4ce2217159a774fd9f34ca4756a232e0799a47400000000" + "result": "02000000000101630fdd360012f438429a5b47af237e3d8bb82acc6bf6daea17e56b59389c53ea0100000000ffffffff03e8030000000000001600140368c8629d8d4a4cdb98e52538a5a1dc3a531aa200000000000000000c6a0a14422ad20b235e3837fd87140927010000001600143008f46eb4cce0041fe05407924d4e947ef1f45002473044022035c1bdf8c250cd0f9a15101d5a0edf0634fed83e2b89d3a8d3ddf8680dd438ea022035ef6513ab2000b82a22cf32318a79fbe0bddd44405a0c1f581551f1e3b6e37401210212d1bfe610828afc080aa6ffdcd54f6483ea10dbca8b3e58d228496eb086c61400000000" }, "/v2/bitcoin/estimatesmartfee": { "result": 58676 @@ -10726,27 +10726,27 @@ "/v2/mempool/events": { "result": [ { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "tx_index": 107 }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "memo": null, "quantity": 10000, - "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "status": "valid", - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "tx_index": 107, "asset_info": { "asset_longname": null, @@ -10757,22 +10757,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "CREDIT", "params": { - "address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "asset": "XCP", "block_index": 234, "calling_function": "send", - "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "event": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10782,22 +10782,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "address": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "asset": "XCP", "block_index": 234, - "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "event": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10807,27 +10807,27 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1733662956.0412934, + "block_time": 1733664127.5138223, "btc_amount": 0, - "data": "020000000000000001000000000000271080f73044edb424e8df3d85a40888172e373ed483c0", + "data": "0200000000000000010000000000002710802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa", "destination": "", "fee": 10000, - "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "transaction_type": "enhanced_send", - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "tx_index": 107, - "utxos_info": " f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf:1 2 0", + "utxos_info": " bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9:1 2 0", "btc_amount_normalized": "0.00000000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 } ], "next_cursor": null, @@ -10836,19 +10836,19 @@ "/v2/mempool/events/": { "result": [ { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "CREDIT", "params": { - "address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "asset": "XCP", "block_index": 234, "calling_function": "send", - "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "event": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10858,7 +10858,7 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 } ], "next_cursor": null, @@ -10867,27 +10867,27 @@ "/v2/mempool/transactions//events": { "result": [ { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "tx_index": 107 }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "ENHANCED_SEND", "params": { "asset": "XCP", "block_index": 9999999, - "destination": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "destination": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "memo": null, "quantity": 10000, - "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "status": "valid", - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "tx_index": 107, "asset_info": { "asset_longname": null, @@ -10898,22 +10898,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "CREDIT", "params": { - "address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "asset": "XCP", "block_index": 234, "calling_function": "send", - "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "event": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10923,22 +10923,22 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "DEBIT", "params": { "action": "send", - "address": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "address": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "asset": "XCP", "block_index": 234, - "event": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "event": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "quantity": 10000, "tx_index": 107, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -10948,27 +10948,27 @@ }, "quantity_normalized": "0.00010000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 }, { - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "event": "NEW_TRANSACTION", "params": { "block_hash": "mempool", "block_index": 9999999, - "block_time": 1733662956.0412934, + "block_time": 1733664127.5138223, "btc_amount": 0, - "data": "020000000000000001000000000000271080f73044edb424e8df3d85a40888172e373ed483c0", + "data": "0200000000000000010000000000002710802b1277d4e2f0dd85b6ce1874ad4f0531482c20aa", "destination": "", "fee": 10000, - "source": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "source": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "transaction_type": "enhanced_send", - "tx_hash": "f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf", + "tx_hash": "bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9", "tx_index": 107, - "utxos_info": " f3c4074763699c9b9454cbaa24d28fa061fda45c4e90a094d53371cc9584dfcf:1 2 0", + "utxos_info": " bef8c4a59ebd4d67048ae577836960a2a5d5fad6ac9110c2c1401b37ca1c8bf9:1 2 0", "btc_amount_normalized": "0.00000000" }, - "timestamp": 1733662956.0412934 + "timestamp": 1733664127.5138223 } ], "next_cursor": null, @@ -20709,15 +20709,15 @@ "event_index": 917, "event": "NEW_BLOCK", "params": { - "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", + "block_hash": "00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45", "block_index": 234, - "block_time": 1733662951, + "block_time": 1733664124, "difficulty": 545259519, - "previous_block_hash": "7370e6e0a5c944b4bb5f0ff5199b88e49577d7282ccf0c4750104f5a0877b482" + "previous_block_hash": "603c0b67e999c35cec4f4087e3c7b289be955ffa9129efb92fcd29a661dcf7c6" }, "tx_hash": null, "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 915, @@ -20729,23 +20729,23 @@ "event_index": 918, "event": "NEW_TRANSACTION", "params": { - "block_hash": "4c37cf950f1a10720bae68481999173406bde1fd17d296d07d7b6f8b701d9c94", + "block_hash": "00ba999a5f26c0d7942fdd1e334d4b89027f80eaffbc322ee2427cf1cf48bf45", "block_index": 234, - "block_time": 1733662951, + "block_time": 1733664124, "btc_amount": 1000, "data": "0d00", - "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "destination": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "fee": 0, - "source": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "source": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "transaction_type": "dispense", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "utxos_info": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1 24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0 3 1", + "utxos_info": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1 ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0 3 1", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 908, @@ -20759,16 +20759,16 @@ "params": { "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "destination": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "out_index": 0, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 592, @@ -20781,15 +20781,15 @@ "event": "BLOCK_PARSED", "params": { "block_index": 234, - "ledger_hash": "63841917e1efbfc2f037734a30f5466a573c0731a953d4adc7bbd8df61544cc4", - "messages_hash": "19704e64372ff09edc67a0b21f71c782d55d4948fdffb039359033e1efd92cec", + "ledger_hash": "45ce2aec46047790b784c61e48d1a4a33fab17a4ae86db0601f02b5bc64a0fa1", + "messages_hash": "222bf6a0adcb1f8c1df56bb65831fdc05183e797fbca2ac43dbb06bdd89b9a88", "transaction_count": 1, - "txlist_hash": "73fa58a4df1d31cf9ae734741691dbd7517e66b689631671cf5cce2fb4db409f", - "block_time": 1733662951 + "txlist_hash": "f0253bdf0d14167513005643cdec3e8872519b0226a5194e52eae3149f35ddd5", + "block_time": 1733664124 }, "tx_hash": null, "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 916, @@ -20802,12 +20802,12 @@ "event": "TRANSACTION_PARSED", "params": { "supported": true, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106 }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 913, @@ -20823,12 +20823,12 @@ "address": null, "asset": "XCP", "block_index": 234, - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 2000000000, "tx_index": 106, - "utxo": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", - "utxo_address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", - "block_time": 1733662951, + "utxo": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", + "utxo_address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -20838,9 +20838,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 920, @@ -20852,16 +20852,16 @@ "event_index": 926, "event": "CREDIT", "params": { - "address": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "address": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "asset": "XCP", "block_index": 234, "calling_function": "dispense", - "event": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "event": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "quantity": 66, "tx_index": 106, "utxo": null, "utxo_address": null, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -20871,9 +20871,9 @@ }, "quantity_normalized": "0.00000066" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 924, @@ -20887,26 +20887,26 @@ "params": { "asset": "MPMASSET", "block_index": 201, - "destination": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "memo": null, "quantity": 1000, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", + "tx_hash": "dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66", "tx_index": 77, - "block_time": 1733662764, + "block_time": 1733663958, "asset_info": { "asset_longname": null, "description": "My super asset B", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, "quantity_normalized": "0.00001000" }, - "tx_hash": "ddca734a7b2b16505c3f2a262be796df488ba8bad6f267cbc7e51d145d5310c6", + "tx_hash": "dfc93b227285f5ac41486434e3deacfeb25666c9acbae881db30329259cb4d66", "block_index": 201, - "block_time": 1733662764 + "block_time": 1733663958 } ], "next_cursor": 528, @@ -20920,15 +20920,15 @@ "params": { "asset": "XCP", "block_index": 205, - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "memo": "memo1", "msg_index": 2, "quantity": 10, - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "tx_index": 81, - "block_time": 1733662789, + "block_time": 1733663983, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -20938,9 +20938,9 @@ }, "quantity_normalized": "0.00000010" }, - "tx_hash": "5c7d84db8cbbd377e3b4156d5df30b87ba619384a2a50507e93b4f994069afcf", + "tx_hash": "e96f20af62ce509fabe6ad4140a0224d8b98a40b5cafe0bf3b227bbe9d6fb993", "block_index": 205, - "block_time": 1733662789 + "block_time": 1733663983 } ], "next_cursor": 712, @@ -20963,20 +20963,20 @@ "event": "SWEEP", "params": { "block_index": 190, - "destination": "bcrt1q9pavmx2na6yl56un3fpl6eg44j6068s0qvkp2g", + "destination": "bcrt1qcq63vmcvxw24qv30kz0p5ll3sx49v3hapq4zdy", "fee_paid": 600000, "flags": 1, "memo": "sweep my assets", - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "status": "valid", - "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", + "tx_hash": "f6f1dd1640fa599d048daaa43dd7ad57104761cce91bb73182ac3ce688e2daf1", "tx_index": 65, - "block_time": 1733662722, + "block_time": 1733663898, "fee_paid_normalized": "0.00600000" }, - "tx_hash": "8cbebd3c54f484d8ca0b51e75f0b530534102210724fc6bd5be09794f6342551", + "tx_hash": "f6f1dd1640fa599d048daaa43dd7ad57104761cce91bb73182ac3ce688e2daf1", "block_index": 190, - "block_time": 1733662722 + "block_time": 1733663898 } ], "next_cursor": null, @@ -20993,15 +20993,15 @@ "dividend_asset": "XCP", "fee_paid": 20000, "quantity_per_unit": 100000000, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", + "tx_hash": "9676962b470a9998d30eeaec911a79f39a722075bb60a164d5e1ef5f59945120", "tx_index": 42, - "block_time": 1733662534, + "block_time": 1733663711, "asset_info": { "asset_longname": null, "description": "My super asset A", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -21015,9 +21015,9 @@ "quantity_per_unit_normalized": "1.00000000", "fee_paid_normalized": "0.00020000" }, - "tx_hash": "4715e9cc893994a21ad16c71d7f030193bf27cd98200a69a93a162fcf92ac09e", + "tx_hash": "9676962b470a9998d30eeaec911a79f39a722075bb60a164d5e1ef5f59945120", "block_index": 146, - "block_time": 1733662534 + "block_time": 1733663711 } ], "next_cursor": null, @@ -21038,11 +21038,11 @@ "asset_longname": null, "asset_name": "OPENFAIR", "block_index": 232, - "block_time": 1733662942 + "block_time": 1733664114 }, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "block_index": 232, - "block_time": 1733662942 + "block_time": 1733664114 } ], "next_cursor": 875, @@ -21065,22 +21065,22 @@ "divisible": true, "fair_minting": true, "fee_paid": 50000000.0, - "issuer": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "issuer": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "locked": false, "quantity": 0, "reset": false, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": "valid", "transfer": false, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "tx_index": 105, - "block_time": 1733662942, + "block_time": 1733664114, "quantity_normalized": "0.00000000", "fee_paid_normalized": "0.50000000" }, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "block_index": 232, - "block_time": 1733662942 + "block_time": 1733664114 } ], "next_cursor": 890, @@ -21095,16 +21095,16 @@ "asset": "PREMINT", "block_index": 228, "quantity": 50, - "source": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "source": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "status": "valid", "tag": "soft cap not reached", - "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb", + "tx_hash": "ece5e1523238a478b2934616134dbc3c0c0d7652e681fc120ac41e78259153a7", "tx_index": 101, - "block_time": 1733662918, + "block_time": 1733664098, "asset_info": { "asset_longname": null, "description": "My super description", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": false }, @@ -21112,7 +21112,7 @@ }, "tx_hash": null, "block_index": 228, - "block_time": 1733662918 + "block_time": 1733664098 } ], "next_cursor": 832, @@ -21137,11 +21137,11 @@ "give_asset": "BTC", "give_quantity": 1000, "give_remaining": 1000, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": "open", - "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "tx_index": 104, - "block_time": 1733662928, + "block_time": 1733664110, "give_asset_info": { "divisible": true, "asset_longname": null, @@ -21152,7 +21152,7 @@ "get_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "issuer": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "divisible": true, "locked": false }, @@ -21165,9 +21165,9 @@ "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "block_index": 231, - "block_time": 1733662928 + "block_time": 1733664110 } ], "next_cursor": 896, @@ -21185,24 +21185,24 @@ "fee_paid": 0, "forward_asset": "UTXOASSET", "forward_quantity": 1000, - "id": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076_97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "id": "238eb2739cf62d41cc2aa459c23bc83d5c7b43f6a7bd00e39044d7be51abb255_93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "match_expire_index": 251, "status": "pending", - "tx0_address": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "tx0_address": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "tx0_block_index": 230, "tx0_expiration": 21, - "tx0_hash": "c3e2745caf56d08de67805f42604b071db6b4ae20932330fdf0bb5c409405076", + "tx0_hash": "238eb2739cf62d41cc2aa459c23bc83d5c7b43f6a7bd00e39044d7be51abb255", "tx0_index": 103, - "tx1_address": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "tx1_address": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "tx1_block_index": 231, "tx1_expiration": 21, - "tx1_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx1_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "tx1_index": 104, - "block_time": 1733662928, + "block_time": 1733664110, "forward_asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "issuer": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "divisible": true, "locked": false }, @@ -21217,9 +21217,9 @@ "backward_quantity_normalized": "0.00001000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "block_index": 231, - "block_time": 1733662928 + "block_time": 1733664110 } ], "next_cursor": 691, @@ -21236,13 +21236,13 @@ "get_remaining": 0, "give_remaining": 0, "status": "open", - "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "fee_required_remaining_normalized": "0.00000000", "fee_provided_remaining_normalized": "0.00010000" }, - "tx_hash": "97a49ad76ffea9cbceb724048001f97bb36c793d78ff815ff7b04d2174508308", + "tx_hash": "93c81f0d634775c0c66df3a5a1e5254e07e7d1a2732e8337fd67f3c93665b43f", "block_index": 231, - "block_time": 1733662928 + "block_time": 1733664110 } ], "next_cursor": 902, @@ -21255,11 +21255,11 @@ "event": "ORDER_FILLED", "params": { "status": "filled", - "tx_hash": "fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15" + "tx_hash": "5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1" }, - "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", + "tx_hash": "9856ba83ca5f23579cb3f792ae48c1bc7497391d9677ad8d3e6a6fdf2d3025ec", "block_index": 182, - "block_time": 1733662675 + "block_time": 1733663847 } ], "next_cursor": null, @@ -21271,13 +21271,13 @@ "event_index": 859, "event": "ORDER_MATCH_UPDATE", "params": { - "id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "order_match_id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", + "id": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "order_match_id": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", "status": "expired" }, - "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", + "tx_hash": "63c244c2e46947aec961ae8798f3dfec0a61e6bd08f81aae44f51f68344844d5", "block_index": 225, - "block_time": 1733662907 + "block_time": 1733664086 } ], "next_cursor": 685, @@ -21291,18 +21291,18 @@ "params": { "block_index": 182, "btc_amount": 2000, - "destination": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "order_match_id": "7bf2e253ce6bee3da59aab547fc200170632bc13d9513cc56301f11df2198f29_fac84cb7eb62eb5d916b0d13a75be47bc9cbff7b96e11ecc62efdb6836d3ea15", - "source": "bcrt1q6fsd9c6v3xeqdgre0tw3js42djju6n7lnz70lp", + "destination": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "order_match_id": "afcf49f260ae7efcefdc02a0a573503eb2f837fca84c7e7c89a196d0d17f0803_5230c922acf5bdd78e13c021c940097d2716c50b7a57df330daf510d7bdfc1c1", + "source": "bcrt1q9cj77e6ac6h3nhauv0wtauhgmaanc02tqykcxl", "status": "valid", - "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", + "tx_hash": "9856ba83ca5f23579cb3f792ae48c1bc7497391d9677ad8d3e6a6fdf2d3025ec", "tx_index": 57, - "block_time": 1733662675, + "block_time": 1733663847, "btc_amount_normalized": "0.00002000" }, - "tx_hash": "0e48b706bcdff2ffc15de4858d7c778828173a81bc232fc4fc749a122b697ddc", + "tx_hash": "9856ba83ca5f23579cb3f792ae48c1bc7497391d9677ad8d3e6a6fdf2d3025ec", "block_index": 182, - "block_time": 1733662675 + "block_time": 1733663847 } ], "next_cursor": null, @@ -21315,16 +21315,16 @@ "event": "CANCEL_ORDER", "params": { "block_index": 188, - "offer_hash": "050f167f10f48caef3a65ff031e6510dfac194a6ff0d72b6e3b89b7be23a8562", - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "offer_hash": "4387209cd138023912f31ea19f0290397fffd4f21b306e08ad5ef9c80d0836aa", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": "valid", - "tx_hash": "de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6", + "tx_hash": "669b450cbfa122294f7dcee16998a68b9e2aab3815b341a188918aef777e401c", "tx_index": 63, - "block_time": 1733662715 + "block_time": 1733663880 }, - "tx_hash": "de75ac91c55997dbd165413cad985ac2aa13a1ede1a83a751eaff4e289d072d6", + "tx_hash": "669b450cbfa122294f7dcee16998a68b9e2aab3815b341a188918aef777e401c", "block_index": 188, - "block_time": 1733662715 + "block_time": 1733663880 } ], "next_cursor": null, @@ -21337,13 +21337,13 @@ "event": "ORDER_EXPIRATION", "params": { "block_index": 211, - "order_hash": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21", - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "block_time": 1733662819 + "order_hash": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "block_time": 1733664025 }, - "tx_hash": "816df0c34171151d8c1947707f1c924dc6988f829038e9f0709bb2b7ab206acc", + "tx_hash": "4fdf78335a98077540fddc780efe3c1edc802b6367282daac69677eed5c92467", "block_index": 211, - "block_time": 1733662819 + "block_time": 1733664025 } ], "next_cursor": 705, @@ -21356,14 +21356,14 @@ "event": "ORDER_MATCH_EXPIRATION", "params": { "block_index": 225, - "order_match_id": "8fdf1f813ce5f13d96a8214c0fb79086622774fdb70fe8aaf9ba1c637d82bf21_fc628f0ccbd7e678e3bf3156168241cbc2c4a0a7f90a99c3473364226b52d9a8", - "tx0_address": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "tx1_address": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", - "block_time": 1733662907 + "order_match_id": "dd4d10f071b4183ce21a73b4b3c5d223e7951167b6a3f35c056a194ed8b91c51_622dbca44e115da7e49ae36b63366f38d0b08a573a79fba40180bf789691fd55", + "tx0_address": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "tx1_address": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", + "block_time": 1733664086 }, - "tx_hash": "258ab8c37a370b2d07865c0e136b9ddfe850a6b1192302356b1d0295c14183b4", + "tx_hash": "63c244c2e46947aec961ae8798f3dfec0a61e6bd08f81aae44f51f68344844d5", "block_index": 225, - "block_time": 1733662907 + "block_time": 1733664086 } ], "next_cursor": 688, @@ -21382,17 +21382,17 @@ "give_quantity": 1, "give_remaining": 10000, "oracle_address": null, - "origin": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "origin": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "satoshirate": 1, - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "status": 0, - "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "tx_index": 68, - "block_time": 1733662733, + "block_time": 1733663919, "asset_info": { "asset_longname": null, "description": "Test Locking Description", - "issuer": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", + "issuer": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", "divisible": true, "locked": false }, @@ -21401,9 +21401,9 @@ "escrow_quantity_normalized": "0.00010000", "satoshirate_normalized": "0.00000001" }, - "tx_hash": "ded5b09dddf046e06b41669ce0db8c84af2e429250aad49cbd488f51e272b952", + "tx_hash": "08d14fd59c710a65749b4a0267abf40202ef83ae2a6d15bcdf08b67abffabb38", "block_index": 193, - "block_time": 1733662733 + "block_time": 1733663919 } ], "next_cursor": 264, @@ -21418,9 +21418,9 @@ "asset": "XCP", "dispense_count": 2, "give_remaining": 9268, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": 0, - "tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", + "tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -21430,9 +21430,9 @@ }, "give_remaining_normalized": "0.00009268" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 594, @@ -21446,13 +21446,13 @@ "params": { "asset": "XCP", "block_index": 135, - "destination": "mwGrVHb495rLnPnW2W9yvMfsayfdGhBD7M", + "destination": "mvhkw2Szn9FeXit5DkusaxK7CS66HghzXC", "dispense_quantity": 10, - "dispenser_tx_hash": "ea1a192405fa4439cd194c2dd622e088addef725cb25debbd12b34766f2140a7", - "source": "bcrt1q5z5su6kvtv66p99fx8gsnejt2kt8f7uyg9asla", - "tx_hash": "afb9a582e852714df40622021ba105bd464db5e07f74867a31b84ad7c34ce16f", + "dispenser_tx_hash": "c94bc472c505bbd908031a7adcf8e688d673892d00e7be53eb1fbee53f25379f", + "source": "bcrt1q2ksur0fsnsmkruuwgm0p0jr20r8c20am25xp7z", + "tx_hash": "be1a6ecd655966c867e8796bbb5a453387465568050b0f17b32c998003612e8e", "tx_index": 31, - "block_time": 1733662496, + "block_time": 1733663674, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -21462,9 +21462,9 @@ }, "dispense_quantity_normalized": "0.00000010" }, - "tx_hash": "afb9a582e852714df40622021ba105bd464db5e07f74867a31b84ad7c34ce16f", + "tx_hash": "be1a6ecd655966c867e8796bbb5a453387465568050b0f17b32c998003612e8e", "block_index": 135, - "block_time": 1733662496 + "block_time": 1733663674 } ], "next_cursor": null, @@ -21479,14 +21479,14 @@ "asset": "XCP", "block_index": 234, "btc_amount": 1000, - "destination": "bcrt1qp7snjv72hx4w5n8v9dsefnpzgsp25mh7denn4m", + "destination": "bcrt1qxqy0gm45ensqg8lq2sreyn2wj3l0razsjjxzcp", "dispense_index": 0, "dispense_quantity": 66, - "dispenser_tx_hash": "791d58e1c0c4aec3bb8a19679fbf388993c14e4805a605b0a6433b4abcc0dbeb", - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "dispenser_tx_hash": "095380ef88d38f6fb3ab3b05b6d0929e6d84acb986532be472117a03fc415117", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -21497,9 +21497,9 @@ "dispense_quantity_normalized": "0.00000066", "btc_amount_normalized": "0.00001000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 595, @@ -21514,19 +21514,19 @@ "block_index": 129, "fee_fraction_int": 0, "locked": false, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": "valid", "text": "price-USD", "timestamp": 4003903983, - "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", + "tx_hash": "0d855bb8de5f24b5c232aee85adf238f6f2a3dfb506f6b291a66f9f2d636966a", "tx_index": 25, "value": 66600.0, - "block_time": 1733662474, + "block_time": 1733663634, "fee_fraction_int_normalized": "0.00000000" }, - "tx_hash": "5cded164a11956fdc1369e474acd6295b8013496909e8d58a769d96921a889bf", + "tx_hash": "0d855bb8de5f24b5c232aee85adf238f6f2a3dfb506f6b291a66f9f2d636966a", "block_index": 129, - "block_time": 1733662474 + "block_time": 1733663634 } ], "next_cursor": 205, @@ -21557,12 +21557,12 @@ "quantity_by_price": 1, "soft_cap": 0, "soft_cap_deadline_block": 0, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "start_block": 0, "status": "open", - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "tx_index": 105, - "block_time": 1733662942, + "block_time": 1733664114, "price_normalized": "0.0000000000000000", "hard_cap_normalized": "0.00000000", "soft_cap_normalized": "0.00000000", @@ -21570,9 +21570,9 @@ "max_mint_per_tx_normalized": "0.00000010", "premint_quantity_normalized": "0.00000000" }, - "tx_hash": "ed34db465d7cbf94d62d6629ce4ea70ffbe603262515fd225390d49e3e1754d8", + "tx_hash": "d8ec989ea64a781f27172064727a908abb012a87847605c485fb6b2f313d5da5", "block_index": 232, - "block_time": 1733662942 + "block_time": 1733664114 } ], "next_cursor": 874, @@ -21585,11 +21585,11 @@ "event": "FAIRMINTER_UPDATE", "params": { "status": "closed", - "tx_hash": "69458b7c8ba3357f8460b7dfae822b2330d822429c737e2829f4cf7fd3b6a3bb" + "tx_hash": "ece5e1523238a478b2934616134dbc3c0c0d7652e681fc120ac41e78259153a7" }, "tx_hash": null, "block_index": 228, - "block_time": 1733662918 + "block_time": 1733664098 } ], "next_cursor": 869, @@ -21605,17 +21605,17 @@ "block_index": 221, "commission": 20000000, "earn_quantity": 80000000, - "fairminter_tx_hash": "ff9946aa3631b673c4cea80098c9f1b2310204ff27764816d2a2662e76b85ece", + "fairminter_tx_hash": "16a2331c4274ae6134bdce67bdbfd33cd2b39ba2fd15ef604046a63f8992d3ed", "paid_quantity": 100000000, - "source": "bcrt1qef6zmjqu4spykn9auc3ku8zejvzztz6v9yp4ak", + "source": "bcrt1qqd5vsc5a349yekucu5jn3fdpmsa9xx4zt7xgn6", "status": "valid", - "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", + "tx_hash": "feb9230ff4823ac9611af89348fc8b3a3ef21e174720c321bdd359100a8cf8a3", "tx_index": 97, - "block_time": 1733662883, + "block_time": 1733664071, "asset_info": { "asset_longname": null, "description": "let's burn it", - "issuer": "bcrt1qrzwkq05nk544edcjv4t0mml0av2wl7qx4ljnu2", + "issuer": "bcrt1qz7punjgllmfxhyawl7mw4pny676pfrs0n9hfg6", "divisible": true, "locked": true }, @@ -21623,9 +21623,9 @@ "commission_normalized": "0.20000000", "paid_quantity_normalized": "1.00000000" }, - "tx_hash": "88debbbcc8603902a559c2fdb5f5c042f1e32e8a30251f5d1d9a74508fc70759", + "tx_hash": "feb9230ff4823ac9611af89348fc8b3a3ef21e174720c321bdd359100a8cf8a3", "block_index": 221, - "block_time": 1733662883 + "block_time": 1733664071 } ], "next_cursor": 816, @@ -21639,28 +21639,28 @@ "params": { "asset": "UTXOASSET", "block_index": 199, - "destination": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310:0", + "destination": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da:0", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "source": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "status": "valid", - "tx_hash": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", + "tx_hash": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da", "tx_index": 75, - "block_time": 1733662757, + "block_time": 1733663952, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "issuer": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "bc8c193a7878c4bf41fc8a727cec12d0b72a9f84f580e4e706229e5e44063310", + "tx_hash": "bde72333917e1c2e910cb50e52066ac87441cb7a790496e7ee81e483c502e6da", "block_index": 199, - "block_time": 1733662757 + "block_time": 1733663952 } ], "next_cursor": 611, @@ -21674,28 +21674,28 @@ "params": { "asset": "UTXOASSET", "block_index": 198, - "destination": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "destination": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "fee_paid": 0, "msg_index": 0, "quantity": 1000000000, - "source": "3ca9e2bddd0a9a542e219bd11e8a9d82cb47504bdb3f2bada362cc2160adfcff:0", + "source": "5b130b1ac3af488ec6daf17c1c2882e92059e72d05ed7f047e520b244e5ab561:0", "status": "valid", - "tx_hash": "cfd9a40c7741775c65321b2673f86310bb1f15fc0bfb711b58cfe0ed5acf4d71", + "tx_hash": "4633b98d1cdcdf9894281c42618c8a24cde6e5320ae3bf134e896243465716d5", "tx_index": 74, - "block_time": 1733662753, + "block_time": 1733663948, "asset_info": { "asset_longname": null, "description": "My super asset", - "issuer": "bcrt1qglje2yrg7s4jx7cqm9f9mdz3tlty9688yd22ne", + "issuer": "bcrt1qqyppqsm32f45t88jx8vm63zd64emxsl23f85a8", "divisible": true, "locked": false }, "quantity_normalized": "10.00000000", "fee_paid_normalized": "0.00000000" }, - "tx_hash": "cfd9a40c7741775c65321b2673f86310bb1f15fc0bfb711b58cfe0ed5acf4d71", + "tx_hash": "4633b98d1cdcdf9894281c42618c8a24cde6e5320ae3bf134e896243465716d5", "block_index": 198, - "block_time": 1733662753 + "block_time": 1733663948 } ], "next_cursor": 304, @@ -21709,14 +21709,14 @@ "params": { "asset": "XCP", "block_index": 234, - "destination": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b:0", + "destination": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f:0", "msg_index": 1, "quantity": 2000000000, - "source": "735868aa0886495112eb982f0afb608dead080375ead8283d1e3dca3c653eb1c:1", + "source": "ea539c38596be517eadaf66bcc2ab88b3d7e23af475b9a4238f4120036dd0f63:1", "status": "valid", - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "tx_index": 106, - "block_time": 1733662951, + "block_time": 1733664124, "asset_info": { "asset_longname": null, "description": "The Counterparty protocol native currency", @@ -21726,9 +21726,9 @@ }, "quantity_normalized": "20.00000000" }, - "tx_hash": "24142b10d30faaab56ce13227bc3c83e50317e8b2fb790c7156335630a3fa98b", + "tx_hash": "ed747dd81d9a47332af6a247320014dd5a24c9693ad7ce2818eec8388ab7946f", "block_index": 234, - "block_time": 1733662951 + "block_time": 1733664124 } ], "next_cursor": 922, @@ -21743,17 +21743,17 @@ "block_index": 112, "burned": 50000000, "earned": 74999998167, - "source": "bcrt1q7ucyfmd5yn5d70v95sygs9ewxuldfq7qtrp6v9", + "source": "bcrt1q9vf8048z7rwctdkwrp626nc9x9yzcg922j5js7", "status": "valid", - "tx_hash": "95db2791e37d288a1a4fb3c7414e3aca564b4024baaaf2c7bc77689349c31ca7", + "tx_hash": "7f95f11da950a3e99186454fbeaac75e4716fe2aa0a9a0977ca5c2204bdd53de", "tx_index": 9, - "block_time": 1733662402, + "block_time": 1733663559, "burned_normalized": "0.50000000", "earned_normalized": "749.99998167" }, - "tx_hash": "95db2791e37d288a1a4fb3c7414e3aca564b4024baaaf2c7bc77689349c31ca7", + "tx_hash": "7f95f11da950a3e99186454fbeaac75e4716fe2aa0a9a0977ca5c2204bdd53de", "block_index": 112, - "block_time": 1733662402 + "block_time": 1733663559 } ], "next_cursor": 58, diff --git a/counterparty-core/counterpartycore/test/regtest/testscenarios.py b/counterparty-core/counterpartycore/test/regtest/testscenarios.py index e9c53b07da..ebb1a1a51a 100644 --- a/counterparty-core/counterpartycore/test/regtest/testscenarios.py +++ b/counterparty-core/counterpartycore/test/regtest/testscenarios.py @@ -438,7 +438,7 @@ def run_scenarios(serve=False, wsgi_server="gunicorn"): print(regtest_node_thread.node.server_out.getvalue()) raise e finally: - #print(regtest_node_thread.node.server_out.getvalue()) + # print(regtest_node_thread.node.server_out.getvalue()) regtest_node_thread.stop() diff --git a/counterparty-wallet/counterpartywallet/wallet/btcwallet.py b/counterparty-wallet/counterpartywallet/wallet/btcwallet.py index 2b9d3be26e..82a61102de 100644 --- a/counterparty-wallet/counterpartywallet/wallet/btcwallet.py +++ b/counterparty-wallet/counterpartywallet/wallet/btcwallet.py @@ -20,8 +20,8 @@ def get_btc_balances(): addresses[output["address"]] = 0 addresses[output["address"]] += output["amount"] - for address in addresses: - yield [address, addresses[address]] + for address, balance in addresses.items(): + yield [address, balance] def list_unspent():